OpenCoverageBash

Bash patch #2 - Test report of the modifications

Overview

Test Execution StatusStatistics
Passed
  0.000% (0/1)
Failed
  0.000% (0/1)
Requires Manual Checking
  0.000% (0/1)
Unknown
100.000% (1/1)
All
100.000% (1/1)
CategoryRemoved LinesInserted LinesTotal
Modified lines executed:
  0.090% (2/2220)
  0.271% (5/1846)
  0.172% (7/4066)
Modified lines not executed:
  0.450% (10/2220)
  1.138% (21/1846)
  0.762% (31/4066)
Source code lines not covered:
 99.459% (2208/2220)
 98.592% (1820/1846)
 99.065% (4028/4066)

List of tests executing the changes

Execution NameState
Self testUnknown

Patch File

Showing: 

Modified File: CWRU/CWRU.chlog

LineTestsDifference Output
diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog
index 06409b4e..fbc27678 100644
--- a/CWRU/CWRU.chlog
+++ b/CWRU/CWRU.chlog
@@ -15088,3 +15088,52 @@ builtins/common.c
15088 - read_octal: allow octal numbers greater than 777 to accommodate
15089 modes and umasks that include sticky/setuid/setgid bits. Report
15090 and fix from Martijn Dekker <martijn@inlv.org>
15091
-
+
15092
-
+ 3/19
15093
-
+ ----
15094
-
+lib/readline/bind.c
15095
-
+ - rl_generic_bind: make sure we only assign to prevkey in the loop
15096
-
+ if the key sequence index is > 0, so ic is valid. Fixes bug
15097
-
+ reported by Koichi Murase <myoga.murase@gmail.com>
15098
-
+
15099
-
+builtins/read.def
15100
-
+ - read_builtin: be slightly less aggressive checking for timeouts and
15101
-
+ SIGALRM: if we successfully read a character, don't check for a
15102
-
+ timeout until we store or process it. Fixes timing problem
15103
-
+ reported by Rob Foehl <rwf@loonybin.net>
15104
-
+
15105
-
+ 3/22
15106
-
+ ----
15107
-
+sig.c
15108
-
+ - termsig_handler: add a call to exit(1) after the kill, just in case
15109
-
+ there are circumstances where the SIG_DFL signal handler is
15110
-
+ ignored. Report from Andrei Vagin <avagin@gmail.com>
15111
-
+
15112
-
+ 3/25
15113
-
+ ----
15114
-
+lib/readline/bind.c
15115
-
+ - _rl_function_of_keyseq_internal: new internal function thta takes a
15116
-
+ length parameter to accommodate NUL in the key sequence. Patch from
15117
-
+ Koichi Murase <myoga.murase@gmail.com>
15118
-
+ - rl_function_of_keyseq_len: new application-callable function that
15119
-
+ takes a length parameter; otherwise equivalent to rl_function_of_keyseq.
15120
-
+
15121
-
+lib/readline/readline.h
15122
-
+ - rl_function_of_keyseq_len: add extern declration for new function
15123
-
+
15124
-
+lib/readline/doc/rltech.texi
15125
-
+ - rl_function_of_keyseq_len: document new function interface
15126
-
+
15127
-
+bashline.c
15128
-
+ - bash_execute_unix_command: use rl_function_of_keyseq_len to handle
15129
-
+ key sequences with embedded NULs (\C-@). Fix from Koichi Murase
15130
-
+ <myoga.murase@gmail.com>
15131
-
+
15132
-
+lib/readline/bind.c
15133
-
+ - rl_bind_key_if_unbound,rl_bind_key_if_unbound_in_map: run the KEY
15134
-
+ argument through rl_untranslate_keyseq to produce a symbolic sequence
15135
-
+ that can encode \C-@.
15136
-
+ - rl_bind_keyseq_if_unbound_in_map: translate the key sequence in order
15137
-
+ to accommodate symbolic key sequences; should be a no-op for `raw'
15138
-
+ key sequences such as the arrow key seqeunces from terminfo. Change
15139
-
+ from Koichi Murase <myoga.murase@gmail.com>

Modified File: bashline.c

LineTestsDifference Output
diff --git a/bashline.c b/bashline.c
index 5683d915..60f34997 100644
--- a/bashline.c
+++ b/bashline.c
@@ -4102,7 +4102,7 @@ bash_execute_unix_command (count, key)
4102 /* First, we need to find the right command to execute. This is tricky,
4103 because we might have already indirected into another keymap, so we
4104 have to walk cmd_xmap using the entire key sequence. */
4105
0
- cmd = (char *)rl_function_of_keyseq (rl_executing_keyseq, cmd_xmap, &type);
4105
0
+ cmd = (char *)rl_function_of_keyseq_len (rl_executing_keyseq, rl_key_sequence_length, cmd_xmap, &type);
4106
4107 if (cmd == 0 || type != ISMACR)
4108 {

Modified File: builtins/read.def

LineTestsDifference Output
diff --git a/builtins/read.def b/builtins/read.def
index 45772273..584ff70a 100644
--- a/builtins/read.def
+++ b/builtins/read.def
@@ -613,13 +613,14 @@ read_builtin (list)
613 break;
614 }
615
616
1
Executed by:
  • Self test
- CHECK_ALRM;
617 ➡ 616 QUIT; /* in case we didn't call check_signals() */
618 ➡ 617 #if defined (READLINE)
619 ➡ 618 }
620 ➡ 619 #endif
621 ➡ 620
622
1
Executed by:
  • Self test
- CHECK_ALRM;
621
1
Executed by:
  • Self test
+ if (retval <= 0) /* XXX shouldn't happen */
622
0
+ CHECK_ALRM;
623
-
+
623 ➡ 624 /* XXX -- use i + mb_cur_max (at least 4) for multibyte/read_mbchar */
624 ➡ 625 if (i + (mb_cur_max > 4 ? mb_cur_max : 4) >= size)
625 ➡ 626 {

Modified File: doc/bash.0

LineTestsDifference Output
diff --git a/doc/bash.0 b/doc/bash.0
index dc9dee3b..bb2f7429 100644
--- a/doc/bash.0
+++ b/doc/bash.0
@@ -4503,9 +4503,11 @@ SSHHEELLLL BBUUIILLTTIINN CCOOMMMMAANNDDSS
4503 --WW _w_o_r_d_l_i_s_t
4504 The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS
4505 special variable as delimiters, and each resultant word
4506
-
No equivalent source code line in the reference code can be identified.
- is expanded. The possible completions are the members
4507
-
No equivalent source code line in the reference code can be identified.
- of the resultant list which match the word being com-
4508
-
No equivalent source code line in the reference code can be identified.
- pleted.
4506
-
+ is expanded. Shell quoting is honored within _w_o_r_d_l_i_s_t,
4507
-
+ in order to provide a mechanism for the words to contain
4508
-
+ shell metacharacters or characters in the value of IIFFSS.
4509
-
+ The possible completions are the members of the resul-
4510
-
+ tant list which match the word being completed.
4509 ➡ 4511 --XX _f_i_l_t_e_r_p_a_t
4510 ➡ 4512 _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion.
4511 ➡ 4513 It is applied to the list of possible completions gener-

Modified File: doc/bash.html

LineTestsDifference Output
diff --git a/doc/bash.html b/doc/bash.html
index 86aa5da2..54b42fec 100644
--- a/doc/bash.html
+++ b/doc/bash.html
@@ -9968,6 +9968,13 @@ The <I>wordlist</I> is split using the characters in the
9968
9969 </FONT>
9970 special variable as delimiters, and each resultant word is expanded.
9971
-
+Shell quoting is honored within <I>wordlist</I>,
9972
-
+in order to provide a
9973
-
+mechanism for the words to contain shell metacharacters or characters
9974
-
+in the value of
9975
-
+<FONT SIZE=-1><B>IFS</B>.
9976
-
+
9977
-
+</FONT>
9971 ➡ 9978 The possible completions are the members of the resultant list which
9972 ➡ 9979 match the word being completed.
9973 ➡ 9980 <DT><B>-X</B> <I>filterpat</I><DD>
@@ -13951,6 +13958,6 @@ There may be only one active coprocess at a time.
13951 ➡ 13958 </DL>
13952 ➡ 13959 <HR>
13953 ➡ 13960 This document was created by man2html from bash.1.<BR>
13954
-
No equivalent source code line in the reference code can be identified.
-Time: 15 March 2018 14:13:43 EDT
13961
-
+Time: 19 March 2018 09:43:32 EDT
13955 ➡ 13962 </BODY>
13956 ➡ 13963 </HTML>

Modified File: doc/bash.info

LineTestsDifference Output
diff --git a/doc/bash.info b/doc/bash.info
index b044770f..9a4edb08 100644
--- a/doc/bash.info
+++ b/doc/bash.info
@@ -8609,13 +8609,15 @@ used to filter the matches, but the 'FIGNORE' shell variable is used.
8609
8610 Next, the string specified as the argument to the '-W' option is
8611 considered. The string is first split using the characters in the 'IFS'
8612
-
No equivalent source code line in the reference code can be identified.
-special variable as delimiters. Shell quoting is honored. Each word is
8613
-
No equivalent source code line in the reference code can be identified.
-then expanded using brace expansion, tilde expansion, parameter and
8614
-
No equivalent source code line in the reference code can be identified.
-variable expansion, command substitution, and arithmetic expansion, as
8615
-
No equivalent source code line in the reference code can be identified.
-described above (*note Shell Expansions::). The results are split using
8616
-
No equivalent source code line in the reference code can be identified.
-the rules described above (*note Word Splitting::). The results of the
8617
-
No equivalent source code line in the reference code can be identified.
-expansion are prefix-matched against the word being completed, and the
8618
-
No equivalent source code line in the reference code can be identified.
-matching words become the possible completions.
8612
-
+special variable as delimiters. Shell quoting is honored within the
8613
-
+string, in order to provide a mechanism for the words to contain shell
8614
-
+metacharacters or characters in the value of 'IFS'. Each word is then
8615
-
+expanded using brace expansion, tilde expansion, parameter and variable
8616
-
+expansion, command substitution, and arithmetic expansion, as described
8617
-
+above (*note Shell Expansions::). The results are split using the rules
8618
-
+described above (*note Word Splitting::). The results of the expansion
8619
-
+are prefix-matched against the word being completed, and the matching
8620
-
+words become the possible completions.
8619 ➡ 8621
8620 ➡ 8622 After these matches have been generated, any shell function or
8621 ➡ 8623 command specified with the '-F' and '-C' options is invoked. When the
@@ -11684,32 +11686,32 @@ Node: Keyboard Macros357309
11684 ➡ 11686 Node: Miscellaneous Commands357996
11685 ➡ 11687 Node: Readline vi Mode363949
11686 ➡ 11688 Node: Programmable Completion364856
11687
-
No equivalent source code line in the reference code can be identified.
-Node: Programmable Completion Builtins372317
11688
-
No equivalent source code line in the reference code can be identified.
-Node: A Programmable Completion Example382203
11689
-
No equivalent source code line in the reference code can be identified.
-Node: Using History Interactively387454
11690
-
No equivalent source code line in the reference code can be identified.
-Node: Bash History Facilities388138
11691
-
No equivalent source code line in the reference code can be identified.
-Node: Bash History Builtins391143
11692
-
No equivalent source code line in the reference code can be identified.
-Node: History Interaction395674
11693
-
No equivalent source code line in the reference code can be identified.
-Node: Event Designators398741
11694
-
No equivalent source code line in the reference code can be identified.
-Node: Word Designators399960
11695
-
No equivalent source code line in the reference code can be identified.
-Node: Modifiers401597
11696
-
No equivalent source code line in the reference code can be identified.
-Node: Installing Bash402999
11697
-
No equivalent source code line in the reference code can be identified.
-Node: Basic Installation404136
11698
-
No equivalent source code line in the reference code can be identified.
-Node: Compilers and Options407394
11699
-
No equivalent source code line in the reference code can be identified.
-Node: Compiling For Multiple Architectures408135
11700
-
No equivalent source code line in the reference code can be identified.
-Node: Installation Names409828
11701
-
No equivalent source code line in the reference code can be identified.
-Node: Specifying the System Type410646
11702
-
No equivalent source code line in the reference code can be identified.
-Node: Sharing Defaults411362
11703
-
No equivalent source code line in the reference code can be identified.
-Node: Operation Controls412035
11704
-
No equivalent source code line in the reference code can be identified.
-Node: Optional Features412993
11705
-
No equivalent source code line in the reference code can be identified.
-Node: Reporting Bugs423519
11706
-
No equivalent source code line in the reference code can be identified.
-Node: Major Differences From The Bourne Shell424713
11707
-
No equivalent source code line in the reference code can be identified.
-Node: GNU Free Documentation License441565
11708
-
No equivalent source code line in the reference code can be identified.
-Node: Indexes466742
11709
-
No equivalent source code line in the reference code can be identified.
-Node: Builtin Index467196
11710
-
No equivalent source code line in the reference code can be identified.
-Node: Reserved Word Index474023
11711
-
No equivalent source code line in the reference code can be identified.
-Node: Variable Index476471
11712
-
No equivalent source code line in the reference code can be identified.
-Node: Function Index492149
11713
-
No equivalent source code line in the reference code can be identified.
-Node: Concept Index505452
11689
-
+Node: Programmable Completion Builtins372450
11690
-
+Node: A Programmable Completion Example382336
11691
-
+Node: Using History Interactively387587
11692
-
+Node: Bash History Facilities388271
11693
-
+Node: Bash History Builtins391276
11694
-
+Node: History Interaction395807
11695
-
+Node: Event Designators398874
11696
-
+Node: Word Designators400093
11697
-
+Node: Modifiers401730
11698
-
+Node: Installing Bash403132
11699
-
+Node: Basic Installation404269
11700
-
+Node: Compilers and Options407527
11701
-
+Node: Compiling For Multiple Architectures408268
11702
-
+Node: Installation Names409961
11703
-
+Node: Specifying the System Type410779
11704
-
+Node: Sharing Defaults411495
11705
-
+Node: Operation Controls412168
11706
-
+Node: Optional Features413126
11707
-
+Node: Reporting Bugs423652
11708
-
+Node: Major Differences From The Bourne Shell424846
11709
-
+Node: GNU Free Documentation License441698
11710
-
+Node: Indexes466875
11711
-
+Node: Builtin Index467329
11712
-
+Node: Reserved Word Index474156
11713
-
+Node: Variable Index476604
11714
-
+Node: Function Index492282
11715
-
+Node: Concept Index505585
11714 ➡ 11716 
11715 ➡ 11717 End Tag Table

Modified File: doc/bash.ps

LineTestsDifference Output
diff --git a/doc/bash.pdf b/doc/bash.pdf
index f0a9741e..de5d3129 100644
Binary files a/doc/bash.pdf and b/doc/bash.pdf differ
diff --git a/doc/bash.ps b/doc/bash.ps
index 89183b88..deccb7a7 100644
--- a/doc/bash.ps
+++ b/doc/bash.ps
@@ -1,6 +1,6 @@
1 %!PS-Adobe-3.0
2 %%Creator: groff version 1.22.3
3
-
No equivalent source code line in the reference code can be identified.
-%%CreationDate: Thu Mar 15 14:13:33 2018
3
-
+%%CreationDate: Mon Mar 19 09:43:22 2018
4 %%DocumentNeededResources: font Times-Roman
5 %%+ font Times-Bold
6 %%+ font Times-Italic
@@ -7184,345 +7184,350 @@ E F0 1.007(is e)3.507 F 1.007(xpanded to generate the possible comple-)
7184 E .3 -.15(ve b)-.2 H(een applied.).15 E F1<ad57>144 252 Q F2(wor)2.5 E
7185 (dlist)-.37 E F0(The)184 264 Q F2(wor)3.64 E(dlist)-.37 E F0 1.14
7186 (is split using the characters in the)3.64 F F3(IFS)3.64 E F0 1.139
7187
-
No equivalent source code line in the reference code can be identified.
-(special v)3.39 F 1.139(ariable as delimiters, and)-.25 F 2.007
7188
-
No equivalent source code line in the reference code can be identified.
-(each resultant w)184 276 R 2.007(ord is e)-.1 F 4.507(xpanded. The)-.15
7189
-
No equivalent source code line in the reference code can be identified.
-F 2.008(possible completions are the members of the)4.507 F
7190
-
No equivalent source code line in the reference code can be identified.
-(resultant list which match the w)184 288 Q(ord being completed.)-.1 E
7191
-
No equivalent source code line in the reference code can be identified.
-F1<ad58>144 300 Q F2(\214lterpat)2.5 E(\214lterpat)184 312 Q F0 .456
7187
-
+(special v)3.39 F 1.139(ariable as delimiters, and)-.25 F .98
7188
-
+(each resultant w)184 276 R .98(ord is e)-.1 F 3.481(xpanded. Shell)-.15
7189
-
+F .981(quoting is honored within)3.481 F F2(wor)3.481 E(dlist)-.37 E F0
7190
-
+3.481(,i)C 3.481(no)-3.481 G .981(rder to)-3.481 F(pro)184 288 Q .766
7191
-
+(vide a mechanism for the w)-.15 F .765
7192
-
+(ords to contain shell metacharacters or characters in the)-.1 F -.25
7193
-
+(va)184 300 S 1.964(lue of).25 F F3(IFS)4.464 E/F4 9/Times-Roman@0 SF(.)
7194
-
+A F0 1.964
7195
-
+(The possible completions are the members of the resultant list which)
7196
-
+6.464 F(match the w)184 312 Q(ord being completed.)-.1 E F1<ad58>144 324
7197
-
+Q F2(\214lterpat)2.5 E(\214lterpat)184 336 Q F0 .456
7192 ➡ 7198 (is a pattern as used for pathname e)2.956 F 2.956(xpansion. It)-.15 F
7193 ➡ 7199 .455(is applied to the list of possible)2.956 F 1.596
7194
-
No equivalent source code line in the reference code can be identified.
-(completions generated by the preceding options and ar)184 324 R 1.596
7195
-
No equivalent source code line in the reference code can be identified.
-(guments, and each completion)-.18 F(matching)184 336 Q F2(\214lterpat)
7200
-
+(completions generated by the preceding options and ar)184 348 R 1.596
7201
-
+(guments, and each completion)-.18 F(matching)184 360 Q F2(\214lterpat)
7196 ➡ 7202 3.205 E F0 .705(is remo)3.205 F -.15(ve)-.15 G 3.205(df).15 G .704
7197 ➡ 7203 (rom the list.)-3.205 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0
7198 ➡ 7204 (in)3.204 E F2(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704
7199
-
No equivalent source code line in the reference code can be identified.
-(tes the pattern;).05 F(in this case, an)184 348 Q 2.5(yc)-.15 G
7205
-
+(tes the pattern;).05 F(in this case, an)184 372 Q 2.5(yc)-.15 G
7200 ➡ 7206 (ompletion not matching)-2.5 E F2(\214lterpat)2.5 E F0(is remo)2.5 E
7201
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.15 G(d.).15 E .466(The return v)144 364.8 R .466
7207
-
+-.15(ve)-.15 G(d.).15 E .466(The return v)144 388.8 R .466
7202 ➡ 7208 (alue is true unless an in)-.25 F -.25(va)-.4 G .466
7203 ➡ 7209 (lid option is supplied, an option other than).25 F F1<ad70>2.967 E F0
7204 ➡ 7210 (or)2.967 E F1<ad72>2.967 E F0 .467(is sup-)2.967 F 1.362
7205
-
No equivalent source code line in the reference code can be identified.
-(plied without a)144 376.8 R F2(name)3.862 E F0(ar)3.862 E 1.361
7211
-
+(plied without a)144 400.8 R F2(name)3.862 E F0(ar)3.862 E 1.361
7206 ➡ 7212 (gument, an attempt is made to remo)-.18 F 1.661 -.15(ve a c)-.15 H
7207
-
No equivalent source code line in the reference code can be identified.
-1.361(ompletion speci\214cation for a).15 F F2(name)144 388.8 Q F0
7213
-
+1.361(ompletion speci\214cation for a).15 F F2(name)144 412.8 Q F0
7208 ➡ 7214 (for which no speci\214cation e)2.5 E
7209 ➡ 7215 (xists, or an error occurs adding a completion speci\214cation.)-.15 E
7210
-
No equivalent source code line in the reference code can be identified.
-F1(compopt)108 405.6 Q F0([)2.5 E F1<ad6f>A F2(option)2.5 E F0 2.5(][)C
7216
-
+F1(compopt)108 429.6 Q F0([)2.5 E F1<ad6f>A F2(option)2.5 E F0 2.5(][)C
7211 ➡ 7217 F1(\255DE)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F2(option)2.5 E F0 2.5(][)C F2
7212
-
No equivalent source code line in the reference code can be identified.
-(name)-2.5 E F0(])A .447(Modify completion options for each)144 417.6 R
7218
-
+(name)-2.5 E F0(])A .447(Modify completion options for each)144 441.6 R
7213 ➡ 7219 F2(name)2.947 E F0 .447(according to the)2.947 F F2(option)2.947 E F0
7214 ➡ 7220 .447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .726
7215
-
No equivalent source code line in the reference code can be identified.
-(completion if no)144 429.6 R F2(name)3.226 E F0 3.226(sa)C .726
7221
-
+(completion if no)144 453.6 R F2(name)3.226 E F0 3.226(sa)C .726
7216 ➡ 7222 (re supplied.)-3.226 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa)
7217 ➡ 7223 C .725(re gi)-3.225 F -.15(ve)-.25 G .725
7218
-
No equivalent source code line in the reference code can be identified.
-(n, display the completion options for).15 F(each)144 441.6 Q F2(name)
7224
-
+(n, display the completion options for).15 F(each)144 465.6 Q F2(name)
7219 ➡ 7225 3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v)
7220 ➡ 7226 5.724 F .724(alues of)-.25 F F2(option)3.224 E F0 .724(are those v)3.224
7221
-
No equivalent source code line in the reference code can be identified.
-F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 453.6 Q F0 -.2(bu)
7227
-
+F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 477.6 Q F0 -.2(bu)
7222 ➡ 7228 2.798 G .298(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he)
7223 ➡ 7229 -5.297 E F1<ad44>2.797 E F0 .297
7224 ➡ 7230 (option indicates that the remaining options should apply to)2.797 F
7225
-
No equivalent source code line in the reference code can be identified.
-1.227(the `)144 465.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\
7231
-
+1.227(the `)144 489.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\
7226 ➡ 7232 mmand completion; that is, completion attempted on a command for which \
7227
-
No equivalent source code line in the reference code can be identified.
-no)-3.727 F 2.178(completion has pre)144 477.6 R 2.178
7233
-
+no)-3.727 F 2.178(completion has pre)144 501.6 R 2.178
7228 ➡ 7234 (viously been de\214ned.)-.25 F(The)7.178 E F1<ad45>4.678 E F0 2.177
7229 ➡ 7235 (option indicates that the remaining options)4.677 F(should apply to `)
7230
-
No equivalent source code line in the reference code can be identified.
-144 489.6 Q(`empty')-.74 E 2.5('c)-.74 G
7236
-
+144 513.6 Q(`empty')-.74 E 2.5('c)-.74 G
7231 ➡ 7237 (ommand completion; that is, completion attempted on a blank line.)-2.5
7232
-
No equivalent source code line in the reference code can be identified.
-E 1.387(The return v)144 513.6 R 1.387(alue is true unless an in)-.25 F
7238
-
+E 1.387(The return v)144 537.6 R 1.387(alue is true unless an in)-.25 F
7233 ➡ 7239 -.25(va)-.4 G 1.388
7234 ➡ 7240 (lid option is supplied, an attempt is made to modify the).25 F
7235
-
No equivalent source code line in the reference code can be identified.
-(options for a)144 525.6 Q F2(name)2.5 E F0
7241
-
+(options for a)144 549.6 Q F2(name)2.5 E F0
7236 ➡ 7242 (for which no completion speci\214cation e)2.5 E
7237
-
No equivalent source code line in the reference code can be identified.
-(xists, or an output error occurs.)-.15 E F1(continue)108 542.4 Q F0([)
7238
-
No equivalent source code line in the reference code can be identified.
-2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 554.4 R 1.754
7243
-
+(xists, or an output error occurs.)-.15 E F1(continue)108 566.4 Q F0([)
7244
-
+2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 578.4 R 1.754
7239 ➡ 7245 (xt iteration of the enclosing)-.15 F F1 -.25(fo)4.254 G(r).25 E F0(,)A
7240 ➡ 7246 F1(while)4.254 E F0(,)A F1(until)4.254 E F0 4.254(,o)C(r)-4.254 E F1
7241 ➡ 7247 (select)4.254 E F0 4.253(loop. If)4.254 F F2(n)4.613 E F0 1.753
7242
-
No equivalent source code line in the reference code can be identified.
-(is speci\214ed,)4.493 F 1.208(resume at the)144 566.4 R F2(n)3.709 E F0
7243
-
No equivalent source code line in the reference code can be identified.
-1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F4 10
7248
-
+(is speci\214ed,)4.493 F 1.208(resume at the)144 590.4 R F2(n)3.709 E F0
7249
-
+1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F5 10
7244 ➡ 7250 /Symbol SF<b3>3.709 E F0 3.709(1. If)3.709 F F2(n)4.069 E F0 1.209
7245 ➡ 7251 (is greater than the number of enclosing)3.949 F .514
7246
-
No equivalent source code line in the reference code can be identified.
-(loops, the last enclosing loop \(the `)144 578.4 R(`top-le)-.74 E -.15
7252
-
+(loops, the last enclosing loop \(the `)144 602.4 R(`top-le)-.74 E -.15
7247 ➡ 7253 (ve)-.25 G(l').15 E 3.014('l)-.74 G .514(oop\) is resumed.)-3.014 F .513
7248 ➡ 7254 (The return v)5.513 F .513(alue is 0 unless)-.25 F F2(n)3.013 E F0(is)
7249
-
No equivalent source code line in the reference code can be identified.
-3.013 E(not greater than or equal to 1.)144 590.4 Q F1(declar)108 607.2
7255
-
+3.013 E(not greater than or equal to 1.)144 614.4 Q F1(declar)108 631.2
7250 ➡ 7256 Q(e)-.18 E F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1<ad70>-2.5 E
7251 ➡ 7257 F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C(..])-2.5 E F1
7252
-
No equivalent source code line in the reference code can be identified.
-(typeset)108 619.2 Q F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1
7258
-
+(typeset)108 643.2 Q F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1
7253 ➡ 7259 <ad70>-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C
7254
-
No equivalent source code line in the reference code can be identified.
-(..])-2.5 E 1.264(Declare v)144 631.2 R 1.264(ariables and/or gi)-.25 F
7260
-
+(..])-2.5 E 1.264(Declare v)144 655.2 R 1.264(ariables and/or gi)-.25 F
7255 ➡ 7261 1.564 -.15(ve t)-.25 H 1.264(hem attrib).15 F 3.765(utes. If)-.2 F(no)
7256 ➡ 7262 3.765 E F2(name)3.765 E F0 3.765(sa)C 1.265(re gi)-3.765 F -.15(ve)-.25
7257 ➡ 7263 G 3.765(nt).15 G 1.265(hen display the v)-3.765 F 1.265(alues of)-.25 F
7258
-
No equivalent source code line in the reference code can be identified.
--.25(va)144 643.2 S 3.483(riables. The).25 F F1<ad70>3.483 E F0 .983
7264
-
+-.25(va)144 667.2 S 3.483(riables. The).25 F F1<ad70>3.483 E F0 .983
7259 ➡ 7265 (option will display the attrib)3.483 F .983(utes and v)-.2 F .982
7260 ➡ 7266 (alues of each)-.25 F F2(name)3.482 E F0 5.982(.W).18 G(hen)-5.982 E F1
7261
-
No equivalent source code line in the reference code can be identified.
-<ad70>3.482 E F0 .982(is used)3.482 F(with)144 655.2 Q F2(name)2.774 E
7267
-
+<ad70>3.482 E F0 .982(is used)3.482 F(with)144 679.2 Q F2(name)2.774 E
7262 ➡ 7268 F0(ar)2.774 E .274(guments, additional options, other than)-.18 F F1
7263 ➡ 7269 <ad66>2.775 E F0(and)2.775 E F1<ad46>2.775 E F0 2.775(,a)C .275
7264 ➡ 7270 (re ignored.)-2.775 F(When)5.275 E F1<ad70>2.775 E F0 .275(is supplied)
7265
-
No equivalent source code line in the reference code can be identified.
-2.775 F(without)144 667.2 Q F2(name)4.814 E F0(ar)4.814 E 2.314
7271
-
+2.775 F(without)144 691.2 Q F2(name)4.814 E F0(ar)4.814 E 2.314
7266 ➡ 7272 (guments, it will display the attrib)-.18 F 2.314(utes and v)-.2 F 2.313
7267 ➡ 7273 (alues of all v)-.25 F 2.313(ariables ha)-.25 F 2.313(ving the)-.2 F
7268
-
No equivalent source code line in the reference code can be identified.
-(attrib)144 679.2 Q 1.181(utes speci\214ed by the additional options.)
7274
-
+(attrib)144 703.2 Q 1.181(utes speci\214ed by the additional options.)
7269 ➡ 7275 -.2 F 1.182(If no other options are supplied with)6.181 F F1<ad70>3.682
7270 ➡ 7276 E F0(,)A F1(declar)3.682 E(e)-.18 E F0 .62(will display the attrib)144
7271
-
No equivalent source code line in the reference code can be identified.
-691.2 R .62(utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12
7277
-
+715.2 R .62(utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12
7272 ➡ 7278 (ariables. The)-.25 F F1<ad66>3.12 E F0 .62
7273 ➡ 7279 (option will restrict the display)3.12 F 1.29(to shell functions.)144
7274
-
No equivalent source code line in the reference code can be identified.
-703.2 R(The)6.29 E F1<ad46>3.79 E F0 1.291(option inhibits the display \
7275
-
No equivalent source code line in the reference code can be identified.
-of function de\214nitions; only the function)3.791 F .948
7276
-
No equivalent source code line in the reference code can be identified.
-(name and attrib)144 715.2 R .948(utes are printed.)-.2 F .948(If the)
7277
-
No equivalent source code line in the reference code can be identified.
-5.948 F F1(extdeb)3.448 E(ug)-.2 E F0 .948
7278
-
No equivalent source code line in the reference code can be identified.
-(shell option is enabled using)3.448 F F1(shopt)3.448 E F0 3.448(,t)C
7279
-
No equivalent source code line in the reference code can be identified.
-.948(he source)-3.448 F 1.69(\214le name and line number where each)144
7280
-
No equivalent source code line in the reference code can be identified.
-727.2 R F2(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19
7281
-
No equivalent source code line in the reference code can be identified.
-F(The)6.69 E F1<ad46>4.19 E F0(option)4.19 E(GNU Bash 5.0)72 768 Q
7282
-
No equivalent source code line in the reference code can be identified.
-(2018 March 15)144.29 E(60)193.45 E 0 Cg EP
7280
-
+727.2 R(The)6.29 E F1<ad46>3.79 E F0 1.291(option inhibits the display \
7281
-
+of function de\214nitions; only the function)3.791 F(GNU Bash 5.0)72 768
7282
-
+Q(2018 March 15)144.29 E(60)193.45 E 0 Cg EP
7283 %%Page: 61 61
7284 %%BeginPageSetup
7285 BP
7286 %%EndPageSetup
7287 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
7288
-
No equivalent source code line in the reference code can be identified.
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(implies)144 84 Q
7289
-
No equivalent source code line in the reference code can be identified.
-/F1 10/Times-Bold@0 SF<ad66>3.892 E F0 6.392(.T)C(he)-6.392 E F1<ad67>
7290
-
No equivalent source code line in the reference code can be identified.
-3.892 E F0 1.391(option forces v)3.892 F 1.391
7288
-
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E .948
7289
-
+(name and attrib)144 84 R .948(utes are printed.)-.2 F .948(If the)5.948
7290
-
+F/F1 10/Times-Bold@0 SF(extdeb)3.448 E(ug)-.2 E F0 .948
7291
-
+(shell option is enabled using)3.448 F F1(shopt)3.448 E F0 3.448(,t)C
7292
-
+.948(he source)-3.448 F 1.69(\214le name and line number where each)144
7293
-
+96 R/F2 10/Times-Italic@0 SF(name)4.19 E F0 1.69
7294
-
+(is de\214ned are displayed as well.)4.19 F(The)6.69 E F1<ad46>4.19 E F0
7295
-
+(option)4.19 E(implies)144 108 Q F1<ad66>3.892 E F0 6.392(.T)C(he)-6.392
7296
-
+E F1<ad67>3.892 E F0 1.391(option forces v)3.892 F 1.391
7291 ➡ 7297 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15
7292
-
No equivalent source code line in the reference code can be identified.
-(ve)-.25 G(n).15 E(when)144 96 Q F1(declar)4.382 E(e)-.18 E F0 1.882
7298
-
+(ve)-.25 G(n).15 E(when)144 120 Q F1(declar)4.382 E(e)-.18 E F0 1.882
7293 ➡ 7299 (is e)4.382 F -.15(xe)-.15 G 1.882(cuted in a shell function.).15 F
7294 ➡ 7300 1.883(It is ignored in all other cases.)6.882 F 1.883(The follo)6.883 F
7295
-
No equivalent source code line in the reference code can be identified.
-(wing)-.25 E .794(options can be used to restrict output to v)144 108 R
7301
-
+(wing)-.25 E .794(options can be used to restrict output to v)144 132 R
7296 ➡ 7302 .794(ariables with the speci\214ed attrib)-.25 F .793(ute or to gi)-.2 F
7297
-
No equivalent source code line in the reference code can be identified.
-1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 120 Q(utes:)-.2 E F1
7298
-
No equivalent source code line in the reference code can be identified.
-<ad61>144 132 Q F0(Each)180 132 Q/F2 10/Times-Italic@0 SF(name)2.5 E F0
7299
-
No equivalent source code line in the reference code can be identified.
-(is an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray v)-2.5 E
7300
-
No equivalent source code line in the reference code can be identified.
-(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).)
7301
-
No equivalent source code line in the reference code can be identified.
-.15 E F1<ad41>144 144 Q F0(Each)180 144 Q F2(name)2.5 E F0
7302
-
No equivalent source code line in the reference code can be identified.
-(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v).15 E(ariable \(see)
7303
-
No equivalent source code line in the reference code can be identified.
--.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1<ad66>144
7304
-
No equivalent source code line in the reference code can be identified.
-156 Q F0(Use function names only)180 156 Q(.)-.65 E F1<ad69>144 168 Q F0
7305
-
No equivalent source code line in the reference code can be identified.
-.557(The v)180 168 R .558(ariable is treated as an inte)-.25 F .558
7306
-
No equivalent source code line in the reference code can be identified.
-(ger; arithmetic e)-.15 F -.25(va)-.25 G .558(luation \(see).25 F/F3 9
7307
-
No equivalent source code line in the reference code can be identified.
-/Times-Bold@0 SF .558(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)
7308
-
No equivalent source code line in the reference code can be identified.
-180 180 Q F0(abo)2.25 E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G
7309
-
No equivalent source code line in the reference code can be identified.
-(erformed when the v)-2.5 E(ariable is assigned a v)-.25 E(alue.)-.25 E
7310
-
No equivalent source code line in the reference code can be identified.
-F1<ad6c>144 192 Q F0 .91(When the v)180 192 R .909
7311
-
No equivalent source code line in the reference code can be identified.
-(ariable is assigned a v)-.25 F .909(alue, all upper)-.25 F .909
7312
-
No equivalent source code line in the reference code can be identified.
-(-case characters are con)-.2 F -.15(ve)-.4 G .909(rted to lo).15 F(wer)
7313
-
No equivalent source code line in the reference code can be identified.
--.25 E(-)-.2 E 2.5(case. The)180 204 R(upper)2.5 E(-case attrib)-.2 E
7314
-
No equivalent source code line in the reference code can be identified.
-(ute is disabled.)-.2 E F1<ad6e>144 216 Q F0(Gi)180 216 Q 1.619 -.15
7315
-
No equivalent source code line in the reference code can be identified.
-(ve e)-.25 H(ach).15 E F2(name)3.819 E F0(the)3.819 E F2(namer)3.819 E
7316
-
No equivalent source code line in the reference code can be identified.
-(ef)-.37 E F0(attrib)3.819 E 1.319
7303
-
+1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 144 Q(utes:)-.2 E F1
7304
-
+<ad61>144 156 Q F0(Each)180 156 Q F2(name)2.5 E F0(is an inde)2.5 E -.15
7305
-
+(xe)-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F1(Arrays)2.5
7306
-
+E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1<ad41>144 168 Q F0(Each)180
7307
-
+168 Q F2(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v)
7308
-
+.15 E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G
7309
-
+(\).).15 E F1<ad66>144 180 Q F0(Use function names only)180 180 Q(.)-.65
7310
-
+E F1<ad69>144 192 Q F0 .557(The v)180 192 R .558
7311
-
+(ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25
7312
-
+(va)-.25 G .558(luation \(see).25 F/F3 9/Times-Bold@0 SF .558
7313
-
+(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 204 Q F0(abo)2.25
7314
-
+E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G(erformed when the v)-2.5 E
7315
-
+(ariable is assigned a v)-.25 E(alue.)-.25 E F1<ad6c>144 216 Q F0 .91
7316
-
+(When the v)180 216 R .909(ariable is assigned a v)-.25 F .909
7317
-
+(alue, all upper)-.25 F .909(-case characters are con)-.2 F -.15(ve)-.4
7318
-
+G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 228 R
7319
-
+(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1<ad6e>144 240 Q
7320
-
+F0(Gi)180 240 Q 1.619 -.15(ve e)-.25 H(ach).15 E F2(name)3.819 E F0(the)
7321
-
+3.819 E F2(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319
7317 ➡ 7322 (ute, making it a name reference to another v)-.2 F(ariable.)-.25 E
7318
-
No equivalent source code line in the reference code can be identified.
-1.519(That other v)180 228 R 1.519(ariable is de\214ned by the v)-.25 F
7323
-
+1.519(That other v)180 252 R 1.519(ariable is de\214ned by the v)-.25 F
7319 ➡ 7324 1.518(alue of)-.25 F F2(name)4.018 E F0 6.518(.A)C 1.518
7320
-
No equivalent source code line in the reference code can be identified.
-(ll references, assignments, and)-6.518 F(attrib)180 240 Q .226
7325
-
+(ll references, assignments, and)-6.518 F(attrib)180 264 Q .226
7321 ➡ 7326 (ute modi\214cations to)-.2 F F2(name)2.726 E F0 2.726(,e)C .226
7322 ➡ 7327 (xcept those using or changing the)-2.876 F F1<ad6e>2.726 E F0(attrib)
7323
-
No equivalent source code line in the reference code can be identified.
-2.726 E .227(ute itself, are)-.2 F .809(performed on the v)180 252 R
7328
-
+2.726 E .227(ute itself, are)-.2 F .809(performed on the v)180 276 R
7324 ➡ 7329 .809(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D
7325 ➡ 7330 3.308(alue. The).3 F .808(nameref attrib)3.308 F .808(ute cannot be)-.2
7326
-
No equivalent source code line in the reference code can be identified.
-F(applied to array v)180 264 Q(ariables.)-.25 E F1<ad72>144 276 Q F0
7327
-
No equivalent source code line in the reference code can be identified.
-(Mak)180 276 Q(e)-.1 E F2(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E
7331
-
+F(applied to array v)180 288 Q(ariables.)-.25 E F1<ad72>144 300 Q F0
7332
-
+(Mak)180 300 Q(e)-.1 E F2(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E
7328 ➡ 7333 7.546(.T)-.65 G 2.546(hese names cannot then be assigned v)-7.546 F
7329
-
No equivalent source code line in the reference code can be identified.
-2.547(alues by subsequent)-.25 F(assignment statements or unset.)180 288
7330
-
No equivalent source code line in the reference code can be identified.
-Q F1<ad74>144 300 Q F0(Gi)180 300 Q .73 -.15(ve e)-.25 H(ach).15 E F2
7334
-
+2.547(alues by subsequent)-.25 F(assignment statements or unset.)180 312
7335
-
+Q F1<ad74>144 324 Q F0(Gi)180 324 Q .73 -.15(ve e)-.25 H(ach).15 E F2
7331 ➡ 7336 (name)2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E
7332 ➡ 7337 2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F1(DEB)2.929
7333 ➡ 7338 E(UG)-.1 E F0(and)2.929 E F1(RETURN)2.929 E F0
7334
-
No equivalent source code line in the reference code can be identified.
-(traps from the calling shell.)180 312 Q(The trace attrib)5 E
7335
-
No equivalent source code line in the reference code can be identified.
-(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1<ad75>144 324
7336
-
No equivalent source code line in the reference code can be identified.
-Q F0 .909(When the v)180 324 R .909(ariable is assigned a v)-.25 F .909
7339
-
+(traps from the calling shell.)180 336 Q(The trace attrib)5 E
7340
-
+(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1<ad75>144 348
7341
-
+Q F0 .909(When the v)180 348 R .909(ariable is assigned a v)-.25 F .909
7337 ➡ 7342 (alue, all lo)-.25 F(wer)-.25 E .909(-case characters are con)-.2 F -.15
7338
-
No equivalent source code line in the reference code can be identified.
-(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 336 R(lo)2.5
7339
-
No equivalent source code line in the reference code can be identified.
-E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1<ad78>144 348 Q
7340
-
No equivalent source code line in the reference code can be identified.
-F0(Mark)180 348 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E
7343
-
+(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 360 R(lo)2.5
7344
-
+E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1<ad78>144 372 Q
7345
-
+F0(Mark)180 372 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E
7341 ➡ 7346 (xport to subsequent commands via the en)-.15 E(vironment.)-.4 E .121
7342
-
No equivalent source code line in the reference code can be identified.
-(Using `+' instead of `\255' turns of)144 364.8 R 2.621(ft)-.25 G .121
7347
-
+(Using `+' instead of `\255' turns of)144 388.8 R 2.621(ft)-.25 G .121
7343 ➡ 7348 (he attrib)-2.621 F .121(ute instead, with the e)-.2 F .12
7344 ➡ 7349 (xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F .644
7345
-
No equivalent source code line in the reference code can be identified.
-(to destro)144 376.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v)
7350
-
+(to destro)144 400.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v)
7346 ➡ 7351 -3.144 F .644(ariable and)-.25 F F1(+r)3.145 E F0 .645(will not remo)
7347 ➡ 7352 3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.145
7348
-
No equivalent source code line in the reference code can be identified.
-(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 388.8 Q F1
7353
-
+(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 412.8 Q F1
7349 ➡ 7354 (declar)2.835 E(e)-.18 E F0(and)2.835 E F1(typeset)2.835 E F0(mak)2.835
7350 ➡ 7355 E 2.835(ee)-.1 G(ach)-2.835 E F2(name)2.835 E F0 .335
7351 ➡ 7356 (local, as with the)2.835 F F1(local)2.835 E F0 .335
7352 ➡ 7357 (command, unless the)2.835 F F1<ad67>2.835 E F0(option)2.835 E 1.282
7353
-
No equivalent source code line in the reference code can be identified.
-(is supplied.)144 400.8 R 1.282(If a v)6.282 F 1.283
7358
-
+(is supplied.)144 424.8 R 1.282(If a v)6.282 F 1.283
7354 ➡ 7359 (ariable name is follo)-.25 F 1.283(wed by =)-.25 F F2(value)A F0 3.783
7355 ➡ 7360 (,t)C 1.283(he v)-3.783 F 1.283(alue of the v)-.25 F 1.283
7356 ➡ 7361 (ariable is set to)-.25 F F2(value)3.783 E F0(.)A .927(When using)144
7357
-
No equivalent source code line in the reference code can be identified.
-412.8 R F1<ad61>3.427 E F0(or)3.427 E F1<ad41>3.427 E F0 .926
7362
-
+436.8 R F1<ad61>3.427 E F0(or)3.427 E F1<ad41>3.427 E F0 .926
7358 ➡ 7363 (and the compound assignment syntax to create array v)3.427 F .926
7359
-
No equivalent source code line in the reference code can be identified.
-(ariables, additional)-.25 F(attrib)144 424.8 Q .592(utes do not tak)-.2
7364
-
+(ariables, additional)-.25 F(attrib)144 448.8 Q .592(utes do not tak)-.2
7360 ➡ 7365 F 3.092(ee)-.1 G -.25(ff)-3.092 G .592
7361 ➡ 7366 (ect until subsequent assignments.).25 F .592(The return v)5.592 F .592
7362 ➡ 7367 (alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .429
7363 ➡ 7368 (option is encountered, an attempt is made to de\214ne a function using)
7364
-
No equivalent source code line in the reference code can be identified.
-144 436.8 R/F4 10/Courier@0 SF .428(\255f foo=bar)2.929 F F0 2.928(,a)C
7369
-
+144 460.8 R/F4 10/Courier@0 SF .428(\255f foo=bar)2.929 F F0 2.928(,a)C
7365 ➡ 7370 2.928(na)-2.928 G .428(ttempt is)-2.928 F .062(made to assign a v)144
7366
-
No equivalent source code line in the reference code can be identified.
-448.8 R .062(alue to a readonly v)-.25 F .063
7371
-
+472.8 R .062(alue to a readonly v)-.25 F .063
7367 ➡ 7372 (ariable, an attempt is made to assign a v)-.25 F .063
7368 ➡ 7373 (alue to an array v)-.25 F(ari-)-.25 E .102
7369
-
No equivalent source code line in the reference code can be identified.
-(able without using the compound assignment syntax \(see)144 460.8 R F1
7374
-
+(able without using the compound assignment syntax \(see)144 484.8 R F1
7370 ➡ 7375 (Arrays)2.602 E F0(abo)2.602 E -.15(ve)-.15 G .102(\), one of the).15 F
7371
-
No equivalent source code line in the reference code can be identified.
-F2(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 472.8 S .171
7376
-
+F2(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 496.8 S .171
7372 ➡ 7377 (lid shell v).25 F .171(ariable name, an attempt is made to turn of)-.25
7373 ➡ 7378 F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .172
7374
-
No equivalent source code line in the reference code can be identified.
-(ariable, an)-.25 F .96(attempt is made to turn of)144 484.8 R 3.46(fa)
7379
-
+(ariable, an)-.25 F .96(attempt is made to turn of)144 508.8 R 3.46(fa)
7375 ➡ 7380 -.25 G .96(rray status for an array v)-3.46 F .96
7376
-
No equivalent source code line in the reference code can be identified.
-(ariable, or an attempt is made to display a)-.25 F(non-e)144 496.8 Q
7381
-
+(ariable, or an attempt is made to display a)-.25 F(non-e)144 520.8 Q
7377 ➡ 7382 (xistent function with)-.15 E F1<ad66>2.5 E F0(.)A F1
7378
-
No equivalent source code line in the reference code can be identified.
-(dirs [\255clpv] [+)108 513.6 Q F2(n)A F1 2.5(][)C<ad>-2.5 E F2(n)A F1
7379
-
No equivalent source code line in the reference code can be identified.
-(])A F0 -.4(Wi)144 525.6 S .328
7383
-
+(dirs [\255clpv] [+)108 537.6 Q F2(n)A F1 2.5(][)C<ad>-2.5 E F2(n)A F1
7384
-
+(])A F0 -.4(Wi)144 549.6 S .328
7380 ➡ 7385 (thout options, displays the list of currently remembered directories.)
7381 ➡ 7386 .4 F .329(The def)5.329 F .329(ault display is on a)-.1 F 1.238
7382
-
No equivalent source code line in the reference code can be identified.
-(single line with directory names separated by spaces.)144 537.6 R 1.238
7383
-
No equivalent source code line in the reference code can be identified.
-(Directories are added to the list with the)6.238 F F1(pushd)144 549.6 Q
7387
-
+(single line with directory names separated by spaces.)144 561.6 R 1.238
7388
-
+(Directories are added to the list with the)6.238 F F1(pushd)144 573.6 Q
7384 ➡ 7389 F0 2.003(command; the)4.503 F F1(popd)4.503 E F0 2.003(command remo)
7385 ➡ 7390 4.503 F -.15(ve)-.15 G 4.503(se).15 G 2.003(ntries from the list.)-4.503
7386
-
No equivalent source code line in the reference code can be identified.
-F 2.003(The current directory is)7.003 F(al)144 561.6 Q -.1(wa)-.1 G
7387
-
No equivalent source code line in the reference code can be identified.
-(ys the \214rst directory in the stack.).1 E F1<ad63>144 573.6 Q F0
7388
-
No equivalent source code line in the reference code can be identified.
-(Clears the directory stack by deleting all of the entries.)180 573.6 Q
7389
-
No equivalent source code line in the reference code can be identified.
-F1<ad6c>144 585.6 Q F0 .882
7390
-
No equivalent source code line in the reference code can be identified.
-(Produces a listing using full pathnames; the def)180 585.6 R .881
7391
-
+F 2.003(The current directory is)7.003 F(al)144 585.6 Q -.1(wa)-.1 G
7392
-
+(ys the \214rst directory in the stack.).1 E F1<ad63>144 597.6 Q F0
7393
-
+(Clears the directory stack by deleting all of the entries.)180 597.6 Q
7394
-
+F1<ad6c>144 609.6 Q F0 .882
7395
-
+(Produces a listing using full pathnames; the def)180 609.6 R .881
7391 ➡ 7396 (ault listing format uses a tilde to denote)-.1 F(the home directory)180
7392
-
No equivalent source code line in the reference code can be identified.
-597.6 Q(.)-.65 E F1<ad70>144 609.6 Q F0
7393
-
No equivalent source code line in the reference code can be identified.
-(Print the directory stack with one entry per line.)180 609.6 Q F1<ad76>
7394
-
No equivalent source code line in the reference code can be identified.
-144 621.6 Q F0 .272(Print the directory stack with one entry per line, \
7395
-
No equivalent source code line in the reference code can be identified.
-pre\214xing each entry with its inde)180 621.6 R 2.773(xi)-.15 G 2.773
7396
-
No equivalent source code line in the reference code can be identified.
-(nt)-2.773 G(he)-2.773 E(stack.)180 633.6 Q F1(+)144 645.6 Q F2(n)A F0
7397
-
No equivalent source code line in the reference code can be identified.
-1.565(Displays the)180 645.6 R F2(n)4.065 E F0 1.565
7397
-
+621.6 Q(.)-.65 E F1<ad70>144 633.6 Q F0
7398
-
+(Print the directory stack with one entry per line.)180 633.6 Q F1<ad76>
7399
-
+144 645.6 Q F0 .272(Print the directory stack with one entry per line, \
7400
-
+pre\214xing each entry with its inde)180 645.6 R 2.773(xi)-.15 G 2.773
7401
-
+(nt)-2.773 G(he)-2.773 E(stack.)180 657.6 Q F1(+)144 669.6 Q F2(n)A F0
7402
-
+1.565(Displays the)180 669.6 R F2(n)4.065 E F0 1.565
7398 ➡ 7403 (th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F1
7399 ➡ 7404 (dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
7400
-
No equivalent source code line in the reference code can be identified.
-(without options, starting with zero.)180 657.6 Q F1<ad>144 669.6 Q F2
7401
-
No equivalent source code line in the reference code can be identified.
-(n)A F0 1.194(Displays the)180 669.6 R F2(n)3.694 E F0 1.194
7405
-
+(without options, starting with zero.)180 681.6 Q F1<ad>144 693.6 Q F2
7406
-
+(n)A F0 1.194(Displays the)180 693.6 R F2(n)3.694 E F0 1.194
7402 ➡ 7407 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F
7403 ➡ 7408 F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
7404
-
No equivalent source code line in the reference code can be identified.
-(without options, starting with zero.)180 681.6 Q .258(The return v)144
7405
-
No equivalent source code line in the reference code can be identified.
-698.4 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258
7406
-
No equivalent source code line in the reference code can be identified.
-(lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe)
7407
-
No equivalent source code line in the reference code can be identified.
--.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-)
7408
-
No equivalent source code line in the reference code can be identified.
-.15 F(tory stack.)144 710.4 Q(GNU Bash 5.0)72 768 Q(2018 March 15)144.29
7409
-
No equivalent source code line in the reference code can be identified.
-E(61)193.45 E 0 Cg EP
7409
-
+(without options, starting with zero.)180 705.6 Q 1.707(The return v)144
7410
-
+722.4 R 1.707(alue is 0 unless an in)-.25 F -.25(va)-.4 G 1.707
7411
-
+(lid option is supplied or).25 F F2(n)4.207 E F0(inde)4.206 E -.15(xe)
7412
-
+-.15 G 4.206(sb).15 G -.15(ey)-4.206 G 1.706(ond the end of the).15 F
7413
-
+(GNU Bash 5.0)72 768 Q(2018 March 15)144.29 E(61)193.45 E 0 Cg EP
7410 ➡ 7414 %%Page: 62 62
7411 ➡ 7415 %%BeginPageSetup
7412 ➡ 7416 BP
7413 ➡ 7417 %%EndPageSetup
7414 ➡ 7418 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S 137.14(SH\(1\) General).35 F
7415
-
No equivalent source code line in the reference code can be identified.
-(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E/F1 10/Times-Bold@0
7416
-
No equivalent source code line in the reference code can be identified.
-SF(diso)108 84 Q(wn)-.1 E F0([)2.5 E F1(\255ar)A F0 2.5(][)C F1<ad68>
7417
-
No equivalent source code line in the reference code can be identified.
--2.5 E F0 2.5(][)C/F2 10/Times-Italic@0 SF(jobspec)-2.5 E F0(... |)2.5 E
7418
-
No equivalent source code line in the reference code can be identified.
-F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 96 S .121(thout options, remo).4
7419
-
No equivalent source code line in the reference code can be identified.
-F .422 -.15(ve e)-.15 H(ach).15 E F2(jobspec)4.362 E F0 .122
7420
-
No equivalent source code line in the reference code can be identified.
-(from the table of acti)2.932 F .422 -.15(ve j)-.25 H 2.622(obs. If).15
7421
-
No equivalent source code line in the reference code can be identified.
-F F2(jobspec)4.362 E F0 .122(is not present, and)2.932 F .096
7422
-
No equivalent source code line in the reference code can be identified.
-(neither the)144 108 R F1<ad61>2.596 E F0 .096(nor the)2.596 F F1<ad72>
7423
-
No equivalent source code line in the reference code can be identified.
-2.596 E F0 .096(option is supplied, the)2.596 F F2(curr)2.596 E .096
7424
-
No equivalent source code line in the reference code can be identified.
-(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F1<ad68>
7425
-
No equivalent source code line in the reference code can be identified.
-2.596 E F0 .096(option is gi)2.596 F -.15(ve)-.25 G .096(n, each).15 F
7426
-
No equivalent source code line in the reference code can be identified.
-F2(jobspec)145.74 120 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 G 3.085
7427
-
No equivalent source code line in the reference code can be identified.
-(df).15 G .585(rom the table, b)-3.085 F .585(ut is mark)-.2 F .585
7428
-
No equivalent source code line in the reference code can be identified.
-(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586
7429
-
No equivalent source code line in the reference code can be identified.
-(is not sent to the job if the)2.835 F .962(shell recei)144 132 R -.15
7419
-
+(Commands Manual)2.5 E -.35(BA)139.64 G(SH\(1\)).35 E(directory stack.)
7420
-
+144 84 Q/F1 10/Times-Bold@0 SF(diso)108 100.8 Q(wn)-.1 E F0([)2.5 E F1
7421
-
+(\255ar)A F0 2.5(][)C F1<ad68>-2.5 E F0 2.5(][)C/F2 10/Times-Italic@0 SF
7422
-
+(jobspec)-2.5 E F0(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144
7423
-
+112.8 S .121(thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F2
7424
-
+(jobspec)4.362 E F0 .122(from the table of acti)2.932 F .422 -.15(ve j)
7425
-
+-.25 H 2.622(obs. If).15 F F2(jobspec)4.362 E F0 .122
7426
-
+(is not present, and)2.932 F .096(neither the)144 124.8 R F1<ad61>2.596
7427
-
+E F0 .096(nor the)2.596 F F1<ad72>2.596 E F0 .096
7428
-
+(option is supplied, the)2.596 F F2(curr)2.596 E .096(ent job)-.37 F F0
7429
-
+.096(is used.)2.596 F .096(If the)5.096 F F1<ad68>2.596 E F0 .096
7430
-
+(option is gi)2.596 F -.15(ve)-.25 G .096(n, each).15 F F2(jobspec)
7431
-
+145.74 136.8 Q F0 .585(is not remo)3.395 F -.15(ve)-.15 G 3.085(df).15 G
7432
-
+.585(rom the table, b)-3.085 F .585(ut is mark)-.2 F .585(ed so that)-.1
7433
-
+F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586
7434
-
+(is not sent to the job if the)2.835 F .962(shell recei)144 148.8 R -.15
7430 ➡ 7435 (ve)-.25 G 3.462(sa).15 G F3(SIGHUP)A/F4 9/Times-Roman@0 SF(.)A F0 .962
7431 ➡ 7436 (If no)5.462 F F2(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F1
7432 ➡ 7437 <ad61>3.462 E F0 .962(option means to remo)3.462 F 1.262 -.15(ve o)-.15
7433
-
No equivalent source code line in the reference code can be identified.
-H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 144 R F1
7438
-
+H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 160.8 R F1
7434 ➡ 7439 <ad72>3.858 E F0 1.358(option without a)3.858 F F2(jobspec)5.598 E F0
7435 ➡ 7440 (ar)4.169 E 1.359(gument restricts operation to running jobs.)-.18 F
7436
-
No equivalent source code line in the reference code can be identified.
-1.359(The return)6.359 F -.25(va)144 156 S(lue is 0 unless a).25 E F2
7441
-
+1.359(The return)6.359 F -.25(va)144 172.8 S(lue is 0 unless a).25 E F2
7437 ➡ 7442 (jobspec)4.24 E F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E
7438
-
No equivalent source code line in the reference code can be identified.
-F1(echo)108 172.8 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)
7439
-
No equivalent source code line in the reference code can be identified.
--.37 E F0(...])2.5 E .425(Output the)144 184.8 R F2(ar)2.925 E(g)-.37 E
7443
-
+F1(echo)108 189.6 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)
7444
-
+-.37 E F0(...])2.5 E .425(Output the)144 201.6 R F2(ar)2.925 E(g)-.37 E
7440 ➡ 7445 F0 .424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924
7441 ➡ 7446 (wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .307
7442
-
No equivalent source code line in the reference code can be identified.
-(error occurs.)144 196.8 R(If)5.307 E F1<ad6e>2.807 E F0 .307
7447
-
+(error occurs.)144 213.6 R(If)5.307 E F1<ad6e>2.807 E F0 .307
7443 ➡ 7448 (is speci\214ed, the trailing ne)2.807 F .308(wline is suppressed.)-.25
7444 ➡ 7449 F .308(If the)5.308 F F1<ad65>2.808 E F0 .308(option is gi)2.808 F -.15
7445 ➡ 7450 (ve)-.25 G .308(n, inter).15 F(-)-.2 E 1.349(pretation of the follo)144
7446
-
No equivalent source code line in the reference code can be identified.
-208.8 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The)
7451
-
+225.6 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The)
7447 ➡ 7452 6.348 E F1<ad45>3.848 E F0 1.348(option disables the)3.848 F 1.054
7448
-
No equivalent source code line in the reference code can be identified.
-(interpretation of these escape characters, e)144 220.8 R -.15(ve)-.25 G
7453
-
+(interpretation of these escape characters, e)144 237.6 R -.15(ve)-.25 G
7449 ➡ 7454 3.555(no).15 G 3.555(ns)-3.555 G 1.055(ystems where the)-3.555 F 3.555
7450 ➡ 7455 (ya)-.15 G 1.055(re interpreted by def)-3.555 F(ault.)-.1 E(The)144
7451
-
No equivalent source code line in the reference code can be identified.
-232.8 Q F1(xpg_echo)3.459 E F0 .959
7456
-
+249.6 Q F1(xpg_echo)3.459 E F0 .959
7452 ➡ 7457 (shell option may be used to dynamically determine whether or not)3.459
7453 ➡ 7458 F F1(echo)3.458 E F0 -.15(ex)3.458 G(pands).15 E .715
7454
-
No equivalent source code line in the reference code can be identified.
-(these escape characters by def)144 244.8 R(ault.)-.1 E F1(echo)5.715 E
7459
-
+(these escape characters by def)144 261.6 R(ault.)-.1 E F1(echo)5.715 E
7455 ➡ 7460 F0 .716(does not interpret)3.215 F F1<adad>3.216 E F0 .716
7456 ➡ 7461 (to mean the end of options.)3.216 F F1(echo)5.716 E F0
7457
-
No equivalent source code line in the reference code can be identified.
-(interprets the follo)144 256.8 Q(wing escape sequences:)-.25 E F1(\\a)
7458
-
No equivalent source code line in the reference code can be identified.
-144 268.8 Q F0(alert \(bell\))180 268.8 Q F1(\\b)144 280.8 Q F0
7459
-
No equivalent source code line in the reference code can be identified.
-(backspace)180 280.8 Q F1(\\c)144 292.8 Q F0(suppress further output)180
7460
-
No equivalent source code line in the reference code can be identified.
-292.8 Q F1(\\e)144 304.8 Q(\\E)144 316.8 Q F0(an escape character)180
7461
-
No equivalent source code line in the reference code can be identified.
-316.8 Q F1(\\f)144 328.8 Q F0(form feed)180 328.8 Q F1(\\n)144 340.8 Q
7462
-
No equivalent source code line in the reference code can be identified.
-F0(ne)180 340.8 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 352.8 Q F0
7463
-
No equivalent source code line in the reference code can be identified.
-(carriage return)180 352.8 Q F1(\\t)144 364.8 Q F0(horizontal tab)180
7464
-
No equivalent source code line in the reference code can be identified.
-364.8 Q F1(\\v)144 376.8 Q F0 -.15(ve)180 376.8 S(rtical tab).15 E F1
7465
-
No equivalent source code line in the reference code can be identified.
-(\\\\)144 388.8 Q F0(backslash)180 388.8 Q F1(\\0)144 400.8 Q F2(nnn)A
7466
-
No equivalent source code line in the reference code can be identified.
-F0(the eight-bit character whose v)180 400.8 Q(alue is the octal v)-.25
7462
-
+(interprets the follo)144 273.6 Q(wing escape sequences:)-.25 E F1(\\a)
7463
-
+144 285.6 Q F0(alert \(bell\))180 285.6 Q F1(\\b)144 297.6 Q F0
7464
-
+(backspace)180 297.6 Q F1(\\c)144 309.6 Q F0(suppress further output)180
7465
-
+309.6 Q F1(\\e)144 321.6 Q(\\E)144 333.6 Q F0(an escape character)180
7466
-
+333.6 Q F1(\\f)144 345.6 Q F0(form feed)180 345.6 Q F1(\\n)144 357.6 Q
7467
-
+F0(ne)180 357.6 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 369.6 Q F0
7468
-
+(carriage return)180 369.6 Q F1(\\t)144 381.6 Q F0(horizontal tab)180
7469
-
+381.6 Q F1(\\v)144 393.6 Q F0 -.15(ve)180 393.6 S(rtical tab).15 E F1
7470
-
+(\\\\)144 405.6 Q F0(backslash)180 405.6 Q F1(\\0)144 417.6 Q F2(nnn)A
7471
-
+F0(the eight-bit character whose v)180 417.6 Q(alue is the octal v)-.25
7467 ➡ 7472 E(alue)-.25 E F2(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F1
7468
-
No equivalent source code line in the reference code can be identified.
-(\\x)144 412.8 Q F2(HH)A F0(the eight-bit character whose v)180 412.8 Q
7473
-
+(\\x)144 429.6 Q F2(HH)A F0(the eight-bit character whose v)180 429.6 Q
7469 ➡ 7474 (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0
7470 ➡ 7475 (\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1
7471
-
No equivalent source code line in the reference code can be identified.
-(\\u)144 424.8 Q F2(HHHH)A F0 1.507
7472
-
No equivalent source code line in the reference code can be identified.
-(the Unicode \(ISO/IEC 10646\) character whose v)180 436.8 R 1.506
7476
-
+(\\u)144 441.6 Q F2(HHHH)A F0 1.507
7477
-
+(the Unicode \(ISO/IEC 10646\) character whose v)180 453.6 R 1.506
7473 ➡ 7478 (alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F2(HHHH)
7474
-
No equivalent source code line in the reference code can be identified.
-4.006 E F0(\(one to four he)180 448.8 Q 2.5(xd)-.15 G(igits\))-2.5 E F1
7475
-
No equivalent source code line in the reference code can be identified.
-(\\U)144 460.8 Q F2(HHHHHHHH)A F0 .547
7476
-
No equivalent source code line in the reference code can be identified.
-(the Unicode \(ISO/IEC 10646\) character whose v)180 472.8 R .547
7479
-
+4.006 E F0(\(one to four he)180 465.6 Q 2.5(xd)-.15 G(igits\))-2.5 E F1
7480
-
+(\\U)144 477.6 Q F2(HHHHHHHH)A F0 .547
7481
-
+(the Unicode \(ISO/IEC 10646\) character whose v)180 489.6 R .547
7477 ➡ 7482 (alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-)
7478
-
No equivalent source code line in the reference code can be identified.
-3.048 E(HHH)180 484.8 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G
7479
-
No equivalent source code line in the reference code can be identified.
-(igits\))-2.5 E F1(enable)108 501.6 Q F0([)2.5 E F1<ad61>A F0 2.5(][)C
7483
-
+3.048 E(HHH)180 501.6 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G
7484
-
+(igits\))-2.5 E F1(enable)108 518.4 Q F0([)2.5 E F1<ad61>A F0 2.5(][)C
7480 ➡ 7485 F1(\255dnps)-2.5 E F0 2.5(][)C F1<ad66>-2.5 E F2(\214lename)2.5 E F0 2.5
7481
-
No equivalent source code line in the reference code can be identified.
-(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 513.6 R
7486
-
+(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 530.4 R
7482 ➡ 7487 .278(uiltin shell commands.)-.2 F .278(Disabling a b)5.278 F .278
7483 ➡ 7488 (uiltin allo)-.2 F .278(ws a disk command which has)-.25 F .833
7484
-
No equivalent source code line in the reference code can be identified.
-(the same name as a shell b)144 525.6 R .834(uiltin to be e)-.2 F -.15
7489
-
+(the same name as a shell b)144 542.4 R .834(uiltin to be e)-.2 F -.15
7485 ➡ 7490 (xe)-.15 G .834(cuted without specifying a full pathname, e).15 F -.15
7486 ➡ 7491 (ve)-.25 G 3.334(nt).15 G(hough)-3.334 E .99
7487
-
No equivalent source code line in the reference code can be identified.
-(the shell normally searches for b)144 537.6 R .989
7492
-
+(the shell normally searches for b)144 554.4 R .989
7488 ➡ 7493 (uiltins before disk commands.)-.2 F(If)5.989 E F1<ad6e>3.489 E F0 .989
7489 ➡ 7494 (is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F 1.581
7490
-
No equivalent source code line in the reference code can be identified.
-(abled; otherwise,)144 549.6 R F2(names)4.082 E F0 1.582(are enabled.)
7495
-
+(abled; otherwise,)144 566.4 R F2(names)4.082 E F0 1.582(are enabled.)
7491 ➡ 7496 4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582(xample, to use the)-4.232 F
7492 ➡ 7497 F1(test)4.082 E F0 1.582(binary found via the)4.082 F F3 -.666(PA)4.082
7493
-
No equivalent source code line in the reference code can be identified.
-G(TH)-.189 E F0 .081(instead of the shell b)144 561.6 R .081(uiltin v)
7498
-
+G(TH)-.189 E F0 .081(instead of the shell b)144 578.4 R .081(uiltin v)
7494 ➡ 7499 -.2 F .081(ersion, run)-.15 F/F5 10/Courier@0 SF .081(enable -n test)
7495 ➡ 7500 2.581 F F0 5.081(.T)C(he)-5.081 E F1<ad66>2.58 E F0 .08
7496
-
No equivalent source code line in the reference code can be identified.
-(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 573.6 S 1.524
7501
-
+(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 590.4 S 1.524
7497 ➡ 7502 (iltin command).2 F F2(name)4.384 E F0 1.524(from shared object)4.204 F
7498 ➡ 7503 F2(\214lename)4.024 E F0 4.024(,o).18 G 4.024(ns)-4.024 G 1.524
7499
-
No equivalent source code line in the reference code can be identified.
-(ystems that support dynamic loading.)-4.024 F(The)144 585.6 Q F1<ad64>
7504
-
+(ystems that support dynamic loading.)-4.024 F(The)144 602.4 Q F1<ad64>
7500 ➡ 7505 2.867 E F0 .367(option will delete a b)2.867 F .367(uiltin pre)-.2 F
7501 ➡ 7506 .367(viously loaded with)-.25 F F1<ad66>2.866 E F0 5.366(.I)C 2.866(fn)
7502 ➡ 7507 -5.366 G(o)-2.866 E F2(name)2.866 E F0(ar)2.866 E .366(guments are gi)
7503
-
No equivalent source code line in the reference code can be identified.
--.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 597.6 R F1<ad70>
7508
-
+-.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 614.4 R F1<ad70>
7504 ➡ 7509 2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399
7505 ➡ 7510 (uiltins is printed.)-.2 F -.4(Wi)5.399 G .399(th no other option ar).4
7506 ➡ 7511 F .399(guments, the)-.18 F .099(list consists of all enabled shell b)144
7507
-
No equivalent source code line in the reference code can be identified.
-609.6 R 2.598(uiltins. If)-.2 F F1<ad6e>2.598 E F0 .098
7512
-
+626.4 R 2.598(uiltins. If)-.2 F F1<ad6e>2.598 E F0 .098
7508 ➡ 7513 (is supplied, only disabled b)2.598 F .098(uiltins are printed.)-.2 F
7509 ➡ 7514 (If)5.098 E F1<ad61>2.598 E F0 1.916
7510
-
No equivalent source code line in the reference code can be identified.
-(is supplied, the list printed includes all b)144 621.6 R 1.916
7515
-
+(is supplied, the list printed includes all b)144 638.4 R 1.916
7511 ➡ 7516 (uiltins, with an indication of whether or not each is)-.2 F 2.879
7512
-
No equivalent source code line in the reference code can be identified.
-(enabled. If)144 633.6 R F1<ad73>2.879 E F0 .379
7517
-
+(enabled. If)144 650.4 R F1<ad73>2.879 E F0 .379
7513 ➡ 7518 (is supplied, the output is restricted to the POSIX)2.879 F F2(special)
7514 ➡ 7519 2.879 E F0 -.2(bu)2.878 G 2.878(iltins. The).2 F .378(return v)2.878 F
7515
-
No equivalent source code line in the reference code can be identified.
-(alue)-.25 E .994(is 0 unless a)144 645.6 R F2(name)3.854 E F0 .994
7520
-
+(alue)-.25 E .994(is 0 unless a)144 662.4 R F2(name)3.854 E F0 .994
7516 ➡ 7521 (is not a shell b)3.674 F .994(uiltin or there is an error loading a ne)
7517 ➡ 7522 -.2 F 3.495(wb)-.25 G .995(uiltin from a shared)-3.695 F(object.)144
7518
-
No equivalent source code line in the reference code can be identified.
-657.6 Q F1 -2.3 -.15(ev a)108 674.4 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37
7519
-
No equivalent source code line in the reference code can be identified.
-E F0(...])2.5 E(The)144 686.4 Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C
7523
-
+674.4 Q F1 -2.3 -.15(ev a)108 691.2 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37
7524
-
+E F0(...])2.5 E(The)144 703.2 Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C
7520 ➡ 7525 .671(re read and concatenated together into a single command.)-3.171 F
7521
-
No equivalent source code line in the reference code can be identified.
-.67(This command is then read)5.67 F .495(and e)144 698.4 R -.15(xe)-.15
7526
-
+.67(This command is then read)5.67 F .495(and e)144 715.2 R -.15(xe)-.15
7522 ➡ 7527 G .495(cuted by the shell, and its e).15 F .495
7523 ➡ 7528 (xit status is returned as the v)-.15 F .495(alue of)-.25 F F1 -2.3 -.15
7524 ➡ 7529 (ev a)2.995 H(l).15 E F0 5.495(.I)C 2.995(ft)-5.495 G .495(here are no)
7525
-
No equivalent source code line in the reference code can be identified.
--2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 710.4 Q
7530
-
+-2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 727.2 Q
7526 ➡ 7531 (guments,)-.18 E F1 -2.3 -.15(ev a)2.5 H(l).15 E F0(returns 0.)2.5 E
7527 ➡ 7532 (GNU Bash 5.0)72 768 Q(2018 March 15)144.29 E(62)193.45 E 0 Cg EP
7528 ➡ 7533 %%Page: 63 63

Modified File: doc/bashref.html

LineTestsDifference Output
diff --git a/doc/bashref.dvi b/doc/bashref.dvi
index f21afc58..f79cc8ed 100644
Binary files a/doc/bashref.dvi and b/doc/bashref.dvi differ
diff --git a/doc/bashref.html b/doc/bashref.html
index 117f0a1c..f494f344 100644
--- a/doc/bashref.html
+++ b/doc/bashref.html
@@ -11820,7 +11820,9 @@ but the <code>FIGNORE</code> shell variable is used.
11820 is considered.
11821 The string is first split using the characters in the <code>IFS</code>
11822 special variable as delimiters.
11823
-
No equivalent source code line in the reference code can be identified.
-Shell quoting is honored.
11823
-
+Shell quoting is honored within the string, in order to provide a
11824
-
+mechanism for the words to contain shell metacharacters or characters
11825
-
+in the value of <code>IFS</code>.
11824 ➡ 11826 Each word is then expanded using
11825 ➡ 11827 brace expansion, tilde expansion, parameter and variable expansion,
11826 ➡ 11828 command substitution, and arithmetic expansion,

Modified File: doc/bashref.info

LineTestsDifference Output
diff --git a/doc/bashref.info b/doc/bashref.info
index f4d3f522..29dd0eff 100644
--- a/doc/bashref.info
+++ b/doc/bashref.info
@@ -8609,13 +8609,15 @@ used to filter the matches, but the 'FIGNORE' shell variable is used.
8609
8610 Next, the string specified as the argument to the '-W' option is
8611 considered. The string is first split using the characters in the 'IFS'
8612
-
No equivalent source code line in the reference code can be identified.
-special variable as delimiters. Shell quoting is honored. Each word is
8613
-
No equivalent source code line in the reference code can be identified.
-then expanded using brace expansion, tilde expansion, parameter and
8614
-
No equivalent source code line in the reference code can be identified.
-variable expansion, command substitution, and arithmetic expansion, as
8615
-
No equivalent source code line in the reference code can be identified.
-described above (*note Shell Expansions::). The results are split using
8616
-
No equivalent source code line in the reference code can be identified.
-the rules described above (*note Word Splitting::). The results of the
8617
-
No equivalent source code line in the reference code can be identified.
-expansion are prefix-matched against the word being completed, and the
8618
-
No equivalent source code line in the reference code can be identified.
-matching words become the possible completions.
8612
-
+special variable as delimiters. Shell quoting is honored within the
8613
-
+string, in order to provide a mechanism for the words to contain shell
8614
-
+metacharacters or characters in the value of 'IFS'. Each word is then
8615
-
+expanded using brace expansion, tilde expansion, parameter and variable
8616
-
+expansion, command substitution, and arithmetic expansion, as described
8617
-
+above (*note Shell Expansions::). The results are split using the rules
8618
-
+described above (*note Word Splitting::). The results of the expansion
8619
-
+are prefix-matched against the word being completed, and the matching
8620
-
+words become the possible completions.
8619 ➡ 8621
8620 ➡ 8622 After these matches have been generated, any shell function or
8621 ➡ 8623 command specified with the '-F' and '-C' options is invoked. When the
@@ -11684,32 +11686,32 @@ Node: Keyboard Macros357309
11684 ➡ 11686 Node: Miscellaneous Commands357996
11685 ➡ 11687 Node: Readline vi Mode363949
11686 ➡ 11688 Node: Programmable Completion364856
11687
-
No equivalent source code line in the reference code can be identified.
-Node: Programmable Completion Builtins372317
11688
-
No equivalent source code line in the reference code can be identified.
-Node: A Programmable Completion Example382203
11689
-
No equivalent source code line in the reference code can be identified.
-Node: Using History Interactively387454
11690
-
No equivalent source code line in the reference code can be identified.
-Node: Bash History Facilities388138
11691
-
No equivalent source code line in the reference code can be identified.
-Node: Bash History Builtins391143
11692
-
No equivalent source code line in the reference code can be identified.
-Node: History Interaction395674
11693
-
No equivalent source code line in the reference code can be identified.
-Node: Event Designators398741
11694
-
No equivalent source code line in the reference code can be identified.
-Node: Word Designators399960
11695
-
No equivalent source code line in the reference code can be identified.
-Node: Modifiers401597
11696
-
No equivalent source code line in the reference code can be identified.
-Node: Installing Bash402999
11697
-
No equivalent source code line in the reference code can be identified.
-Node: Basic Installation404136
11698
-
No equivalent source code line in the reference code can be identified.
-Node: Compilers and Options407394
11699
-
No equivalent source code line in the reference code can be identified.
-Node: Compiling For Multiple Architectures408135
11700
-
No equivalent source code line in the reference code can be identified.
-Node: Installation Names409828
11701
-
No equivalent source code line in the reference code can be identified.
-Node: Specifying the System Type410646
11702
-
No equivalent source code line in the reference code can be identified.
-Node: Sharing Defaults411362
11703
-
No equivalent source code line in the reference code can be identified.
-Node: Operation Controls412035
11704
-
No equivalent source code line in the reference code can be identified.
-Node: Optional Features412993
11705
-
No equivalent source code line in the reference code can be identified.
-Node: Reporting Bugs423519
11706
-
No equivalent source code line in the reference code can be identified.
-Node: Major Differences From The Bourne Shell424713
11707
-
No equivalent source code line in the reference code can be identified.
-Node: GNU Free Documentation License441565
11708
-
No equivalent source code line in the reference code can be identified.
-Node: Indexes466742
11709
-
No equivalent source code line in the reference code can be identified.
-Node: Builtin Index467196
11710
-
No equivalent source code line in the reference code can be identified.
-Node: Reserved Word Index474023
11711
-
No equivalent source code line in the reference code can be identified.
-Node: Variable Index476471
11712
-
No equivalent source code line in the reference code can be identified.
-Node: Function Index492149
11713
-
No equivalent source code line in the reference code can be identified.
-Node: Concept Index505452
11689
-
+Node: Programmable Completion Builtins372450
11690
-
+Node: A Programmable Completion Example382336
11691
-
+Node: Using History Interactively387587
11692
-
+Node: Bash History Facilities388271
11693
-
+Node: Bash History Builtins391276
11694
-
+Node: History Interaction395807
11695
-
+Node: Event Designators398874
11696
-
+Node: Word Designators400093
11697
-
+Node: Modifiers401730
11698
-
+Node: Installing Bash403132
11699
-
+Node: Basic Installation404269
11700
-
+Node: Compilers and Options407527
11701
-
+Node: Compiling For Multiple Architectures408268
11702
-
+Node: Installation Names409961
11703
-
+Node: Specifying the System Type410779
11704
-
+Node: Sharing Defaults411495
11705
-
+Node: Operation Controls412168
11706
-
+Node: Optional Features413126
11707
-
+Node: Reporting Bugs423652
11708
-
+Node: Major Differences From The Bourne Shell424846
11709
-
+Node: GNU Free Documentation License441698
11710
-
+Node: Indexes466875
11711
-
+Node: Builtin Index467329
11712
-
+Node: Reserved Word Index474156
11713
-
+Node: Variable Index476604
11714
-
+Node: Function Index492282
11715
-
+Node: Concept Index505585
11714 ➡ 11716 
11715 ➡ 11717 End Tag Table

Modified File: doc/bashref.log

LineTestsDifference Output
diff --git a/doc/bashref.log b/doc/bashref.log
index e47cc0d6..6e850e1d 100644
--- a/doc/bashref.log
+++ b/doc/bashref.log
@@ -1,4 +1,4 @@
1
-
No equivalent source code line in the reference code can be identified.
-This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/MacPorts 2017_2) (preloaded format=pdfetex 2017.7.5) 15 MAR 2018 14:13
1
-
+This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/MacPorts 2017_2) (preloaded format=pdfetex 2017.7.5) 19 MAR 2018 09:43
2 entering extended mode
3 restricted \write18 enabled.
4 file:line:error style messages enabled.
@@ -362,7 +362,7 @@ gnored[]
362
363 [121] [122] [123] [124] [125] [126] [127] [128] [129] [130]
364 [131] [132] [133] [134] [135] [136]
365
-
No equivalent source code line in the reference code can be identified.
-Overfull \hbox (26.43913pt too wide) in paragraph at lines 2290--2290
365
-
+Overfull \hbox (26.43913pt too wide) in paragraph at lines 2292--2292
366 [] @texttt # Tilde expansion, with side effect of expanding tilde to full p
367 athname[]
368
@@ -411,7 +411,7 @@ e/fonts/type1/public/amsfonts/cm/cmtt12.pfb></opt/local/share/texmf-texlive/fon
411 ts/type1/public/amsfonts/cm/cmtt9.pfb></opt/local/share/texmf-texlive/fonts/typ
412 e1/public/cm-super/sfrm1095.pfb></opt/local/share/texmf-texlive/fonts/type1/pub
413 lic/cm-super/sfrm1440.pfb>
414
-
No equivalent source code line in the reference code can be identified.
-Output written on bashref.pdf (182 pages, 747794 bytes).
414
-
+Output written on bashref.pdf (182 pages, 747913 bytes).
415 PDF statistics:
416 2615 PDF objects out of 2984 (max. 8388607)
417 2388 compressed objects within 24 object streams

Modified File: doc/bashref.ps

LineTestsDifference Output
diff --git a/doc/bashref.pdf b/doc/bashref.pdf
index 429166f7..9686b72e 100644
Binary files a/doc/bashref.pdf and b/doc/bashref.pdf differ
diff --git a/doc/bashref.ps b/doc/bashref.ps
index 79a25485..7b2de8ce 100644
--- a/doc/bashref.ps
+++ b/doc/bashref.ps
@@ -1,7 +1,7 @@
1 %!PS-Adobe-2.0
2 %%Creator: dvips(k) 5.997 Copyright 2017 Radical Eye Software
3 %%Title: bashref.dvi
4
-
No equivalent source code line in the reference code can be identified.
-%%CreationDate: Thu Mar 15 18:13:40 2018
4
-
+%%CreationDate: Mon Mar 19 13:43:29 2018
5 %%Pages: 182
6 %%PageOrder: Ascend
7 %%BoundingBox: 0 0 612 792
@@ -12,7 +12,7 @@
12 %DVIPSWebPage: (www.radicaleye.com)
13 %DVIPSCommandLine: dvips -D 600 -t letter -o bashref.ps bashref.dvi
14 %DVIPSParameters: dpi=600
15
-
No equivalent source code line in the reference code can be identified.
-%DVIPSSource: TeX output 2018.03.15:1413
15
-
+%DVIPSSource: TeX output 2018.03.19:0943
16 %%BeginProcSet: tex.pro 0 0
17 %!
18 /TeXDict 300 dict def TeXDict begin/N{def}def/B{bind def}N/S{exch}N/X{S
@@ -17485,183 +17485,185 @@ g(argumen)m(t)h(to)g(the)f Ft(-W)f Fu(option)i(is)f(considered.)60
17485 b(The)37 b(string)150 4113 y(is)c(\014rst)e(split)i(using)f(the)h(c)m
17486 (haracters)h(in)e(the)h Ft(IFS)e Fu(sp)s(ecial)j(v)-5
17487 b(ariable)33 b(as)g(delimiters.)48 b(Shell)32 b(quoting)h(is)150
17488
-
No equivalent source code line in the reference code can be identified.
-4222 y(honored.)56 b(Eac)m(h)37 b(w)m(ord)e(is)h(then)f(expanded)g
17489
-
No equivalent source code line in the reference code can be identified.
-(using)h(brace)g(expansion,)h(tilde)f(expansion,)h(parameter)150
17490
-
No equivalent source code line in the reference code can be identified.
-4332 y(and)44 b(v)-5 b(ariable)46 b(expansion,)j(command)44
17491
-
No equivalent source code line in the reference code can be identified.
-b(substitution,)49 b(and)44 b(arithmetic)i(expansion,)j(as)c(describ)s
17492
-
No equivalent source code line in the reference code can be identified.
-(ed)150 4441 y(ab)s(o)m(v)m(e)38 b(\(see)f(Section)h(3.5)g([Shell)e
17493
-
No equivalent source code line in the reference code can be identified.
-(Expansions],)i(page)f(22\).)61 b(The)36 b(results)h(are)g(split)f
17494
-
No equivalent source code line in the reference code can be identified.
-(using)h(the)f(rules)150 4551 y(describ)s(ed)29 b(ab)s(o)m(v)m(e)i
17495
-
No equivalent source code line in the reference code can be identified.
-(\(see)f(Section)h(3.5.7)h([W)-8 b(ord)30 b(Splitting],)h(page)f(31\).)
17496
-
No equivalent source code line in the reference code can be identified.
-42 b(The)30 b(results)f(of)h(the)g(expansion)150 4660
17497
-
No equivalent source code line in the reference code can be identified.
-y(are)f(pre\014x-matc)m(hed)h(against)g(the)f(w)m(ord)g(b)s(eing)f
17498
-
No equivalent source code line in the reference code can be identified.
-(completed,)j(and)d(the)i(matc)m(hing)g(w)m(ords)e(b)s(ecome)i(the)150
17499
-
No equivalent source code line in the reference code can be identified.
-4770 y(p)s(ossible)g(completions.)275 4902 y(After)f(these)g(matc)m
17500
-
No equivalent source code line in the reference code can be identified.
-(hes)i(ha)m(v)m(e)f(b)s(een)f(generated,)h(an)m(y)g(shell)f(function)g
17501
-
No equivalent source code line in the reference code can be identified.
-(or)g(command)g(sp)s(eci\014ed)f(with)150 5011 y(the)36
17502
-
No equivalent source code line in the reference code can be identified.
-b Ft(-F)f Fu(and)g Ft(-C)g Fu(options)h(is)g(in)m(v)m(ok)m(ed.)59
17503
-
No equivalent source code line in the reference code can be identified.
-b(When)35 b(the)h(command)g(or)f(function)h(is)g(in)m(v)m(ok)m(ed,)i
17504
-
No equivalent source code line in the reference code can be identified.
-(the)e Ft(COMP_)150 5121 y(LINE)p Fu(,)42 b Ft(COMP_POINT)p
17488
-
+4222 y(honored)f(within)h(the)g(string,)h(in)f(order)f(to)i(pro)m(vide)
17489
-
+f(a)h(mec)m(hanism)f(for)g(the)g(w)m(ords)g(to)g(con)m(tain)i(shell)150
17490
-
+4332 y(metac)m(haracters)e(or)e(c)m(haracters)i(in)e(the)g(v)-5
17491
-
+b(alue)31 b(of)g Ft(IFS)p Fu(.)42 b(Eac)m(h)32 b(w)m(ord)e(is)h(then)g
17492
-
+(expanded)f(using)h(brace)150 4441 y(expansion,)g(tilde)h(expansion,)f
17493
-
+(parameter)g(and)g(v)-5 b(ariable)32 b(expansion,)f(command)f
17494
-
+(substitution,)i(and)150 4551 y(arithmetic)c(expansion,)f(as)g(describ)
17495
-
+s(ed)e(ab)s(o)m(v)m(e)i(\(see)h(Section)f(3.5)g([Shell)g(Expansions],)g
17496
-
+(page)g(22\).)40 b(The)150 4660 y(results)23 b(are)h(split)g(using)f
17497
-
+(the)h(rules)f(describ)s(ed)f(ab)s(o)m(v)m(e)j(\(see)g(Section)f(3.5.7)
17498
-
+h([W)-8 b(ord)24 b(Splitting],)i(page)e(31\).)150 4770
17499
-
+y(The)j(results)h(of)f(the)h(expansion)g(are)g(pre\014x-matc)m(hed)g
17500
-
+(against)h(the)f(w)m(ord)f(b)s(eing)g(completed,)j(and)d(the)150
17501
-
+4880 y(matc)m(hing)k(w)m(ords)f(b)s(ecome)h(the)g(p)s(ossible)f
17502
-
+(completions.)275 5011 y(After)f(these)g(matc)m(hes)i(ha)m(v)m(e)f(b)s
17503
-
+(een)f(generated,)h(an)m(y)g(shell)f(function)g(or)g(command)g(sp)s
17504
-
+(eci\014ed)f(with)150 5121 y(the)36 b Ft(-F)f Fu(and)g
17505
-
+Ft(-C)g Fu(options)h(is)g(in)m(v)m(ok)m(ed.)59 b(When)35
17506
-
+b(the)h(command)g(or)f(function)h(is)g(in)m(v)m(ok)m(ed,)i(the)e
17507
-
+Ft(COMP_)150 5230 y(LINE)p Fu(,)42 b Ft(COMP_POINT)p
17505 ➡ 17508 Fu(,)d Ft(COMP_KEY)p Fu(,)i(and)e Ft(COMP_TYPE)f Fu(v)-5
17506 ➡ 17509 b(ariables)41 b(are)f(assigned)g(v)-5 b(alues)41 b(as)f(describ)s(ed)
17507
-
No equivalent source code line in the reference code can be identified.
-150 5230 y(ab)s(o)m(v)m(e)34 b(\(see)g(Section)g(5.2)g([Bash)f(V)-8
17510
-
+150 5340 y(ab)s(o)m(v)m(e)34 b(\(see)g(Section)g(5.2)g([Bash)f(V)-8
17508 ➡ 17511 b(ariables],)36 b(page)d(72\).)50 b(If)33 b(a)g(shell)g(function)g(is)g
17509
-
No equivalent source code line in the reference code can be identified.
-(b)s(eing)f(in)m(v)m(ok)m(ed,)k(the)150 5340 y Ft(COMP_WORDS)j
17510
-
No equivalent source code line in the reference code can be identified.
-Fu(and)i Ft(COMP_CWORD)d Fu(v)-5 b(ariables)42 b(are)g(also)h(set.)74
17511
-
No equivalent source code line in the reference code can be identified.
-b(When)41 b(the)h(function)f(or)h(command)f(is)p eop
17512
-
No equivalent source code line in the reference code can be identified.
-end
17512
-
+(b)s(eing)f(in)m(v)m(ok)m(ed,)k(the)p eop end
17513 %%Page: 132 138
17514 TeXDict begin 132 137 bop 150 -116 a Fu(Chapter)30 b(8:)41
17515
-
No equivalent source code line in the reference code can be identified.
-b(Command)29 b(Line)i(Editing)2062 b(132)150 299 y(in)m(v)m(ok)m(ed,)37
17516
-
No equivalent source code line in the reference code can be identified.
-b(the)e(\014rst)f(argumen)m(t)h(\($1\))h(is)e(the)h(name)g(of)f(the)h
17517
-
No equivalent source code line in the reference code can be identified.
-(command)f(whose)h(argumen)m(ts)f(are)h(b)s(eing)150
17518
-
No equivalent source code line in the reference code can be identified.
-408 y(completed,)30 b(the)f(second)f(argumen)m(t)h(\($2\))h(is)f(the)g
17515
-
+b(Command)29 b(Line)i(Editing)2062 b(132)150 299 y Ft(COMP_WORDS)39
17516
-
+b Fu(and)i Ft(COMP_CWORD)d Fu(v)-5 b(ariables)42 b(are)g(also)h(set.)74
17517
-
+b(When)41 b(the)h(function)f(or)h(command)f(is)150 408
17518
-
+y(in)m(v)m(ok)m(ed,)c(the)e(\014rst)f(argumen)m(t)h(\($1\))h(is)e(the)h
17519
-
+(name)g(of)f(the)h(command)f(whose)h(argumen)m(ts)f(are)h(b)s(eing)150
17520
-
+518 y(completed,)30 b(the)f(second)f(argumen)m(t)h(\($2\))h(is)f(the)g
17519 ➡ 17521 (w)m(ord)f(b)s(eing)g(completed,)i(and)e(the)h(third)e(argumen)m(t)150
17520
-
No equivalent source code line in the reference code can be identified.
-518 y(\($3\))40 b(is)f(the)f(w)m(ord)h(preceding)f(the)h(w)m(ord)f(b)s
17522
-
+628 y(\($3\))40 b(is)f(the)f(w)m(ord)h(preceding)f(the)h(w)m(ord)f(b)s
17521 ➡ 17523 (eing)g(completed)i(on)e(the)h(curren)m(t)f(command)h(line.)65
17522
-
No equivalent source code line in the reference code can be identified.
-b(No)150 628 y(\014ltering)33 b(of)h(the)f(generated)h(completions)g
17524
-
+b(No)150 737 y(\014ltering)33 b(of)h(the)f(generated)h(completions)g
17523 ➡ 17525 (against)h(the)e(w)m(ord)g(b)s(eing)f(completed)i(is)g(p)s(erformed;)f
17524
-
No equivalent source code line in the reference code can be identified.
-(the)150 737 y(function)d(or)g(command)h(has)f(complete)i(freedom)e(in)
17525
-
No equivalent source code line in the reference code can be identified.
-g(generating)h(the)g(matc)m(hes.)275 871 y(An)m(y)j(function)h(sp)s
17526
-
+(the)150 847 y(function)d(or)g(command)h(has)f(complete)i(freedom)e(in)
17527
-
+g(generating)h(the)g(matc)m(hes.)275 981 y(An)m(y)j(function)h(sp)s
17526 ➡ 17528 (eci\014ed)f(with)g Ft(-F)g Fu(is)h(in)m(v)m(ok)m(ed)h(\014rst.)53
17527 ➡ 17529 b(The)35 b(function)f(ma)m(y)h(use)g(an)m(y)g(of)g(the)g(shell)150
17528
-
No equivalent source code line in the reference code can be identified.
-981 y(facilities,)50 b(including)44 b(the)h Ft(compgen)d
17530
-
+1090 y(facilities,)50 b(including)44 b(the)h Ft(compgen)d
17529 ➡ 17531 Fu(and)i Ft(compopt)e Fu(builtins)i(describ)s(ed)f(b)s(elo)m(w)h(\(see)
17530
-
No equivalent source code line in the reference code can be identified.
-i(Section)f(8.7)150 1090 y([Programmable)31 b(Completion)h(Builtins],)f
17532
-
+i(Section)f(8.7)150 1200 y([Programmable)31 b(Completion)h(Builtins],)f
17531 ➡ 17533 (page)h(133\),)g(to)g(generate)g(the)f(matc)m(hes.)42
17532
-
No equivalent source code line in the reference code can be identified.
-b(It)31 b(m)m(ust)g(put)f(the)150 1200 y(p)s(ossible)g(completions)h
17534
-
+b(It)31 b(m)m(ust)g(put)f(the)150 1310 y(p)s(ossible)g(completions)h
17533 ➡ 17535 (in)f(the)h Ft(COMPREPLY)d Fu(arra)m(y)j(v)-5 b(ariable,)31
17534
-
No equivalent source code line in the reference code can be identified.
-b(one)g(p)s(er)e(arra)m(y)i(elemen)m(t.)275 1334 y(Next,)26
17536
-
+b(one)g(p)s(er)e(arra)m(y)i(elemen)m(t.)275 1443 y(Next,)26
17535 ➡ 17537 b(an)m(y)f(command)f(sp)s(eci\014ed)g(with)g(the)h Ft(-C)f
17536 ➡ 17538 Fu(option)h(is)f(in)m(v)m(ok)m(ed)i(in)e(an)g(en)m(vironmen)m(t)h
17537
-
No equivalent source code line in the reference code can be identified.
-(equiv)-5 b(alen)m(t)150 1443 y(to)26 b(command)e(substitution.)39
17539
-
+(equiv)-5 b(alen)m(t)150 1553 y(to)26 b(command)e(substitution.)39
17538 ➡ 17540 b(It)25 b(should)f(prin)m(t)h(a)g(list)h(of)f(completions,)i(one)e(p)s
17539
-
No equivalent source code line in the reference code can be identified.
-(er)f(line,)j(to)f(the)f(standard)150 1553 y(output.)40
17541
-
+(er)f(line,)j(to)f(the)f(standard)150 1663 y(output.)40
17540 ➡ 17542 b(Bac)m(kslash)32 b(ma)m(y)f(b)s(e)f(used)g(to)h(escap)s(e)g(a)f
17541
-
No equivalent source code line in the reference code can be identified.
-(newline,)h(if)f(necessary)-8 b(.)275 1687 y(After)24
17543
-
+(newline,)h(if)f(necessary)-8 b(.)275 1797 y(After)24
17542 ➡ 17544 b(all)i(of)f(the)f(p)s(ossible)g(completions)i(are)f(generated,)i(an)m
17543 ➡ 17545 (y)e(\014lter)g(sp)s(eci\014ed)e(with)i(the)g Ft(-X)e
17544
-
No equivalent source code line in the reference code can be identified.
-Fu(option)150 1797 y(is)34 b(applied)g(to)g(the)h(list.)52
17546
-
+Fu(option)150 1906 y(is)34 b(applied)g(to)g(the)h(list.)52
17545 ➡ 17547 b(The)33 b(\014lter)h(is)g(a)h(pattern)f(as)g(used)f(for)h(pathname)g
17546
-
No equivalent source code line in the reference code can be identified.
-(expansion;)i(a)e(`)p Ft(&)p Fu(')g(in)g(the)150 1906
17548
-
+(expansion;)i(a)e(`)p Ft(&)p Fu(')g(in)g(the)150 2016
17547 ➡ 17549 y(pattern)28 b(is)f(replaced)h(with)g(the)f(text)i(of)f(the)f(w)m(ord)h
17548 ➡ 17550 (b)s(eing)f(completed.)40 b(A)28 b(literal)h(`)p Ft(&)p
17549
-
No equivalent source code line in the reference code can be identified.
-Fu(')f(ma)m(y)g(b)s(e)f(escap)s(ed)150 2016 y(with)38
17551
-
+Fu(')f(ma)m(y)g(b)s(e)f(escap)s(ed)150 2125 y(with)38
17550 ➡ 17552 b(a)h(bac)m(kslash;)k(the)38 b(bac)m(kslash)h(is)g(remo)m(v)m(ed)g(b)s
17551 ➡ 17553 (efore)f(attempting)h(a)g(matc)m(h.)65 b(An)m(y)39 b(completion)150
17552
-
No equivalent source code line in the reference code can be identified.
-2125 y(that)32 b(matc)m(hes)g(the)g(pattern)g(will)f(b)s(e)g(remo)m(v)m
17554
-
+2235 y(that)32 b(matc)m(hes)g(the)g(pattern)g(will)f(b)s(e)g(remo)m(v)m
17553 ➡ 17555 (ed)h(from)f(the)h(list.)44 b(A)32 b(leading)g(`)p Ft(!)p
17554
-
No equivalent source code line in the reference code can be identified.
-Fu(')f(negates)i(the)f(pattern;)150 2235 y(in)d(this)g(case)h(an)m(y)g
17556
-
+Fu(')f(negates)i(the)f(pattern;)150 2345 y(in)d(this)g(case)h(an)m(y)g
17555 ➡ 17557 (completion)h(not)e(matc)m(hing)h(the)g(pattern)f(will)h(b)s(e)e(remo)m
17556
-
No equivalent source code line in the reference code can be identified.
-(v)m(ed.)42 b(If)29 b(the)g Ft(nocasematch)150 2345 y
17558
-
+(v)m(ed.)42 b(If)29 b(the)g Ft(nocasematch)150 2454 y
17557 ➡ 17559 Fu(shell)k(option)f(\(see)i(the)e(description)g(of)h
17558 ➡ 17560 Ft(shopt)e Fu(in)h(Section)h(4.3.2)h([The)e(Shopt)g(Builtin],)h(page)g
17559
-
No equivalent source code line in the reference code can be identified.
-(65\))h(is)150 2454 y(enabled,)d(the)f(matc)m(h)h(is)g(p)s(erformed)e
17561
-
+(65\))h(is)150 2564 y(enabled,)d(the)f(matc)m(h)h(is)g(p)s(erformed)e
17560 ➡ 17562 (without)h(regard)g(to)h(the)g(case)g(of)g(alphab)s(etic)g(c)m
17561
-
No equivalent source code line in the reference code can be identified.
-(haracters.)275 2588 y(Finally)-8 b(,)42 b(an)m(y)c(pre\014x)g(and)f
17563
-
+(haracters.)275 2698 y(Finally)-8 b(,)42 b(an)m(y)c(pre\014x)g(and)f
17562 ➡ 17564 (su\016x)h(sp)s(eci\014ed)f(with)i(the)f Ft(-P)g Fu(and)g
17563
-
No equivalent source code line in the reference code can be identified.
-Ft(-S)f Fu(options)i(are)g(added)f(to)h(eac)m(h)150 2698
17565
-
+Ft(-S)f Fu(options)i(are)g(added)f(to)h(eac)m(h)150 2807
17564 ➡ 17566 y(mem)m(b)s(er)31 b(of)g(the)h(completion)h(list,)f(and)f(the)h(result)
17565 ➡ 17567 f(is)h(returned)e(to)i(the)g(Readline)g(completion)h(co)s(de)150
17566
-
No equivalent source code line in the reference code can be identified.
-2807 y(as)e(the)f(list)h(of)g(p)s(ossible)f(completions.)275
17567
-
No equivalent source code line in the reference code can be identified.
-2941 y(If)d(the)h(previously-applied)f(actions)i(do)f(not)g(generate)h
17568
-
+2917 y(as)e(the)f(list)h(of)g(p)s(ossible)f(completions.)275
17569
-
+3051 y(If)d(the)h(previously-applied)f(actions)i(do)f(not)g(generate)h
17568 ➡ 17570 (an)m(y)f(matc)m(hes,)i(and)d(the)h Ft(-o)h(dirnames)d
17569
-
No equivalent source code line in the reference code can be identified.
-Fu(op-)150 3051 y(tion)j(w)m(as)f(supplied)f(to)i Ft(complete)d
17571
-
+Fu(op-)150 3160 y(tion)j(w)m(as)f(supplied)f(to)i Ft(complete)d
17570 ➡ 17572 Fu(when)h(the)h(compsp)s(ec)g(w)m(as)g(de\014ned,)g(directory)g(name)h
17571
-
No equivalent source code line in the reference code can be identified.
-(completion)150 3160 y(is)h(attempted.)275 3294 y(If)35
17573
-
+(completion)150 3270 y(is)h(attempted.)275 3404 y(If)35
17572 ➡ 17574 b(the)g Ft(-o)30 b(plusdirs)j Fu(option)j(w)m(as)g(supplied)e(to)i
17573 ➡ 17575 Ft(complete)e Fu(when)g(the)i(compsp)s(ec)f(w)m(as)h(de\014ned,)150
17574
-
No equivalent source code line in the reference code can be identified.
-3404 y(directory)g(name)f(completion)i(is)e(attempted)h(and)f(an)m(y)h
17576
-
+3513 y(directory)g(name)f(completion)i(is)e(attempted)h(and)f(an)m(y)h
17575 ➡ 17577 (matc)m(hes)g(are)g(added)f(to)h(the)f(results)g(of)h(the)150
17576
-
No equivalent source code line in the reference code can be identified.
-3513 y(other)31 b(actions.)275 3647 y(By)g(default,)i(if)e(a)h(compsp)s
17578
-
+3623 y(other)31 b(actions.)275 3757 y(By)g(default,)i(if)e(a)h(compsp)s
17577 ➡ 17579 (ec)f(is)h(found,)f(whatev)m(er)h(it)g(generates)h(is)e(returned)g(to)h
17578
-
No equivalent source code line in the reference code can be identified.
-(the)g(completion)150 3757 y(co)s(de)21 b(as)g(the)g(full)g(set)g(of)g
17580
-
+(the)g(completion)150 3867 y(co)s(de)21 b(as)g(the)g(full)g(set)g(of)g
17579 ➡ 17581 (p)s(ossible)f(completions.)39 b(The)20 b(default)h(Bash)g(completions)
17580
-
No equivalent source code line in the reference code can be identified.
-h(are)g(not)f(attempted,)150 3867 y(and)30 b(the)g(Readline)h(default)f
17582
-
+h(are)g(not)f(attempted,)150 3976 y(and)30 b(the)g(Readline)h(default)f
17581 ➡ 17583 (of)g(\014lename)h(completion)g(is)f(disabled.)41 b(If)29
17582
-
No equivalent source code line in the reference code can be identified.
-b(the)i Ft(-o)e(bashdefault)e Fu(option)150 3976 y(w)m(as)d(supplied)e
17584
-
+b(the)i Ft(-o)e(bashdefault)e Fu(option)150 4086 y(w)m(as)d(supplied)e
17583 ➡ 17585 (to)j Ft(complete)c Fu(when)i(the)g(compsp)s(ec)h(w)m(as)g(de\014ned,)g
17584
-
No equivalent source code line in the reference code can be identified.
-(the)f(default)h(Bash)g(completions)h(are)150 4086 y(attempted)j(if)f
17586
-
+(the)f(default)h(Bash)g(completions)h(are)150 4195 y(attempted)j(if)f
17585 ➡ 17587 (the)h(compsp)s(ec)f(generates)h(no)f(matc)m(hes.)41
17586 ➡ 17588 b(If)27 b(the)g Ft(-o)j(default)25 b Fu(option)j(w)m(as)f(supplied)f
17587
-
No equivalent source code line in the reference code can be identified.
-(to)150 4195 y Ft(complete)f Fu(when)h(the)h(compsp)s(ec)f(w)m(as)i
17589
-
+(to)150 4305 y Ft(complete)f Fu(when)h(the)h(compsp)s(ec)f(w)m(as)i
17588 ➡ 17590 (de\014ned,)e(Readline's)i(default)f(completion)h(will)f(b)s(e)f(p)s
17589
-
No equivalent source code line in the reference code can be identified.
-(erformed)150 4305 y(if)k(the)h(compsp)s(ec)f(\(and,)g(if)h(attempted,)
17591
-
+(erformed)150 4415 y(if)k(the)h(compsp)s(ec)f(\(and,)g(if)h(attempted,)
17590 ➡ 17592 g(the)g(default)f(Bash)h(completions\))h(generate)g(no)e(matc)m(hes.)
17591
-
No equivalent source code line in the reference code can be identified.
-275 4439 y(When)20 b(a)i(compsp)s(ec)e(indicates)i(that)g(directory)g
17593
-
+275 4548 y(When)20 b(a)i(compsp)s(ec)e(indicates)i(that)g(directory)g
17592 ➡ 17594 (name)f(completion)h(is)f(desired,)i(the)e(programmable)150
17593
-
No equivalent source code line in the reference code can be identified.
-4548 y(completion)31 b(functions)e(force)i(Readline)f(to)h(app)s(end)d
17595
-
+4658 y(completion)31 b(functions)e(force)i(Readline)f(to)h(app)s(end)d
17594 ➡ 17596 (a)i(slash)g(to)g(completed)h(names)e(whic)m(h)h(are)g(sym-)150
17595
-
No equivalent source code line in the reference code can be identified.
-4658 y(b)s(olic)40 b(links)g(to)h(directories,)j(sub)5
17597
-
+4768 y(b)s(olic)40 b(links)g(to)h(directories,)j(sub)5
17596 ➡ 17598 b(ject)40 b(to)h(the)f(v)-5 b(alue)41 b(of)f(the)g Fr(mark-directories)
17597
-
No equivalent source code line in the reference code can be identified.
-45 b Fu(Readline)c(v)-5 b(ariable,)150 4768 y(regardless)31
17599
-
+45 b Fu(Readline)c(v)-5 b(ariable,)150 4877 y(regardless)31
17598 ➡ 17600 b(of)f(the)h(setting)g(of)g(the)f Fr(mark-symlink)m(ed-directories)36
17599
-
No equivalent source code line in the reference code can be identified.
-b Fu(Readline)31 b(v)-5 b(ariable.)275 4902 y(There)25
17601
-
+b Fu(Readline)31 b(v)-5 b(ariable.)275 5011 y(There)25
17600 ➡ 17602 b(is)i(some)g(supp)s(ort)e(for)h(dynamically)h(mo)s(difying)f
17601 ➡ 17603 (completions.)40 b(This)26 b(is)g(most)h(useful)f(when)150
17602
-
No equivalent source code line in the reference code can be identified.
-5011 y(used)40 b(in)h(com)m(bination)i(with)e(a)g(default)h(completion)
17604
-
+5121 y(used)40 b(in)h(com)m(bination)i(with)e(a)g(default)h(completion)
17603 ➡ 17605 g(sp)s(eci\014ed)f(with)g Ft(-D)p Fu(.)72 b(It's)42 b(p)s(ossible)f
17604
-
No equivalent source code line in the reference code can be identified.
-(for)g(shell)150 5121 y(functions)28 b(executed)h(as)f(completion)i
17606
-
+(for)g(shell)150 5230 y(functions)28 b(executed)h(as)f(completion)i
17605 ➡ 17607 (handlers)d(to)i(indicate)g(that)g(completion)g(should)e(b)s(e)h
17606
-
No equivalent source code line in the reference code can be identified.
-(retried)g(b)m(y)150 5230 y(returning)j(an)i(exit)g(status)f(of)h(124.)
17608
-
+(retried)g(b)m(y)150 5340 y(returning)j(an)i(exit)g(status)f(of)h(124.)
17607 ➡ 17609 48 b(If)31 b(a)i(shell)f(function)g(returns)f(124,)k(and)c(c)m(hanges)j
17608
-
No equivalent source code line in the reference code can be identified.
-(the)e(compsp)s(ec)150 5340 y(asso)s(ciated)43 b(with)e(the)g(command)g
17609
-
No equivalent source code line in the reference code can be identified.
-(on)g(whic)m(h)g(completion)i(is)e(b)s(eing)g(attempted)h(\(supplied)e
17610
-
No equivalent source code line in the reference code can be identified.
-(as)i(the)p eop end
17610
-
+(the)e(compsp)s(ec)p eop end
17611 %%Page: 133 139
17612 TeXDict begin 133 138 bop 150 -116 a Fu(Chapter)30 b(8:)41
17613
-
No equivalent source code line in the reference code can be identified.
-b(Command)29 b(Line)i(Editing)2062 b(133)150 299 y(\014rst)29
17613
-
+b(Command)29 b(Line)i(Editing)2062 b(133)150 299 y(asso)s(ciated)43
17614
-
+b(with)e(the)g(command)g(on)g(whic)m(h)g(completion)i(is)e(b)s(eing)g
17615
-
+(attempted)h(\(supplied)e(as)i(the)150 408 y(\014rst)29
17614 ➡ 17616 b(argumen)m(t)h(when)e(the)i(function)f(is)g(executed\),)j
17615 ➡ 17617 (programmable)d(completion)i(restarts)f(from)f(the)150
17616
-
No equivalent source code line in the reference code can be identified.
-408 y(b)s(eginning,)e(with)g(an)h(attempt)g(to)g(\014nd)e(a)i(new)e
17618
-
+518 y(b)s(eginning,)e(with)g(an)h(attempt)g(to)g(\014nd)e(a)i(new)e
17617 ➡ 17619 (compsp)s(ec)i(for)f(that)h(command.)39 b(This)27 b(allo)m(ws)h(a)g
17618
-
No equivalent source code line in the reference code can be identified.
-(set)g(of)150 518 y(completions)33 b(to)f(b)s(e)g(built)f(dynamically)i
17620
-
+(set)g(of)150 628 y(completions)33 b(to)f(b)s(e)g(built)f(dynamically)i
17619 ➡ 17621 (as)f(completion)h(is)f(attempted,)h(rather)f(than)f(b)s(eing)g(loaded)
17620
-
No equivalent source code line in the reference code can be identified.
-150 628 y(all)g(at)g(once.)275 770 y(F)-8 b(or)38 b(instance,)h
17622
-
+150 737 y(all)g(at)g(once.)275 869 y(F)-8 b(or)38 b(instance,)h
17621 ➡ 17623 (assuming)e(that)h(there)f(is)h(a)f(library)g(of)g(compsp)s(ecs,)i(eac)
17622
-
No equivalent source code line in the reference code can be identified.
-m(h)g(k)m(ept)e(in)g(a)h(\014le)f(corre-)150 879 y(sp)s(onding)g(to)j
17624
-
+m(h)g(k)m(ept)e(in)g(a)h(\014le)f(corre-)150 978 y(sp)s(onding)g(to)j
17623 ➡ 17625 (the)f(name)f(of)h(the)g(command,)i(the)e(follo)m(wing)h(default)f
17624
-
No equivalent source code line in the reference code can be identified.
-(completion)h(function)e(w)m(ould)150 989 y(load)31 b(completions)g
17625
-
No equivalent source code line in the reference code can be identified.
-(dynamically:)390 1131 y Ft(_completion_loader\(\))390
17626
-
No equivalent source code line in the reference code can be identified.
-1241 y({)581 1350 y(.)47 b("/etc/bash_completion.d/$1)o(.sh)o(")42
17627
-
No equivalent source code line in the reference code can be identified.
-b(>/dev/null)j(2>&1)i(&&)g(return)f(124)390 1460 y(})390
17628
-
No equivalent source code line in the reference code can be identified.
-1569 y(complete)g(-D)h(-F)g(_completion_loader)c(-o)k(bashdefault)e(-o)
17629
-
No equivalent source code line in the reference code can be identified.
-i(default)150 1821 y Fs(8.7)68 b(Programmable)47 b(Completion)f
17630
-
No equivalent source code line in the reference code can be identified.
-(Builtins)150 1981 y Fu(Three)21 b(builtin)g(commands)f(are)i(a)m(v)-5
17626
-
+(completion)h(function)e(w)m(ould)150 1088 y(load)31
17627
-
+b(completions)g(dynamically:)390 1219 y Ft(_completion_loader\(\))390
17628
-
+1329 y({)581 1439 y(.)47 b("/etc/bash_completion.d/$1)o(.sh)o(")42
17629
-
+b(>/dev/null)j(2>&1)i(&&)g(return)f(124)390 1548 y(})390
17630
-
+1658 y(complete)g(-D)h(-F)g(_completion_loader)c(-o)k(bashdefault)e(-o)
17631
-
+i(default)150 1893 y Fs(8.7)68 b(Programmable)47 b(Completion)f
17632
-
+(Builtins)150 2052 y Fu(Three)21 b(builtin)g(commands)f(are)i(a)m(v)-5
17631 ➡ 17633 b(ailable)24 b(to)e(manipulate)f(the)h(programmable)f(completion)h
17632
-
No equivalent source code line in the reference code can be identified.
-(facilities:)150 2090 y(one)34 b(to)g(sp)s(ecify)f(ho)m(w)h(the)f
17634
-
+(facilities:)150 2162 y(one)34 b(to)g(sp)s(ecify)f(ho)m(w)h(the)f
17633 ➡ 17635 (argumen)m(ts)h(to)g(a)g(particular)g(command)f(are)h(to)g(b)s(e)f
17634
-
No equivalent source code line in the reference code can be identified.
-(completed,)j(and)d(t)m(w)m(o)150 2200 y(to)e(mo)s(dify)f(the)g
17635
-
No equivalent source code line in the reference code can be identified.
-(completion)i(as)e(it)h(is)g(happ)s(ening.)150 2371 y
17636
-
No equivalent source code line in the reference code can be identified.
-Ft(compgen)870 2509 y(compgen)46 b([)p Fj(option)p Ft(])f([)p
17637
-
No equivalent source code line in the reference code can be identified.
-Fj(word)p Ft(])630 2647 y Fu(Generate)27 b(p)s(ossible)e(completion)i
17636
-
+(completed,)j(and)d(t)m(w)m(o)150 2271 y(to)e(mo)s(dify)f(the)g
17637
-
+(completion)i(as)e(it)h(is)g(happ)s(ening.)150 2425 y
17638
-
+Ft(compgen)870 2556 y(compgen)46 b([)p Fj(option)p Ft(])f([)p
17639
-
+Fj(word)p Ft(])630 2688 y Fu(Generate)27 b(p)s(ossible)e(completion)i
17638 ➡ 17640 (matc)m(hes)g(for)e Fr(w)m(ord)k Fu(according)e(to)f(the)g
17639
-
No equivalent source code line in the reference code can be identified.
-Fr(option)p Fu(s,)h(whic)m(h)630 2757 y(ma)m(y)32 b(b)s(e)f(an)m(y)h
17641
-
+Fr(option)p Fu(s,)h(whic)m(h)630 2797 y(ma)m(y)32 b(b)s(e)f(an)m(y)h
17640 ➡ 17642 (option)g(accepted)g(b)m(y)g(the)f Ft(complete)f Fu(builtin)h(with)g
17641
-
No equivalent source code line in the reference code can be identified.
-(the)g(exception)i(of)f Ft(-p)630 2866 y Fu(and)39 b
17643
-
+(the)g(exception)i(of)f Ft(-p)630 2907 y Fu(and)39 b
17642 ➡ 17644 Ft(-r)p Fu(,)i(and)e(write)h(the)g(matc)m(hes)g(to)g(the)g(standard)f
17643
-
No equivalent source code line in the reference code can be identified.
-(output.)68 b(When)39 b(using)g(the)h Ft(-F)630 2976
17645
-
+(output.)68 b(When)39 b(using)g(the)h Ft(-F)630 3017
17644 ➡ 17646 y Fu(or)33 b Ft(-C)f Fu(options,)i(the)e(v)-5 b(arious)33
17645 ➡ 17647 b(shell)g(v)-5 b(ariables)33 b(set)g(b)m(y)g(the)g(programmable)g
17646
-
No equivalent source code line in the reference code can be identified.
-(completion)630 3086 y(facilities,)g(while)d(a)m(v)-5
17648
-
+(completion)630 3126 y(facilities,)g(while)d(a)m(v)-5
17647 ➡ 17649 b(ailable,)33 b(will)e(not)g(ha)m(v)m(e)g(useful)f(v)-5
17648
-
No equivalent source code line in the reference code can be identified.
-b(alues.)630 3224 y(The)34 b(matc)m(hes)h(will)g(b)s(e)f(generated)h
17650
-
+b(alues.)630 3258 y(The)34 b(matc)m(hes)h(will)g(b)s(e)f(generated)h
17649 ➡ 17651 (in)f(the)h(same)g(w)m(a)m(y)g(as)g(if)f(the)h(programmable)f(com-)630
17650
-
No equivalent source code line in the reference code can be identified.
-3334 y(pletion)d(co)s(de)g(had)f(generated)i(them)e(directly)i(from)e
17651
-
No equivalent source code line in the reference code can be identified.
-(a)h(completion)h(sp)s(eci\014cation)f(with)630 3443
17652
-
+3367 y(pletion)d(co)s(de)g(had)f(generated)i(them)e(directly)i(from)e
17653
-
+(a)h(completion)h(sp)s(eci\014cation)f(with)630 3477
17652 ➡ 17654 y(the)e(same)h(\015ags.)40 b(If)29 b Fr(w)m(ord)j Fu(is)d(sp)s
17653 ➡ 17655 (eci\014ed,)g(only)g(those)h(completions)g(matc)m(hing)g
17654
-
No equivalent source code line in the reference code can be identified.
-Fr(w)m(ord)j Fu(will)630 3553 y(b)s(e)d(displa)m(y)m(ed.)630
17655
-
No equivalent source code line in the reference code can be identified.
-3691 y(The)24 b(return)g(v)-5 b(alue)25 b(is)g(true)f(unless)g(an)h(in)
17656
-
+Fr(w)m(ord)j Fu(will)630 3586 y(b)s(e)d(displa)m(y)m(ed.)630
17657
-
+3718 y(The)24 b(return)g(v)-5 b(alue)25 b(is)g(true)f(unless)g(an)h(in)
17656 ➡ 17658 m(v)-5 b(alid)25 b(option)g(is)g(supplied,)f(or)h(no)g(matc)m(hes)g(w)m
17657
-
No equivalent source code line in the reference code can be identified.
-(ere)630 3801 y(generated.)150 3968 y Ft(complete)870
17658
-
No equivalent source code line in the reference code can be identified.
-4106 y(complete)46 b([-abcdefgjksuv])d([-o)k Fj(comp-option)p
17659
-
No equivalent source code line in the reference code can be identified.
-Ft(])e([-DE])h([-A)h Fj(action)p Ft(])f([-)870 4215 y(G)h
17660
-
No equivalent source code line in the reference code can be identified.
-Fj(globpat)p Ft(])f([-W)h Fj(wordlist)p Ft(])870 4325
17659
-
+(ere)630 3828 y(generated.)150 3981 y Ft(complete)870
17660
-
+4113 y(complete)46 b([-abcdefgjksuv])d([-o)k Fj(comp-option)p
17661
-
+Ft(])e([-DE])h([-A)h Fj(action)p Ft(])f([-)870 4222 y(G)h
17662
-
+Fj(globpat)p Ft(])f([-W)h Fj(wordlist)p Ft(])870 4332
17661 ➡ 17663 y([-F)g Fj(function)p Ft(])e([-C)i Fj(command)p Ft(])f([-X)h
17662
-
No equivalent source code line in the reference code can be identified.
-Fj(filterpat)p Ft(])870 4435 y([-P)g Fj(prefix)p Ft(])f([-S)h
17664
-
+Fj(filterpat)p Ft(])870 4441 y([-P)g Fj(prefix)p Ft(])f([-S)h
17663 ➡ 17665 Fj(suffix)p Ft(])e Fj(name)i Ft([)p Fj(name)f Ft(...])870
17664
-
No equivalent source code line in the reference code can be identified.
-4544 y(complete)g(-pr)g([-DE])h([)p Fj(name)f Ft(...)o(])630
17666
-
+4551 y(complete)g(-pr)g([-DE])h([)p Fj(name)f Ft(...)o(])630
17665 ➡ 17667 4682 y Fu(Sp)s(ecify)37 b(ho)m(w)h(argumen)m(ts)f(to)i(eac)m(h)g
17666 ➡ 17668 Fr(name)j Fu(should)37 b(b)s(e)g(completed.)63 b(If)38
17667 ➡ 17669 b(the)f Ft(-p)g Fu(option)630 4792 y(is)30 b(supplied,)e(or)i(if)g(no)f

Modified File: doc/builtins.0

LineTestsDifference Output
diff --git a/doc/builtins.0 b/doc/builtins.0
index dbb7e421..4614dc50 100644
--- a/doc/builtins.0
+++ b/doc/builtins.0
@@ -334,9 +334,11 @@ BBAASSHH BBUUIILLTTIINN CCOOMMMMAANNDDSS
334 --WW _w_o_r_d_l_i_s_t
335 The _w_o_r_d_l_i_s_t is split using the characters in the IIFFSS
336 special variable as delimiters, and each resultant word
337
-
No equivalent source code line in the reference code can be identified.
- is expanded. The possible completions are the members
338
-
No equivalent source code line in the reference code can be identified.
- of the resultant list which match the word being com-
339
-
No equivalent source code line in the reference code can be identified.
- pleted.
337
-
+ is expanded. Shell quoting is honored within _w_o_r_d_l_i_s_t,
338
-
+ in order to provide a mechanism for the words to contain
339
-
+ shell metacharacters or characters in the value of IIFFSS.
340
-
+ The possible completions are the members of the resul-
341
-
+ tant list which match the word being completed.
340 ➡ 342 --XX _f_i_l_t_e_r_p_a_t
341 ➡ 343 _f_i_l_t_e_r_p_a_t is a pattern as used for pathname expansion.
342 ➡ 344 It is applied to the list of possible completions gener-

Modified File: doc/builtins.ps

LineTestsDifference Output
diff --git a/doc/builtins.ps b/doc/builtins.ps
index e9a29dd7..df9ff20a 100644
--- a/doc/builtins.ps
+++ b/doc/builtins.ps
@@ -1,6 +1,6 @@
1 %!PS-Adobe-3.0
2 %%Creator: groff version 1.22.3
3
-
No equivalent source code line in the reference code can be identified.
-%%CreationDate: Thu Mar 15 14:13:33 2018
3
-
+%%CreationDate: Mon Mar 19 09:43:23 2018
4 %%DocumentNeededResources: font Times-Roman
5 %%+ font Times-Bold
6 %%+ font Times-Italic
@@ -758,1680 +758,1683 @@ E F0 1.007(is e)3.507 F 1.007(xpanded to generate the possible comple-)
758 E .3 -.15(ve b)-.2 H(een applied.).15 E F1<ad57>144 336 Q F2(wor)2.5 E
759 (dlist)-.37 E F0(The)184 348 Q F2(wor)3.64 E(dlist)-.37 E F0 1.14
760 (is split using the characters in the)3.64 F F3(IFS)3.64 E F0 1.139
761
-
No equivalent source code line in the reference code can be identified.
-(special v)3.39 F 1.139(ariable as delimiters, and)-.25 F 2.007
762
-
No equivalent source code line in the reference code can be identified.
-(each resultant w)184 360 R 2.007(ord is e)-.1 F 4.507(xpanded. The)-.15
763
-
No equivalent source code line in the reference code can be identified.
-F 2.008(possible completions are the members of the)4.507 F
764
-
No equivalent source code line in the reference code can be identified.
-(resultant list which match the w)184 372 Q(ord being completed.)-.1 E
765
-
No equivalent source code line in the reference code can be identified.
-F1<ad58>144 384 Q F2(\214lterpat)2.5 E(\214lterpat)184 396 Q F0 .456
761
-
+(special v)3.39 F 1.139(ariable as delimiters, and)-.25 F .98
762
-
+(each resultant w)184 360 R .98(ord is e)-.1 F 3.481(xpanded. Shell)-.15
763
-
+F .981(quoting is honored within)3.481 F F2(wor)3.481 E(dlist)-.37 E F0
764
-
+3.481(,i)C 3.481(no)-3.481 G .981(rder to)-3.481 F(pro)184 372 Q .766
765
-
+(vide a mechanism for the w)-.15 F .765
766
-
+(ords to contain shell metacharacters or characters in the)-.1 F -.25
767
-
+(va)184 384 S 1.964(lue of).25 F F3(IFS)4.464 E/F4 9/Times-Roman@0 SF(.)
768
-
+A F0 1.964
769
-
+(The possible completions are the members of the resultant list which)
770
-
+6.464 F(match the w)184 396 Q(ord being completed.)-.1 E F1<ad58>144 408
771
-
+Q F2(\214lterpat)2.5 E(\214lterpat)184 420 Q F0 .456
766 ➡ 772 (is a pattern as used for pathname e)2.956 F 2.956(xpansion. It)-.15 F
767 ➡ 773 .455(is applied to the list of possible)2.956 F 1.596
768
-
No equivalent source code line in the reference code can be identified.
-(completions generated by the preceding options and ar)184 408 R 1.596
769
-
No equivalent source code line in the reference code can be identified.
-(guments, and each completion)-.18 F(matching)184 420 Q F2(\214lterpat)
774
-
+(completions generated by the preceding options and ar)184 432 R 1.596
775
-
+(guments, and each completion)-.18 F(matching)184 444 Q F2(\214lterpat)
770 ➡ 776 3.205 E F0 .705(is remo)3.205 F -.15(ve)-.15 G 3.205(df).15 G .704
771 ➡ 777 (rom the list.)-3.205 F 3.204(Al)5.704 G(eading)-3.204 E F1(!)3.204 E F0
772 ➡ 778 (in)3.204 E F2(\214lterpat)3.204 E F0(ne)3.204 E -.05(ga)-.15 G .704
773
-
No equivalent source code line in the reference code can be identified.
-(tes the pattern;).05 F(in this case, an)184 432 Q 2.5(yc)-.15 G
779
-
+(tes the pattern;).05 F(in this case, an)184 456 Q 2.5(yc)-.15 G
774 ➡ 780 (ompletion not matching)-2.5 E F2(\214lterpat)2.5 E F0(is remo)2.5 E
775
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.15 G(d.).15 E .466(The return v)144 448.8 R .466
781
-
+-.15(ve)-.15 G(d.).15 E .466(The return v)144 472.8 R .466
776 ➡ 782 (alue is true unless an in)-.25 F -.25(va)-.4 G .466
777 ➡ 783 (lid option is supplied, an option other than).25 F F1<ad70>2.967 E F0
778 ➡ 784 (or)2.967 E F1<ad72>2.967 E F0 .467(is sup-)2.967 F 1.362
779
-
No equivalent source code line in the reference code can be identified.
-(plied without a)144 460.8 R F2(name)3.862 E F0(ar)3.862 E 1.361
785
-
+(plied without a)144 484.8 R F2(name)3.862 E F0(ar)3.862 E 1.361
780 ➡ 786 (gument, an attempt is made to remo)-.18 F 1.661 -.15(ve a c)-.15 H
781
-
No equivalent source code line in the reference code can be identified.
-1.361(ompletion speci\214cation for a).15 F F2(name)144 472.8 Q F0
787
-
+1.361(ompletion speci\214cation for a).15 F F2(name)144 496.8 Q F0
782 ➡ 788 (for which no speci\214cation e)2.5 E
783 ➡ 789 (xists, or an error occurs adding a completion speci\214cation.)-.15 E
784
-
No equivalent source code line in the reference code can be identified.
-F1(compopt)108 489.6 Q F0([)2.5 E F1<ad6f>A F2(option)2.5 E F0 2.5(][)C
790
-
+F1(compopt)108 513.6 Q F0([)2.5 E F1<ad6f>A F2(option)2.5 E F0 2.5(][)C
785 ➡ 791 F1(\255DE)-2.5 E F0 2.5(][)C F1(+o)-2.5 E F2(option)2.5 E F0 2.5(][)C F2
786
-
No equivalent source code line in the reference code can be identified.
-(name)-2.5 E F0(])A .447(Modify completion options for each)144 501.6 R
792
-
+(name)-2.5 E F0(])A .447(Modify completion options for each)144 525.6 R
787 ➡ 793 F2(name)2.947 E F0 .447(according to the)2.947 F F2(option)2.947 E F0
788 ➡ 794 .447(s, or for the currently-e)B -.15(xe)-.15 G(cuting).15 E .726
789
-
No equivalent source code line in the reference code can be identified.
-(completion if no)144 513.6 R F2(name)3.226 E F0 3.226(sa)C .726
795
-
+(completion if no)144 537.6 R F2(name)3.226 E F0 3.226(sa)C .726
790 ➡ 796 (re supplied.)-3.226 F .725(If no)5.725 F F2(option)3.225 E F0 3.225(sa)
791 ➡ 797 C .725(re gi)-3.225 F -.15(ve)-.25 G .725
792
-
No equivalent source code line in the reference code can be identified.
-(n, display the completion options for).15 F(each)144 525.6 Q F2(name)
798
-
+(n, display the completion options for).15 F(each)144 549.6 Q F2(name)
793 ➡ 799 3.223 E F0 .723(or the current completion.)3.223 F .724(The possible v)
794 ➡ 800 5.724 F .724(alues of)-.25 F F2(option)3.224 E F0 .724(are those v)3.224
795
-
No equivalent source code line in the reference code can be identified.
-F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 537.6 Q F0 -.2(bu)
801
-
+F .724(alid for the)-.25 F F1(com-)3.224 E(plete)144 561.6 Q F0 -.2(bu)
796 ➡ 802 2.798 G .298(iltin described abo).2 F -.15(ve)-.15 G 5.297(.T).15 G(he)
797 ➡ 803 -5.297 E F1<ad44>2.797 E F0 .297
798 ➡ 804 (option indicates that the remaining options should apply to)2.797 F
799
-
No equivalent source code line in the reference code can be identified.
-1.227(the `)144 549.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\
805
-
+1.227(the `)144 573.6 R(`def)-.74 E(ault')-.1 E 3.727('c)-.74 G 1.228(o\
800 ➡ 806 mmand completion; that is, completion attempted on a command for which \
801
-
No equivalent source code line in the reference code can be identified.
-no)-3.727 F 2.178(completion has pre)144 561.6 R 2.178
807
-
+no)-3.727 F 2.178(completion has pre)144 585.6 R 2.178
802 ➡ 808 (viously been de\214ned.)-.25 F(The)7.178 E F1<ad45>4.678 E F0 2.177
803 ➡ 809 (option indicates that the remaining options)4.677 F(should apply to `)
804
-
No equivalent source code line in the reference code can be identified.
-144 573.6 Q(`empty')-.74 E 2.5('c)-.74 G
810
-
+144 597.6 Q(`empty')-.74 E 2.5('c)-.74 G
805 ➡ 811 (ommand completion; that is, completion attempted on a blank line.)-2.5
806
-
No equivalent source code line in the reference code can be identified.
-E 1.387(The return v)144 597.6 R 1.387(alue is true unless an in)-.25 F
812
-
+E 1.387(The return v)144 621.6 R 1.387(alue is true unless an in)-.25 F
807 ➡ 813 -.25(va)-.4 G 1.388
808 ➡ 814 (lid option is supplied, an attempt is made to modify the).25 F
809
-
No equivalent source code line in the reference code can be identified.
-(options for a)144 609.6 Q F2(name)2.5 E F0
815
-
+(options for a)144 633.6 Q F2(name)2.5 E F0
810 ➡ 816 (for which no completion speci\214cation e)2.5 E
811
-
No equivalent source code line in the reference code can be identified.
-(xists, or an output error occurs.)-.15 E F1(continue)108 626.4 Q F0([)
812
-
No equivalent source code line in the reference code can be identified.
-2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 638.4 R 1.754
817
-
+(xists, or an output error occurs.)-.15 E F1(continue)108 650.4 Q F0([)
818
-
+2.5 E F2(n)A F0(])A 1.754(Resume the ne)144 662.4 R 1.754
813 ➡ 819 (xt iteration of the enclosing)-.15 F F1 -.25(fo)4.254 G(r).25 E F0(,)A
814 ➡ 820 F1(while)4.254 E F0(,)A F1(until)4.254 E F0 4.254(,o)C(r)-4.254 E F1
815 ➡ 821 (select)4.254 E F0 4.253(loop. If)4.254 F F2(n)4.613 E F0 1.753
816
-
No equivalent source code line in the reference code can be identified.
-(is speci\214ed,)4.493 F 1.208(resume at the)144 650.4 R F2(n)3.709 E F0
817
-
No equivalent source code line in the reference code can be identified.
-1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F4 10
822
-
+(is speci\214ed,)4.493 F 1.208(resume at the)144 674.4 R F2(n)3.709 E F0
823
-
+1.209(th enclosing loop.)B F2(n)6.569 E F0 1.209(must be)3.949 F/F5 10
818 ➡ 824 /Symbol SF<b3>3.709 E F0 3.709(1. If)3.709 F F2(n)4.069 E F0 1.209
819 ➡ 825 (is greater than the number of enclosing)3.949 F .514
820
-
No equivalent source code line in the reference code can be identified.
-(loops, the last enclosing loop \(the `)144 662.4 R(`top-le)-.74 E -.15
826
-
+(loops, the last enclosing loop \(the `)144 686.4 R(`top-le)-.74 E -.15
821 ➡ 827 (ve)-.25 G(l').15 E 3.014('l)-.74 G .514(oop\) is resumed.)-3.014 F .513
822 ➡ 828 (The return v)5.513 F .513(alue is 0 unless)-.25 F F2(n)3.013 E F0(is)
823
-
No equivalent source code line in the reference code can be identified.
-3.013 E(not greater than or equal to 1.)144 674.4 Q F1(declar)108 691.2
824
-
No equivalent source code line in the reference code can be identified.
-Q(e)-.18 E F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1<ad70>-2.5 E
825
-
No equivalent source code line in the reference code can be identified.
-F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C(..])-2.5 E F1
826
-
No equivalent source code line in the reference code can be identified.
-(typeset)108 703.2 Q F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1
827
-
No equivalent source code line in the reference code can be identified.
-<ad70>-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C
828
-
No equivalent source code line in the reference code can be identified.
-(..])-2.5 E 1.264(Declare v)144 715.2 R 1.264(ariables and/or gi)-.25 F
829
-
No equivalent source code line in the reference code can be identified.
-1.564 -.15(ve t)-.25 H 1.264(hem attrib).15 F 3.765(utes. If)-.2 F(no)
830
-
No equivalent source code line in the reference code can be identified.
-3.765 E F2(name)3.765 E F0 3.765(sa)C 1.265(re gi)-3.765 F -.15(ve)-.25
831
-
No equivalent source code line in the reference code can be identified.
-G 3.765(nt).15 G 1.265(hen display the v)-3.765 F 1.265(alues of)-.25 F
832
-
No equivalent source code line in the reference code can be identified.
--.25(va)144 727.2 S 3.483(riables. The).25 F F1<ad70>3.483 E F0 .983
833
-
No equivalent source code line in the reference code can be identified.
-(option will display the attrib)3.483 F .983(utes and v)-.2 F .982
834
-
No equivalent source code line in the reference code can be identified.
-(alues of each)-.25 F F2(name)3.482 E F0 5.982(.W).18 G(hen)-5.982 E F1
835
-
No equivalent source code line in the reference code can be identified.
-<ad70>3.482 E F0 .982(is used)3.482 F(GNU Bash 5.0)72 768 Q(2004 Apr 20)
836
-
No equivalent source code line in the reference code can be identified.
-149.565 E(5)203.725 E 0 Cg EP
829
-
+3.013 E(not greater than or equal to 1.)144 698.4 Q(GNU Bash 5.0)72 768
830
-
+Q(2004 Apr 20)149.565 E(5)203.725 E 0 Cg EP
837 ➡ 831 %%Page: 6 6
838 ➡ 832 %%BeginPageSetup
839 ➡ 833 BP
840 ➡ 834 %%EndPageSetup
841 ➡ 835 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
842 ➡ 836 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
843
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E(with)144 84 Q/F1 10/Times-Italic@0 SF(name)
844
-
No equivalent source code line in the reference code can be identified.
-2.774 E F0(ar)2.774 E .274(guments, additional options, other than)-.18
845
-
No equivalent source code line in the reference code can be identified.
-F/F2 10/Times-Bold@0 SF<ad66>2.775 E F0(and)2.775 E F2<ad46>2.775 E F0
846
-
No equivalent source code line in the reference code can be identified.
-2.775(,a)C .275(re ignored.)-2.775 F(When)5.275 E F2<ad70>2.775 E F0
847
-
No equivalent source code line in the reference code can be identified.
-.275(is supplied)2.775 F(without)144 96 Q F1(name)4.814 E F0(ar)4.814 E
848
-
No equivalent source code line in the reference code can be identified.
-2.314(guments, it will display the attrib)-.18 F 2.314(utes and v)-.2 F
849
-
No equivalent source code line in the reference code can be identified.
-2.313(alues of all v)-.25 F 2.313(ariables ha)-.25 F 2.313(ving the)-.2
850
-
No equivalent source code line in the reference code can be identified.
-F(attrib)144 108 Q 1.181(utes speci\214ed by the additional options.)-.2
851
-
No equivalent source code line in the reference code can be identified.
-F 1.182(If no other options are supplied with)6.181 F F2<ad70>3.682 E F0
852
-
No equivalent source code line in the reference code can be identified.
-(,)A F2(declar)3.682 E(e)-.18 E F0 .62(will display the attrib)144 120 R
837
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(declar)108 84 Q(e)
838
-
+-.18 E F0([)2.5 E F1(\255aAfFgilnrtux)A F0 2.5(][)C F1<ad70>-2.5 E F0
839
-
+2.5(][)C/F2 10/Times-Italic@0 SF(name)-2.5 E F0([=)A F2(value)A F0 2.5
840
-
+(].)C(..])-2.5 E F1(typeset)108 96 Q F0([)2.5 E F1(\255aAfFgilnrtux)A F0
841
-
+2.5(][)C F1<ad70>-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0
842
-
+2.5(].)C(..])-2.5 E 1.264(Declare v)144 108 R 1.264(ariables and/or gi)
843
-
+-.25 F 1.564 -.15(ve t)-.25 H 1.264(hem attrib).15 F 3.765(utes. If)-.2
844
-
+F(no)3.765 E F2(name)3.765 E F0 3.765(sa)C 1.265(re gi)-3.765 F -.15(ve)
845
-
+-.25 G 3.765(nt).15 G 1.265(hen display the v)-3.765 F 1.265(alues of)
846
-
+-.25 F -.25(va)144 120 S 3.483(riables. The).25 F F1<ad70>3.483 E F0
847
-
+.983(option will display the attrib)3.483 F .983(utes and v)-.2 F .982
848
-
+(alues of each)-.25 F F2(name)3.482 E F0 5.982(.W).18 G(hen)-5.982 E F1
849
-
+<ad70>3.482 E F0 .982(is used)3.482 F(with)144 132 Q F2(name)2.774 E F0
850
-
+(ar)2.774 E .274(guments, additional options, other than)-.18 F F1<ad66>
851
-
+2.775 E F0(and)2.775 E F1<ad46>2.775 E F0 2.775(,a)C .275(re ignored.)
852
-
+-2.775 F(When)5.275 E F1<ad70>2.775 E F0 .275(is supplied)2.775 F
853
-
+(without)144 144 Q F2(name)4.814 E F0(ar)4.814 E 2.314
854
-
+(guments, it will display the attrib)-.18 F 2.314(utes and v)-.2 F 2.313
855
-
+(alues of all v)-.25 F 2.313(ariables ha)-.25 F 2.313(ving the)-.2 F
856
-
+(attrib)144 156 Q 1.181(utes speci\214ed by the additional options.)-.2
857
-
+F 1.182(If no other options are supplied with)6.181 F F1<ad70>3.682 E F0
858
-
+(,)A F1(declar)3.682 E(e)-.18 E F0 .62(will display the attrib)144 168 R
853 ➡ 859 .62(utes and v)-.2 F .62(alues of all shell v)-.25 F 3.12(ariables. The)
854
-
No equivalent source code line in the reference code can be identified.
--.25 F F2<ad66>3.12 E F0 .62(option will restrict the display)3.12 F
855
-
No equivalent source code line in the reference code can be identified.
-1.29(to shell functions.)144 132 R(The)6.29 E F2<ad46>3.79 E F0 1.291(o\
860
-
+-.25 F F1<ad66>3.12 E F0 .62(option will restrict the display)3.12 F
861
-
+1.29(to shell functions.)144 180 R(The)6.29 E F1<ad46>3.79 E F0 1.291(o\
856 ➡ 862 ption inhibits the display of function de\214nitions; only the function)
857
-
No equivalent source code line in the reference code can be identified.
-3.791 F .948(name and attrib)144 144 R .948(utes are printed.)-.2 F .948
858
-
No equivalent source code line in the reference code can be identified.
-(If the)5.948 F F2(extdeb)3.448 E(ug)-.2 E F0 .948
859
-
No equivalent source code line in the reference code can be identified.
-(shell option is enabled using)3.448 F F2(shopt)3.448 E F0 3.448(,t)C
863
-
+3.791 F .948(name and attrib)144 192 R .948(utes are printed.)-.2 F .948
864
-
+(If the)5.948 F F1(extdeb)3.448 E(ug)-.2 E F0 .948
865
-
+(shell option is enabled using)3.448 F F1(shopt)3.448 E F0 3.448(,t)C
860 ➡ 866 .948(he source)-3.448 F 1.69(\214le name and line number where each)144
861
-
No equivalent source code line in the reference code can be identified.
-156 R F1(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19 F
862
-
No equivalent source code line in the reference code can be identified.
-(The)6.69 E F2<ad46>4.19 E F0(option)4.19 E(implies)144 168 Q F2<ad66>
863
-
No equivalent source code line in the reference code can be identified.
-3.892 E F0 6.392(.T)C(he)-6.392 E F2<ad67>3.892 E F0 1.391
867
-
+204 R F2(name)4.19 E F0 1.69(is de\214ned are displayed as well.)4.19 F
868
-
+(The)6.69 E F1<ad46>4.19 E F0(option)4.19 E(implies)144 216 Q F1<ad66>
869
-
+3.892 E F0 6.392(.T)C(he)-6.392 E F1<ad67>3.892 E F0 1.391
864 ➡ 870 (option forces v)3.892 F 1.391
865 ➡ 871 (ariables to be created or modi\214ed at the global scope, e)-.25 F -.15
866
-
No equivalent source code line in the reference code can be identified.
-(ve)-.25 G(n).15 E(when)144 180 Q F2(declar)4.382 E(e)-.18 E F0 1.882
872
-
+(ve)-.25 G(n).15 E(when)144 228 Q F1(declar)4.382 E(e)-.18 E F0 1.882
867 ➡ 873 (is e)4.382 F -.15(xe)-.15 G 1.882(cuted in a shell function.).15 F
868 ➡ 874 1.883(It is ignored in all other cases.)6.882 F 1.883(The follo)6.883 F
869
-
No equivalent source code line in the reference code can be identified.
-(wing)-.25 E .794(options can be used to restrict output to v)144 192 R
875
-
+(wing)-.25 E .794(options can be used to restrict output to v)144 240 R
870 ➡ 876 .794(ariables with the speci\214ed attrib)-.25 F .793(ute or to gi)-.2 F
871
-
No equivalent source code line in the reference code can be identified.
-1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 204 Q(utes:)-.2 E F2
872
-
No equivalent source code line in the reference code can be identified.
-<ad61>144 216 Q F0(Each)180 216 Q F1(name)2.5 E F0(is an inde)2.5 E -.15
873
-
No equivalent source code line in the reference code can be identified.
-(xe)-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F2(Arrays)2.5
874
-
No equivalent source code line in the reference code can be identified.
-E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F2<ad41>144 228 Q F0(Each)180
875
-
No equivalent source code line in the reference code can be identified.
-228 Q F1(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v)
876
-
No equivalent source code line in the reference code can be identified.
-.15 E(ariable \(see)-.25 E F2(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G
877
-
No equivalent source code line in the reference code can be identified.
-(\).).15 E F2<ad66>144 240 Q F0(Use function names only)180 240 Q(.)-.65
878
-
No equivalent source code line in the reference code can be identified.
-E F2<ad69>144 252 Q F0 .557(The v)180 252 R .558
877
-
+1.093 -.15(ve v)-.25 H(ariables)-.1 E(attrib)144 252 Q(utes:)-.2 E F1
878
-
+<ad61>144 264 Q F0(Each)180 264 Q F2(name)2.5 E F0(is an inde)2.5 E -.15
879
-
+(xe)-.15 G 2.5(da).15 G(rray v)-2.5 E(ariable \(see)-.25 E F1(Arrays)2.5
880
-
+E F0(abo)2.5 E -.15(ve)-.15 G(\).).15 E F1<ad41>144 276 Q F0(Each)180
881
-
+276 Q F2(name)2.5 E F0(is an associati)2.5 E .3 -.15(ve a)-.25 H(rray v)
882
-
+.15 E(ariable \(see)-.25 E F1(Arrays)2.5 E F0(abo)2.5 E -.15(ve)-.15 G
883
-
+(\).).15 E F1<ad66>144 288 Q F0(Use function names only)180 288 Q(.)-.65
884
-
+E F1<ad69>144 300 Q F0 .557(The v)180 300 R .558
879 ➡ 885 (ariable is treated as an inte)-.25 F .558(ger; arithmetic e)-.15 F -.25
880 ➡ 886 (va)-.25 G .558(luation \(see).25 F/F3 9/Times-Bold@0 SF .558
881
-
No equivalent source code line in the reference code can be identified.
-(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 264 Q F0(abo)2.25
887
-
+(ARITHMETIC EV)3.058 F(ALU)-1.215 E(A-)-.54 E(TION)180 312 Q F0(abo)2.25
882 ➡ 888 E -.15(ve)-.15 G 2.5(\)i).15 G 2.5(sp)-2.5 G(erformed when the v)-2.5 E
883
-
No equivalent source code line in the reference code can be identified.
-(ariable is assigned a v)-.25 E(alue.)-.25 E F2<ad6c>144 276 Q F0 .91
884
-
No equivalent source code line in the reference code can be identified.
-(When the v)180 276 R .909(ariable is assigned a v)-.25 F .909
889
-
+(ariable is assigned a v)-.25 E(alue.)-.25 E F1<ad6c>144 324 Q F0 .91
890
-
+(When the v)180 324 R .909(ariable is assigned a v)-.25 F .909
885 ➡ 891 (alue, all upper)-.25 F .909(-case characters are con)-.2 F -.15(ve)-.4
886
-
No equivalent source code line in the reference code can be identified.
-G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 288 R
887
-
No equivalent source code line in the reference code can be identified.
-(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F2<ad6e>144 300 Q
888
-
No equivalent source code line in the reference code can be identified.
-F0(Gi)180 300 Q 1.619 -.15(ve e)-.25 H(ach).15 E F1(name)3.819 E F0(the)
889
-
No equivalent source code line in the reference code can be identified.
-3.819 E F1(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319
892
-
+G .909(rted to lo).15 F(wer)-.25 E(-)-.2 E 2.5(case. The)180 336 R
893
-
+(upper)2.5 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1<ad6e>144 348 Q
894
-
+F0(Gi)180 348 Q 1.619 -.15(ve e)-.25 H(ach).15 E F2(name)3.819 E F0(the)
895
-
+3.819 E F2(namer)3.819 E(ef)-.37 E F0(attrib)3.819 E 1.319
890 ➡ 896 (ute, making it a name reference to another v)-.2 F(ariable.)-.25 E
891
-
No equivalent source code line in the reference code can be identified.
-1.519(That other v)180 312 R 1.519(ariable is de\214ned by the v)-.25 F
892
-
No equivalent source code line in the reference code can be identified.
-1.518(alue of)-.25 F F1(name)4.018 E F0 6.518(.A)C 1.518
893
-
No equivalent source code line in the reference code can be identified.
-(ll references, assignments, and)-6.518 F(attrib)180 324 Q .226
894
-
No equivalent source code line in the reference code can be identified.
-(ute modi\214cations to)-.2 F F1(name)2.726 E F0 2.726(,e)C .226
895
-
No equivalent source code line in the reference code can be identified.
-(xcept those using or changing the)-2.876 F F2<ad6e>2.726 E F0(attrib)
896
-
No equivalent source code line in the reference code can be identified.
-2.726 E .227(ute itself, are)-.2 F .809(performed on the v)180 336 R
897
-
No equivalent source code line in the reference code can be identified.
-.809(ariable referenced by)-.25 F F1(name)3.308 E F0 1.908 -.55('s v)D
897
-
+1.519(That other v)180 360 R 1.519(ariable is de\214ned by the v)-.25 F
898
-
+1.518(alue of)-.25 F F2(name)4.018 E F0 6.518(.A)C 1.518
899
-
+(ll references, assignments, and)-6.518 F(attrib)180 372 Q .226
900
-
+(ute modi\214cations to)-.2 F F2(name)2.726 E F0 2.726(,e)C .226
901
-
+(xcept those using or changing the)-2.876 F F1<ad6e>2.726 E F0(attrib)
902
-
+2.726 E .227(ute itself, are)-.2 F .809(performed on the v)180 384 R
903
-
+.809(ariable referenced by)-.25 F F2(name)3.308 E F0 1.908 -.55('s v)D
898 ➡ 904 3.308(alue. The).3 F .808(nameref attrib)3.308 F .808(ute cannot be)-.2
899
-
No equivalent source code line in the reference code can be identified.
-F(applied to array v)180 348 Q(ariables.)-.25 E F2<ad72>144 360 Q F0
900
-
No equivalent source code line in the reference code can be identified.
-(Mak)180 360 Q(e)-.1 E F1(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E
905
-
+F(applied to array v)180 396 Q(ariables.)-.25 E F1<ad72>144 408 Q F0
906
-
+(Mak)180 408 Q(e)-.1 E F2(name)5.046 E F0 5.046(sr)C(eadonly)-5.046 E
901 ➡ 907 7.546(.T)-.65 G 2.546(hese names cannot then be assigned v)-7.546 F
902
-
No equivalent source code line in the reference code can be identified.
-2.547(alues by subsequent)-.25 F(assignment statements or unset.)180 372
903
-
No equivalent source code line in the reference code can be identified.
-Q F2<ad74>144 384 Q F0(Gi)180 384 Q .73 -.15(ve e)-.25 H(ach).15 E F1
904
-
No equivalent source code line in the reference code can be identified.
-(name)2.93 E F0(the)2.929 E F1(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E
905
-
No equivalent source code line in the reference code can be identified.
-2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F2(DEB)2.929
906
-
No equivalent source code line in the reference code can be identified.
-E(UG)-.1 E F0(and)2.929 E F2(RETURN)2.929 E F0
907
-
No equivalent source code line in the reference code can be identified.
-(traps from the calling shell.)180 396 Q(The trace attrib)5 E
908
-
No equivalent source code line in the reference code can be identified.
-(ute has no special meaning for v)-.2 E(ariables.)-.25 E F2<ad75>144 408
909
-
No equivalent source code line in the reference code can be identified.
-Q F0 .909(When the v)180 408 R .909(ariable is assigned a v)-.25 F .909
908
-
+2.547(alues by subsequent)-.25 F(assignment statements or unset.)180 420
909
-
+Q F1<ad74>144 432 Q F0(Gi)180 432 Q .73 -.15(ve e)-.25 H(ach).15 E F2
910
-
+(name)2.93 E F0(the)2.929 E F2(tr)2.929 E(ace)-.15 E F0(attrib)2.929 E
911
-
+2.929(ute. T)-.2 F .429(raced functions inherit the)-.35 F F1(DEB)2.929
912
-
+E(UG)-.1 E F0(and)2.929 E F1(RETURN)2.929 E F0
913
-
+(traps from the calling shell.)180 444 Q(The trace attrib)5 E
914
-
+(ute has no special meaning for v)-.2 E(ariables.)-.25 E F1<ad75>144 456
915
-
+Q F0 .909(When the v)180 456 R .909(ariable is assigned a v)-.25 F .909
910 ➡ 916 (alue, all lo)-.25 F(wer)-.25 E .909(-case characters are con)-.2 F -.15
911
-
No equivalent source code line in the reference code can be identified.
-(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 420 R(lo)2.5
912
-
No equivalent source code line in the reference code can be identified.
-E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F2<ad78>144 432 Q
913
-
No equivalent source code line in the reference code can be identified.
-F0(Mark)180 432 Q F1(name)2.5 E F0 2.5(sf)C(or e)-2.5 E
917
-
+(ve)-.4 G .91(rted to upper).15 F(-)-.2 E 2.5(case. The)180 468 R(lo)2.5
918
-
+E(wer)-.25 E(-case attrib)-.2 E(ute is disabled.)-.2 E F1<ad78>144 480 Q
919
-
+F0(Mark)180 480 Q F2(name)2.5 E F0 2.5(sf)C(or e)-2.5 E
914 ➡ 920 (xport to subsequent commands via the en)-.15 E(vironment.)-.4 E .121
915
-
No equivalent source code line in the reference code can be identified.
-(Using `+' instead of `\255' turns of)144 448.8 R 2.621(ft)-.25 G .121
921
-
+(Using `+' instead of `\255' turns of)144 496.8 R 2.621(ft)-.25 G .121
916 ➡ 922 (he attrib)-2.621 F .121(ute instead, with the e)-.2 F .12
917
-
No equivalent source code line in the reference code can be identified.
-(xceptions that)-.15 F F2(+a)2.62 E F0 .12(may not be used)2.62 F .644
918
-
No equivalent source code line in the reference code can be identified.
-(to destro)144 460.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v)
919
-
No equivalent source code line in the reference code can be identified.
--3.144 F .644(ariable and)-.25 F F2(+r)3.145 E F0 .645(will not remo)
923
-
+(xceptions that)-.15 F F1(+a)2.62 E F0 .12(may not be used)2.62 F .644
924
-
+(to destro)144 508.8 R 3.144(ya)-.1 G 3.144(na)-3.144 G .644(rray v)
925
-
+-3.144 F .644(ariable and)-.25 F F1(+r)3.145 E F0 .645(will not remo)
920 ➡ 926 3.145 F .945 -.15(ve t)-.15 H .645(he readonly attrib).15 F 3.145
921
-
No equivalent source code line in the reference code can be identified.
-(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 472.8 Q F2
922
-
No equivalent source code line in the reference code can be identified.
-(declar)2.835 E(e)-.18 E F0(and)2.835 E F2(typeset)2.835 E F0(mak)2.835
923
-
No equivalent source code line in the reference code can be identified.
-E 2.835(ee)-.1 G(ach)-2.835 E F1(name)2.835 E F0 .335
924
-
No equivalent source code line in the reference code can be identified.
-(local, as with the)2.835 F F2(local)2.835 E F0 .335
925
-
No equivalent source code line in the reference code can be identified.
-(command, unless the)2.835 F F2<ad67>2.835 E F0(option)2.835 E 1.282
926
-
No equivalent source code line in the reference code can be identified.
-(is supplied.)144 484.8 R 1.282(If a v)6.282 F 1.283
927
-
No equivalent source code line in the reference code can be identified.
-(ariable name is follo)-.25 F 1.283(wed by =)-.25 F F1(value)A F0 3.783
927
-
+(ute. When)-.2 F .645(used in a func-)3.145 F(tion,)144 520.8 Q F1
928
-
+(declar)2.835 E(e)-.18 E F0(and)2.835 E F1(typeset)2.835 E F0(mak)2.835
929
-
+E 2.835(ee)-.1 G(ach)-2.835 E F2(name)2.835 E F0 .335
930
-
+(local, as with the)2.835 F F1(local)2.835 E F0 .335
931
-
+(command, unless the)2.835 F F1<ad67>2.835 E F0(option)2.835 E 1.282
932
-
+(is supplied.)144 532.8 R 1.282(If a v)6.282 F 1.283
933
-
+(ariable name is follo)-.25 F 1.283(wed by =)-.25 F F2(value)A F0 3.783
928 ➡ 934 (,t)C 1.283(he v)-3.783 F 1.283(alue of the v)-.25 F 1.283
929
-
No equivalent source code line in the reference code can be identified.
-(ariable is set to)-.25 F F1(value)3.783 E F0(.)A .927(When using)144
930
-
No equivalent source code line in the reference code can be identified.
-496.8 R F2<ad61>3.427 E F0(or)3.427 E F2<ad41>3.427 E F0 .926
935
-
+(ariable is set to)-.25 F F2(value)3.783 E F0(.)A .927(When using)144
936
-
+544.8 R F1<ad61>3.427 E F0(or)3.427 E F1<ad41>3.427 E F0 .926
931 ➡ 937 (and the compound assignment syntax to create array v)3.427 F .926
932
-
No equivalent source code line in the reference code can be identified.
-(ariables, additional)-.25 F(attrib)144 508.8 Q .592(utes do not tak)-.2
938
-
+(ariables, additional)-.25 F(attrib)144 556.8 Q .592(utes do not tak)-.2
933 ➡ 939 F 3.092(ee)-.1 G -.25(ff)-3.092 G .592
934 ➡ 940 (ect until subsequent assignments.).25 F .592(The return v)5.592 F .592
935 ➡ 941 (alue is 0 unless an in)-.25 F -.25(va)-.4 G(lid).25 E .429
936 ➡ 942 (option is encountered, an attempt is made to de\214ne a function using)
937
-
No equivalent source code line in the reference code can be identified.
-144 520.8 R/F4 10/Courier@0 SF .428(\255f foo=bar)2.929 F F0 2.928(,a)C
943
-
+144 568.8 R/F4 10/Courier@0 SF .428(\255f foo=bar)2.929 F F0 2.928(,a)C
938 ➡ 944 2.928(na)-2.928 G .428(ttempt is)-2.928 F .062(made to assign a v)144
939
-
No equivalent source code line in the reference code can be identified.
-532.8 R .062(alue to a readonly v)-.25 F .063
945
-
+580.8 R .062(alue to a readonly v)-.25 F .063
940 ➡ 946 (ariable, an attempt is made to assign a v)-.25 F .063
941 ➡ 947 (alue to an array v)-.25 F(ari-)-.25 E .102
942
-
No equivalent source code line in the reference code can be identified.
-(able without using the compound assignment syntax \(see)144 544.8 R F2
948
-
+(able without using the compound assignment syntax \(see)144 592.8 R F1
943 ➡ 949 (Arrays)2.602 E F0(abo)2.602 E -.15(ve)-.15 G .102(\), one of the).15 F
944
-
No equivalent source code line in the reference code can be identified.
-F1(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 556.8 S .171
950
-
+F2(names)2.602 E F0 .101(is not a)2.602 F -.25(va)144 604.8 S .171
945 ➡ 951 (lid shell v).25 F .171(ariable name, an attempt is made to turn of)-.25
946 ➡ 952 F 2.671(fr)-.25 G .171(eadonly status for a readonly v)-2.671 F .172
947
-
No equivalent source code line in the reference code can be identified.
-(ariable, an)-.25 F .96(attempt is made to turn of)144 568.8 R 3.46(fa)
953
-
+(ariable, an)-.25 F .96(attempt is made to turn of)144 616.8 R 3.46(fa)
948 ➡ 954 -.25 G .96(rray status for an array v)-3.46 F .96
949
-
No equivalent source code line in the reference code can be identified.
-(ariable, or an attempt is made to display a)-.25 F(non-e)144 580.8 Q
950
-
No equivalent source code line in the reference code can be identified.
-(xistent function with)-.15 E F2<ad66>2.5 E F0(.)A F2
951
-
No equivalent source code line in the reference code can be identified.
-(dirs [\255clpv] [+)108 597.6 Q F1(n)A F2 2.5(][)C<ad>-2.5 E F1(n)A F2
952
-
No equivalent source code line in the reference code can be identified.
-(])A F0 -.4(Wi)144 609.6 S .328
955
-
+(ariable, or an attempt is made to display a)-.25 F(non-e)144 628.8 Q
956
-
+(xistent function with)-.15 E F1<ad66>2.5 E F0(.)A F1
957
-
+(dirs [\255clpv] [+)108 645.6 Q F2(n)A F1 2.5(][)C<ad>-2.5 E F2(n)A F1
958
-
+(])A F0 -.4(Wi)144 657.6 S .328
953 ➡ 959 (thout options, displays the list of currently remembered directories.)
954 ➡ 960 .4 F .329(The def)5.329 F .329(ault display is on a)-.1 F 1.238
955
-
No equivalent source code line in the reference code can be identified.
-(single line with directory names separated by spaces.)144 621.6 R 1.238
956
-
No equivalent source code line in the reference code can be identified.
-(Directories are added to the list with the)6.238 F F2(pushd)144 633.6 Q
957
-
No equivalent source code line in the reference code can be identified.
-F0 2.003(command; the)4.503 F F2(popd)4.503 E F0 2.003(command remo)
961
-
+(single line with directory names separated by spaces.)144 669.6 R 1.238
962
-
+(Directories are added to the list with the)6.238 F F1(pushd)144 681.6 Q
963
-
+F0 2.003(command; the)4.503 F F1(popd)4.503 E F0 2.003(command remo)
958 ➡ 964 4.503 F -.15(ve)-.15 G 4.503(se).15 G 2.003(ntries from the list.)-4.503
959
-
No equivalent source code line in the reference code can be identified.
-F 2.003(The current directory is)7.003 F(al)144 645.6 Q -.1(wa)-.1 G
960
-
No equivalent source code line in the reference code can be identified.
-(ys the \214rst directory in the stack.).1 E F2<ad63>144 657.6 Q F0
961
-
No equivalent source code line in the reference code can be identified.
-(Clears the directory stack by deleting all of the entries.)180 657.6 Q
962
-
No equivalent source code line in the reference code can be identified.
-F2<ad6c>144 669.6 Q F0 .882
963
-
No equivalent source code line in the reference code can be identified.
-(Produces a listing using full pathnames; the def)180 669.6 R .881
965
-
+F 2.003(The current directory is)7.003 F(al)144 693.6 Q -.1(wa)-.1 G
966
-
+(ys the \214rst directory in the stack.).1 E F1<ad63>144 705.6 Q F0
967
-
+(Clears the directory stack by deleting all of the entries.)180 705.6 Q
968
-
+F1<ad6c>144 717.6 Q F0 .882
969
-
+(Produces a listing using full pathnames; the def)180 717.6 R .881
964 ➡ 970 (ault listing format uses a tilde to denote)-.1 F(the home directory)180
965
-
No equivalent source code line in the reference code can be identified.
-681.6 Q(.)-.65 E F2<ad70>144 693.6 Q F0
966
-
No equivalent source code line in the reference code can be identified.
-(Print the directory stack with one entry per line.)180 693.6 Q F2<ad76>
967
-
No equivalent source code line in the reference code can be identified.
-144 705.6 Q F0 .272(Print the directory stack with one entry per line, \
968
-
No equivalent source code line in the reference code can be identified.
-pre\214xing each entry with its inde)180 705.6 R 2.773(xi)-.15 G 2.773
969
-
No equivalent source code line in the reference code can be identified.
-(nt)-2.773 G(he)-2.773 E(stack.)180 717.6 Q(GNU Bash 5.0)72 768 Q
970
-
No equivalent source code line in the reference code can be identified.
-(2004 Apr 20)149.565 E(6)203.725 E 0 Cg EP
971
-
+729.6 Q(.)-.65 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(6)203.725 E
972
-
+0 Cg EP
971 ➡ 973 %%Page: 7 7
972 ➡ 974 %%BeginPageSetup
973 ➡ 975 BP
974 ➡ 976 %%EndPageSetup
975 ➡ 977 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
976 ➡ 978 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
977
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(+)144 84 Q/F2 10
978
-
No equivalent source code line in the reference code can be identified.
-/Times-Italic@0 SF(n)A F0 1.565(Displays the)180 84 R F2(n)4.065 E F0
979
-
No equivalent source code line in the reference code can be identified.
-1.565(th entry counting from the left of the list sho)B 1.564(wn by)-.25
980
-
No equivalent source code line in the reference code can be identified.
-F F1(dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1
981
-
No equivalent source code line in the reference code can be identified.
-E(without options, starting with zero.)180 96 Q F1<ad>144 108 Q F2(n)A
982
-
No equivalent source code line in the reference code can be identified.
-F0 1.194(Displays the)180 108 R F2(n)3.694 E F0 1.194
979
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad70>144 84 Q F0
980
-
+(Print the directory stack with one entry per line.)180 84 Q F1<ad76>144
981
-
+96 Q F0 .272(Print the directory stack with one entry per line, pre\214\
982
-
+xing each entry with its inde)180 96 R 2.773(xi)-.15 G 2.773(nt)-2.773 G
983
-
+(he)-2.773 E(stack.)180 108 Q F1(+)144 120 Q/F2 10/Times-Italic@0 SF(n)A
984
-
+F0 1.565(Displays the)180 120 R F2(n)4.065 E F0 1.565
985
-
+(th entry counting from the left of the list sho)B 1.564(wn by)-.25 F F1
986
-
+(dirs)4.064 E F0 1.564(when in)4.064 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
987
-
+(without options, starting with zero.)180 132 Q F1<ad>144 144 Q F2(n)A
988
-
+F0 1.194(Displays the)180 144 R F2(n)3.694 E F0 1.194
983 ➡ 989 (th entry counting from the right of the list sho)B 1.194(wn by)-.25 F
984 ➡ 990 F1(dirs)3.694 E F0 1.194(when in)3.694 F -.2(vo)-.4 G -.1(ke).2 G(d).1 E
985
-
No equivalent source code line in the reference code can be identified.
-(without options, starting with zero.)180 120 Q .258(The return v)144
986
-
No equivalent source code line in the reference code can be identified.
-136.8 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258
991
-
+(without options, starting with zero.)180 156 Q .258(The return v)144
992
-
+172.8 R .258(alue is 0 unless an in)-.25 F -.25(va)-.4 G .258
987 ➡ 993 (lid option is supplied or).25 F F2(n)2.758 E F0(inde)2.758 E -.15(xe)
988 ➡ 994 -.15 G 2.758(sb).15 G -.15(ey)-2.758 G .258(ond the end of the direc-)
989
-
No equivalent source code line in the reference code can be identified.
-.15 F(tory stack.)144 148.8 Q F1(diso)108 165.6 Q(wn)-.1 E F0([)2.5 E F1
995
-
+.15 F(tory stack.)144 184.8 Q F1(diso)108 201.6 Q(wn)-.1 E F0([)2.5 E F1
990 ➡ 996 (\255ar)A F0 2.5(][)C F1<ad68>-2.5 E F0 2.5(][)C F2(jobspec)-2.5 E F0
991
-
No equivalent source code line in the reference code can be identified.
-(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 177.6 S .121
997
-
+(... |)2.5 E F2(pid)2.5 E F0(... ])2.5 E -.4(Wi)144 213.6 S .121
992 ➡ 998 (thout options, remo).4 F .422 -.15(ve e)-.15 H(ach).15 E F2(jobspec)
993 ➡ 999 4.362 E F0 .122(from the table of acti)2.932 F .422 -.15(ve j)-.25 H
994 ➡ 1000 2.622(obs. If).15 F F2(jobspec)4.362 E F0 .122(is not present, and)2.932
995
-
No equivalent source code line in the reference code can be identified.
-F .096(neither the)144 189.6 R F1<ad61>2.596 E F0 .096(nor the)2.596 F
1001
-
+F .096(neither the)144 225.6 R F1<ad61>2.596 E F0 .096(nor the)2.596 F
996 ➡ 1002 F1<ad72>2.596 E F0 .096(option is supplied, the)2.596 F F2(curr)2.596 E
997 ➡ 1003 .096(ent job)-.37 F F0 .096(is used.)2.596 F .096(If the)5.096 F F1
998 ➡ 1004 <ad68>2.596 E F0 .096(option is gi)2.596 F -.15(ve)-.25 G .096(n, each)
999
-
No equivalent source code line in the reference code can be identified.
-.15 F F2(jobspec)145.74 201.6 Q F0 .585(is not remo)3.395 F -.15(ve)-.15
1005
-
+.15 F F2(jobspec)145.74 237.6 Q F0 .585(is not remo)3.395 F -.15(ve)-.15
1000 ➡ 1006 G 3.085(df).15 G .585(rom the table, b)-3.085 F .585(ut is mark)-.2 F
1001 ➡ 1007 .585(ed so that)-.1 F/F3 9/Times-Bold@0 SF(SIGHUP)3.085 E F0 .586
1002
-
No equivalent source code line in the reference code can be identified.
-(is not sent to the job if the)2.835 F .962(shell recei)144 213.6 R -.15
1008
-
+(is not sent to the job if the)2.835 F .962(shell recei)144 249.6 R -.15
1003 ➡ 1009 (ve)-.25 G 3.462(sa).15 G F3(SIGHUP)A/F4 9/Times-Roman@0 SF(.)A F0 .962
1004 ➡ 1010 (If no)5.462 F F2(jobspec)5.202 E F0 .962(is supplied, the)3.772 F F1
1005 ➡ 1011 <ad61>3.462 E F0 .962(option means to remo)3.462 F 1.262 -.15(ve o)-.15
1006
-
No equivalent source code line in the reference code can be identified.
-H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 225.6 R F1
1012
-
+H 3.462(rm).15 G .962(ark all)-3.462 F 1.358(jobs; the)144 261.6 R F1
1007 ➡ 1013 <ad72>3.858 E F0 1.358(option without a)3.858 F F2(jobspec)5.598 E F0
1008 ➡ 1014 (ar)4.169 E 1.359(gument restricts operation to running jobs.)-.18 F
1009
-
No equivalent source code line in the reference code can be identified.
-1.359(The return)6.359 F -.25(va)144 237.6 S(lue is 0 unless a).25 E F2
1015
-
+1.359(The return)6.359 F -.25(va)144 273.6 S(lue is 0 unless a).25 E F2
1010 ➡ 1016 (jobspec)4.24 E F0(does not specify a v)2.81 E(alid job)-.25 E(.)-.4 E
1011
-
No equivalent source code line in the reference code can be identified.
-F1(echo)108 254.4 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)
1012
-
No equivalent source code line in the reference code can be identified.
--.37 E F0(...])2.5 E .425(Output the)144 266.4 R F2(ar)2.925 E(g)-.37 E
1017
-
+F1(echo)108 290.4 Q F0([)2.5 E F1(\255neE)A F0 2.5(][)C F2(ar)-2.5 E(g)
1018
-
+-.37 E F0(...])2.5 E .425(Output the)144 302.4 R F2(ar)2.925 E(g)-.37 E
1013 ➡ 1019 F0 .424(s, separated by spaces, follo)B .424(wed by a ne)-.25 F 2.924
1014 ➡ 1020 (wline. The)-.25 F .424(return status is 0 unless a write)2.924 F .307
1015
-
No equivalent source code line in the reference code can be identified.
-(error occurs.)144 278.4 R(If)5.307 E F1<ad6e>2.807 E F0 .307
1021
-
+(error occurs.)144 314.4 R(If)5.307 E F1<ad6e>2.807 E F0 .307
1016 ➡ 1022 (is speci\214ed, the trailing ne)2.807 F .308(wline is suppressed.)-.25
1017 ➡ 1023 F .308(If the)5.308 F F1<ad65>2.808 E F0 .308(option is gi)2.808 F -.15
1018 ➡ 1024 (ve)-.25 G .308(n, inter).15 F(-)-.2 E 1.349(pretation of the follo)144
1019
-
No equivalent source code line in the reference code can be identified.
-290.4 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The)
1025
-
+326.4 R 1.348(wing backslash-escaped characters is enabled.)-.25 F(The)
1020 ➡ 1026 6.348 E F1<ad45>3.848 E F0 1.348(option disables the)3.848 F 1.054
1021
-
No equivalent source code line in the reference code can be identified.
-(interpretation of these escape characters, e)144 302.4 R -.15(ve)-.25 G
1027
-
+(interpretation of these escape characters, e)144 338.4 R -.15(ve)-.25 G
1022 ➡ 1028 3.555(no).15 G 3.555(ns)-3.555 G 1.055(ystems where the)-3.555 F 3.555
1023 ➡ 1029 (ya)-.15 G 1.055(re interpreted by def)-3.555 F(ault.)-.1 E(The)144
1024
-
No equivalent source code line in the reference code can be identified.
-314.4 Q F1(xpg_echo)3.459 E F0 .959
1030
-
+350.4 Q F1(xpg_echo)3.459 E F0 .959
1025 ➡ 1031 (shell option may be used to dynamically determine whether or not)3.459
1026 ➡ 1032 F F1(echo)3.458 E F0 -.15(ex)3.458 G(pands).15 E .715
1027
-
No equivalent source code line in the reference code can be identified.
-(these escape characters by def)144 326.4 R(ault.)-.1 E F1(echo)5.715 E
1033
-
+(these escape characters by def)144 362.4 R(ault.)-.1 E F1(echo)5.715 E
1028 ➡ 1034 F0 .716(does not interpret)3.215 F F1<adad>3.216 E F0 .716
1029 ➡ 1035 (to mean the end of options.)3.216 F F1(echo)5.716 E F0
1030
-
No equivalent source code line in the reference code can be identified.
-(interprets the follo)144 338.4 Q(wing escape sequences:)-.25 E F1(\\a)
1031
-
No equivalent source code line in the reference code can be identified.
-144 350.4 Q F0(alert \(bell\))180 350.4 Q F1(\\b)144 362.4 Q F0
1032
-
No equivalent source code line in the reference code can be identified.
-(backspace)180 362.4 Q F1(\\c)144 374.4 Q F0(suppress further output)180
1033
-
No equivalent source code line in the reference code can be identified.
-374.4 Q F1(\\e)144 386.4 Q(\\E)144 398.4 Q F0(an escape character)180
1034
-
No equivalent source code line in the reference code can be identified.
-398.4 Q F1(\\f)144 410.4 Q F0(form feed)180 410.4 Q F1(\\n)144 422.4 Q
1035
-
No equivalent source code line in the reference code can be identified.
-F0(ne)180 422.4 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 434.4 Q F0
1036
-
No equivalent source code line in the reference code can be identified.
-(carriage return)180 434.4 Q F1(\\t)144 446.4 Q F0(horizontal tab)180
1037
-
No equivalent source code line in the reference code can be identified.
-446.4 Q F1(\\v)144 458.4 Q F0 -.15(ve)180 458.4 S(rtical tab).15 E F1
1038
-
No equivalent source code line in the reference code can be identified.
-(\\\\)144 470.4 Q F0(backslash)180 470.4 Q F1(\\0)144 482.4 Q F2(nnn)A
1039
-
No equivalent source code line in the reference code can be identified.
-F0(the eight-bit character whose v)180 482.4 Q(alue is the octal v)-.25
1036
-
+(interprets the follo)144 374.4 Q(wing escape sequences:)-.25 E F1(\\a)
1037
-
+144 386.4 Q F0(alert \(bell\))180 386.4 Q F1(\\b)144 398.4 Q F0
1038
-
+(backspace)180 398.4 Q F1(\\c)144 410.4 Q F0(suppress further output)180
1039
-
+410.4 Q F1(\\e)144 422.4 Q(\\E)144 434.4 Q F0(an escape character)180
1040
-
+434.4 Q F1(\\f)144 446.4 Q F0(form feed)180 446.4 Q F1(\\n)144 458.4 Q
1041
-
+F0(ne)180 458.4 Q 2.5(wl)-.25 G(ine)-2.5 E F1(\\r)144 470.4 Q F0
1042
-
+(carriage return)180 470.4 Q F1(\\t)144 482.4 Q F0(horizontal tab)180
1043
-
+482.4 Q F1(\\v)144 494.4 Q F0 -.15(ve)180 494.4 S(rtical tab).15 E F1
1044
-
+(\\\\)144 506.4 Q F0(backslash)180 506.4 Q F1(\\0)144 518.4 Q F2(nnn)A
1045
-
+F0(the eight-bit character whose v)180 518.4 Q(alue is the octal v)-.25
1040 ➡ 1046 E(alue)-.25 E F2(nnn)2.5 E F0(\(zero to three octal digits\))2.5 E F1
1041
-
No equivalent source code line in the reference code can be identified.
-(\\x)144 494.4 Q F2(HH)A F0(the eight-bit character whose v)180 494.4 Q
1047
-
+(\\x)144 530.4 Q F2(HH)A F0(the eight-bit character whose v)180 530.4 Q
1042 ➡ 1048 (alue is the he)-.25 E(xadecimal v)-.15 E(alue)-.25 E F2(HH)2.5 E F0
1043 ➡ 1049 (\(one or tw)2.5 E 2.5(oh)-.1 G .3 -.15(ex d)-2.5 H(igits\)).15 E F1
1044
-
No equivalent source code line in the reference code can be identified.
-(\\u)144 506.4 Q F2(HHHH)A F0 1.507
1045
-
No equivalent source code line in the reference code can be identified.
-(the Unicode \(ISO/IEC 10646\) character whose v)180 518.4 R 1.506
1050
-
+(\\u)144 542.4 Q F2(HHHH)A F0 1.507
1051
-
+(the Unicode \(ISO/IEC 10646\) character whose v)180 554.4 R 1.506
1046 ➡ 1052 (alue is the he)-.25 F 1.506(xadecimal v)-.15 F(alue)-.25 E F2(HHHH)
1047
-
No equivalent source code line in the reference code can be identified.
-4.006 E F0(\(one to four he)180 530.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1
1048
-
No equivalent source code line in the reference code can be identified.
-(\\U)144 542.4 Q F2(HHHHHHHH)A F0 .547
1049
-
No equivalent source code line in the reference code can be identified.
-(the Unicode \(ISO/IEC 10646\) character whose v)180 554.4 R .547
1053
-
+4.006 E F0(\(one to four he)180 566.4 Q 2.5(xd)-.15 G(igits\))-2.5 E F1
1054
-
+(\\U)144 578.4 Q F2(HHHHHHHH)A F0 .547
1055
-
+(the Unicode \(ISO/IEC 10646\) character whose v)180 590.4 R .547
1050 ➡ 1056 (alue is the he)-.25 F .548(xadecimal v)-.15 F(alue)-.25 E F2(HHHHH-)
1051
-
No equivalent source code line in the reference code can be identified.
-3.048 E(HHH)180 566.4 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G
1052
-
No equivalent source code line in the reference code can be identified.
-(igits\))-2.5 E F1(enable)108 583.2 Q F0([)2.5 E F1<ad61>A F0 2.5(][)C
1057
-
+3.048 E(HHH)180 602.4 Q F0(\(one to eight he)2.5 E 2.5(xd)-.15 G
1058
-
+(igits\))-2.5 E F1(enable)108 619.2 Q F0([)2.5 E F1<ad61>A F0 2.5(][)C
1053 ➡ 1059 F1(\255dnps)-2.5 E F0 2.5(][)C F1<ad66>-2.5 E F2(\214lename)2.5 E F0 2.5
1054
-
No equivalent source code line in the reference code can be identified.
-(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 595.2 R
1060
-
+(][)C F2(name)-2.5 E F0(...])2.5 E .278(Enable and disable b)144 631.2 R
1055 ➡ 1061 .278(uiltin shell commands.)-.2 F .278(Disabling a b)5.278 F .278
1056 ➡ 1062 (uiltin allo)-.2 F .278(ws a disk command which has)-.25 F .833
1057
-
No equivalent source code line in the reference code can be identified.
-(the same name as a shell b)144 607.2 R .834(uiltin to be e)-.2 F -.15
1063
-
+(the same name as a shell b)144 643.2 R .834(uiltin to be e)-.2 F -.15
1058 ➡ 1064 (xe)-.15 G .834(cuted without specifying a full pathname, e).15 F -.15
1059 ➡ 1065 (ve)-.25 G 3.334(nt).15 G(hough)-3.334 E .99
1060
-
No equivalent source code line in the reference code can be identified.
-(the shell normally searches for b)144 619.2 R .989
1066
-
+(the shell normally searches for b)144 655.2 R .989
1061 ➡ 1067 (uiltins before disk commands.)-.2 F(If)5.989 E F1<ad6e>3.489 E F0 .989
1062 ➡ 1068 (is used, each)3.489 F F2(name)3.489 E F0 .989(is dis-)3.489 F 1.581
1063
-
No equivalent source code line in the reference code can be identified.
-(abled; otherwise,)144 631.2 R F2(names)4.082 E F0 1.582(are enabled.)
1069
-
+(abled; otherwise,)144 667.2 R F2(names)4.082 E F0 1.582(are enabled.)
1064 ➡ 1070 4.082 F -.15(Fo)6.582 G 4.082(re).15 G 1.582(xample, to use the)-4.232 F
1065 ➡ 1071 F1(test)4.082 E F0 1.582(binary found via the)4.082 F F3 -.666(PA)4.082
1066
-
No equivalent source code line in the reference code can be identified.
-G(TH)-.189 E F0 .081(instead of the shell b)144 643.2 R .081(uiltin v)
1072
-
+G(TH)-.189 E F0 .081(instead of the shell b)144 679.2 R .081(uiltin v)
1067 ➡ 1073 -.2 F .081(ersion, run)-.15 F/F5 10/Courier@0 SF .081(enable -n test)
1068 ➡ 1074 2.581 F F0 5.081(.T)C(he)-5.081 E F1<ad66>2.58 E F0 .08
1069
-
No equivalent source code line in the reference code can be identified.
-(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 655.2 S 1.524
1075
-
+(option means to load the ne)2.58 F(w)-.25 E -.2(bu)144 691.2 S 1.524
1070 ➡ 1076 (iltin command).2 F F2(name)4.384 E F0 1.524(from shared object)4.204 F
1071 ➡ 1077 F2(\214lename)4.024 E F0 4.024(,o).18 G 4.024(ns)-4.024 G 1.524
1072
-
No equivalent source code line in the reference code can be identified.
-(ystems that support dynamic loading.)-4.024 F(The)144 667.2 Q F1<ad64>
1078
-
+(ystems that support dynamic loading.)-4.024 F(The)144 703.2 Q F1<ad64>
1073 ➡ 1079 2.867 E F0 .367(option will delete a b)2.867 F .367(uiltin pre)-.2 F
1074 ➡ 1080 .367(viously loaded with)-.25 F F1<ad66>2.866 E F0 5.366(.I)C 2.866(fn)
1075 ➡ 1081 -5.366 G(o)-2.866 E F2(name)2.866 E F0(ar)2.866 E .366(guments are gi)
1076
-
No equivalent source code line in the reference code can be identified.
--.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 679.2 R F1<ad70>
1082
-
+-.18 F -.15(ve)-.25 G .366(n, or).15 F .398(if the)144 715.2 R F1<ad70>
1077 ➡ 1083 2.898 E F0 .399(option is supplied, a list of shell b)2.899 F .399
1078 ➡ 1084 (uiltins is printed.)-.2 F -.4(Wi)5.399 G .399(th no other option ar).4
1079 ➡ 1085 F .399(guments, the)-.18 F .099(list consists of all enabled shell b)144
1080
-
No equivalent source code line in the reference code can be identified.
-691.2 R 2.598(uiltins. If)-.2 F F1<ad6e>2.598 E F0 .098
1086
-
+727.2 R 2.598(uiltins. If)-.2 F F1<ad6e>2.598 E F0 .098
1081 ➡ 1087 (is supplied, only disabled b)2.598 F .098(uiltins are printed.)-.2 F
1082
-
No equivalent source code line in the reference code can be identified.
-(If)5.098 E F1<ad61>2.598 E F0 1.916
1083
-
No equivalent source code line in the reference code can be identified.
-(is supplied, the list printed includes all b)144 703.2 R 1.916
1084
-
No equivalent source code line in the reference code can be identified.
-(uiltins, with an indication of whether or not each is)-.2 F 2.879
1085
-
No equivalent source code line in the reference code can be identified.
-(enabled. If)144 715.2 R F1<ad73>2.879 E F0 .379
1086
-
No equivalent source code line in the reference code can be identified.
-(is supplied, the output is restricted to the POSIX)2.879 F F2(special)
1087
-
No equivalent source code line in the reference code can be identified.
-2.879 E F0 -.2(bu)2.878 G 2.878(iltins. The).2 F .378(return v)2.878 F
1088
-
No equivalent source code line in the reference code can be identified.
-(alue)-.25 E .994(is 0 unless a)144 727.2 R F2(name)3.854 E F0 .994
1089
-
No equivalent source code line in the reference code can be identified.
-(is not a shell b)3.674 F .994(uiltin or there is an error loading a ne)
1090
-
No equivalent source code line in the reference code can be identified.
--.2 F 3.495(wb)-.25 G .995(uiltin from a shared)-3.695 F(GNU Bash 5.0)72
1091
-
No equivalent source code line in the reference code can be identified.
-768 Q(2004 Apr 20)149.565 E(7)203.725 E 0 Cg EP
1088
-
+(If)5.098 E F1<ad61>2.598 E F0(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565
1089
-
+E(7)203.725 E 0 Cg EP
1092 ➡ 1090 %%Page: 8 8
1093 ➡ 1091 %%BeginPageSetup
1094 ➡ 1092 BP
1095 ➡ 1093 %%EndPageSetup
1096 ➡ 1094 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1097 ➡ 1095 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1098
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E(object.)144 84 Q/F1 10/Times-Bold@0 SF -2.3
1099
-
No equivalent source code line in the reference code can be identified.
--.15(ev a)108 100.8 T(l).15 E F0([)2.5 E/F2 10/Times-Italic@0 SF(ar)A(g)
1100
-
No equivalent source code line in the reference code can be identified.
--.37 E F0(...])2.5 E(The)144 112.8 Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)
1101
-
No equivalent source code line in the reference code can be identified.
-C .671(re read and concatenated together into a single command.)-3.171 F
1102
-
No equivalent source code line in the reference code can be identified.
-.67(This command is then read)5.67 F .495(and e)144 124.8 R -.15(xe)-.15
1103
-
No equivalent source code line in the reference code can be identified.
-G .495(cuted by the shell, and its e).15 F .495
1096
-
+E(UIL)-.1 E(TINS\(1\))-.92 E 1.916
1097
-
+(is supplied, the list printed includes all b)144 84 R 1.916
1098
-
+(uiltins, with an indication of whether or not each is)-.2 F 2.879
1099
-
+(enabled. If)144 96 R/F1 10/Times-Bold@0 SF<ad73>2.879 E F0 .379
1100
-
+(is supplied, the output is restricted to the POSIX)2.879 F/F2 10
1101
-
+/Times-Italic@0 SF(special)2.879 E F0 -.2(bu)2.878 G 2.878(iltins. The)
1102
-
+.2 F .378(return v)2.878 F(alue)-.25 E .994(is 0 unless a)144 108 R F2
1103
-
+(name)3.854 E F0 .994(is not a shell b)3.674 F .994
1104
-
+(uiltin or there is an error loading a ne)-.2 F 3.495(wb)-.25 G .995
1105
-
+(uiltin from a shared)-3.695 F(object.)144 120 Q F1 -2.3 -.15(ev a)108
1106
-
+136.8 T(l).15 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(The)144 148.8
1107
-
+Q F2(ar)3.171 E(g)-.37 E F0 3.171(sa)C .671
1108
-
+(re read and concatenated together into a single command.)-3.171 F .67
1109
-
+(This command is then read)5.67 F .495(and e)144 160.8 R -.15(xe)-.15 G
1110
-
+.495(cuted by the shell, and its e).15 F .495
1104 ➡ 1111 (xit status is returned as the v)-.15 F .495(alue of)-.25 F F1 -2.3 -.15
1105 ➡ 1112 (ev a)2.995 H(l).15 E F0 5.495(.I)C 2.995(ft)-5.495 G .495(here are no)
1106
-
No equivalent source code line in the reference code can be identified.
--2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 136.8 Q
1113
-
+-2.995 F F2(ar)2.995 E(gs)-.37 E F0(,).27 E(or only null ar)144 172.8 Q
1107 ➡ 1114 (guments,)-.18 E F1 -2.3 -.15(ev a)2.5 H(l).15 E F0(returns 0.)2.5 E F1
1108
-
No equivalent source code line in the reference code can be identified.
-(exec)108 153.6 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1<ad61>-2.5 E F2
1115
-
+(exec)108 189.6 Q F0([)2.5 E F1(\255cl)A F0 2.5(][)C F1<ad61>-2.5 E F2
1109 ➡ 1116 (name)2.5 E F0 2.5(][)C F2(command)-2.5 E F0([)2.5 E F2(ar)A(guments)
1110
-
No equivalent source code line in the reference code can be identified.
--.37 E F0(]])A(If)144 165.6 Q F2(command)3.006 E F0 .306
1117
-
+-.37 E F0(]])A(If)144 201.6 Q F2(command)3.006 E F0 .306
1111 ➡ 1118 (is speci\214ed, it replaces the shell.)3.576 F .305(No ne)5.305 F 2.805
1112 ➡ 1119 (wp)-.25 G .305(rocess is created.)-2.805 F(The)5.305 E F2(ar)3.135 E
1113
-
No equivalent source code line in the reference code can be identified.
-(guments)-.37 E F0(become)3.075 E .176(the ar)144 177.6 R .176
1120
-
+(guments)-.37 E F0(become)3.075 E .176(the ar)144 213.6 R .176
1114 ➡ 1121 (guments to)-.18 F F2(command)2.676 E F0 5.176(.I)C 2.676(ft)-5.176 G
1115 ➡ 1122 (he)-2.676 E F1<ad6c>2.676 E F0 .176
1116 ➡ 1123 (option is supplied, the shell places a dash at the be)2.676 F .177
1117
-
No equivalent source code line in the reference code can be identified.
-(ginning of)-.15 F .5(the zeroth ar)144 189.6 R .5(gument passed to)-.18
1124
-
+(ginning of)-.15 F .5(the zeroth ar)144 225.6 R .5(gument passed to)-.18
1118 ➡ 1125 F F2(command)3 E F0 5.499(.T).77 G .499(his is what)-5.499 F F2(lo)2.999
1119 ➡ 1126 E(gin)-.1 E F0 .499(\(1\) does.).24 F(The)5.499 E F1<ad63>2.999 E F0
1120
-
No equivalent source code line in the reference code can be identified.
-.499(option causes)2.999 F F2(com-)3.199 E(mand)144 201.6 Q F0 .638
1127
-
+.499(option causes)2.999 F F2(com-)3.199 E(mand)144 237.6 Q F0 .638
1121 ➡ 1128 (to be e)3.908 F -.15(xe)-.15 G .638(cuted with an empty en).15 F 3.138
1122 ➡ 1129 (vironment. If)-.4 F F1<ad61>3.138 E F0 .638
1123 ➡ 1130 (is supplied, the shell passes)3.138 F F2(name)3.499 E F0 .639(as the)
1124
-
No equivalent source code line in the reference code can be identified.
-3.319 F 1.078(zeroth ar)144 213.6 R 1.077(gument to the e)-.18 F -.15
1131
-
+3.319 F 1.078(zeroth ar)144 249.6 R 1.077(gument to the e)-.18 F -.15
1125 ➡ 1132 (xe)-.15 G 1.077(cuted command.).15 F(If)6.077 E F2(command)3.777 E F0
1126 ➡ 1133 1.077(cannot be e)4.347 F -.15(xe)-.15 G 1.077(cuted for some reason, a)
1127
-
No equivalent source code line in the reference code can be identified.
-.15 F(non-interacti)144 225.6 Q .876 -.15(ve s)-.25 H .576(hell e).15 F
1134
-
+.15 F(non-interacti)144 261.6 Q .876 -.15(ve s)-.25 H .576(hell e).15 F
1128 ➡ 1135 .576(xits, unless the)-.15 F F1(execfail)3.076 E F0 .577
1129 ➡ 1136 (shell option is enabled.)3.077 F .577(In that case, it returns f)5.577
1130
-
No equivalent source code line in the reference code can be identified.
-F(ail-)-.1 E 3.32(ure. An)144 237.6 R(interacti)3.32 E 1.12 -.15(ve s)
1137
-
+F(ail-)-.1 E 3.32(ure. An)144 273.6 R(interacti)3.32 E 1.12 -.15(ve s)
1131 ➡ 1138 -.25 H .82(hell returns f).15 F .82(ailure if the \214le cannot be e)-.1
1132 ➡ 1139 F -.15(xe)-.15 G 3.32(cuted. A).15 F .82(subshell e)3.32 F .82
1133
-
No equivalent source code line in the reference code can be identified.
-(xits uncondi-)-.15 F .287(tionally if)144 249.6 R F1(exec)2.787 E F0
1140
-
+(xits uncondi-)-.15 F .287(tionally if)144 285.6 R F1(exec)2.787 E F0
1134 ➡ 1141 -.1(fa)2.787 G 2.787(ils. If).1 F F2(command)2.987 E F0 .287
1135 ➡ 1142 (is not speci\214ed, an)3.557 F 2.788(yr)-.15 G .288(edirections tak)
1136 ➡ 1143 -2.788 F 2.788(ee)-.1 G -.25(ff)-2.788 G .288(ect in the current shell,)
1137
-
No equivalent source code line in the reference code can be identified.
-.25 F(and the return status is 0.)144 261.6 Q
1144
-
+.25 F(and the return status is 0.)144 297.6 Q
1138 ➡ 1145 (If there is a redirection error)5 E 2.5(,t)-.4 G
1139
-
No equivalent source code line in the reference code can be identified.
-(he return status is 1.)-2.5 E F1(exit)108 278.4 Q F0([)2.5 E F2(n)A F0
1140
-
No equivalent source code line in the reference code can be identified.
-(])A .096(Cause the shell to e)144 278.4 R .096(xit with a status of)
1146
-
+(he return status is 1.)-2.5 E F1(exit)108 314.4 Q F0([)2.5 E F2(n)A F0
1147
-
+(])A .096(Cause the shell to e)144 314.4 R .096(xit with a status of)
1141 ➡ 1148 -.15 F F2(n)2.596 E F0 5.096(.I)C(f)-5.096 E F2(n)2.955 E F0 .095
1142 ➡ 1149 (is omitted, the e)2.835 F .095(xit status is that of the last command)
1143
-
No equivalent source code line in the reference code can be identified.
--.15 F -.15(exe)144 290.4 S 2.5(cuted. A).15 F(trap on)2.5 E/F3 9
1150
-
+-.15 F -.15(exe)144 326.4 S 2.5(cuted. A).15 F(trap on)2.5 E/F3 9
1144 ➡ 1151 /Times-Bold@0 SF(EXIT)2.5 E F0(is e)2.25 E -.15(xe)-.15 G
1145
-
No equivalent source code line in the reference code can be identified.
-(cuted before the shell terminates.).15 E F1(export)108 307.2 Q F0([)2.5
1152
-
+(cuted before the shell terminates.).15 E F1(export)108 343.2 Q F0([)2.5
1146 ➡ 1153 E F1(\255fn)A F0 2.5(][).833 G F2(name)-2.5 E F0([=)A F2(wor)A(d)-.37 E
1147
-
No equivalent source code line in the reference code can be identified.
-F0(]] ...)A F1(export \255p)108 319.2 Q F0 .256(The supplied)144 331.2 R
1154
-
+F0(]] ...)A F1(export \255p)108 355.2 Q F0 .256(The supplied)144 367.2 R
1148 ➡ 1155 F2(names)3.117 E F0 .257(are mark)3.027 F .257(ed for automatic e)-.1 F
1149 ➡ 1156 .257(xport to the en)-.15 F .257(vironment of subsequently e)-.4 F -.15
1150
-
No equivalent source code line in the reference code can be identified.
-(xe)-.15 G(cuted).15 E 2.627(commands. If)144 343.2 R(the)2.627 E F1
1157
-
+(xe)-.15 G(cuted).15 E 2.627(commands. If)144 379.2 R(the)2.627 E F1
1151 ➡ 1158 <ad66>2.627 E F0 .127(option is gi)2.627 F -.15(ve)-.25 G .127(n, the)
1152 ➡ 1159 .15 F F2(names)2.987 E F0 .127(refer to functions.)2.897 F .127(If no)
1153 ➡ 1160 5.127 F F2(names)2.987 E F0 .127(are gi)2.897 F -.15(ve)-.25 G .126
1154
-
No equivalent source code line in the reference code can be identified.
-(n, or if the).15 F F1<ad70>144 355.2 Q F0 .048
1161
-
+(n, or if the).15 F F1<ad70>144 391.2 Q F0 .048
1155 ➡ 1162 (option is supplied, a list of names of all e)2.547 F .048(xported v)
1156 ➡ 1163 -.15 F .048(ariables is printed.)-.25 F(The)5.048 E F1<ad6e>2.548 E F0
1157
-
No equivalent source code line in the reference code can be identified.
-.048(option causes the)2.548 F -.15(ex)144 367.2 S 1.447
1164
-
+.048(option causes the)2.548 F -.15(ex)144 403.2 S 1.447
1158 ➡ 1165 (port property to be remo).15 F -.15(ve)-.15 G 3.947(df).15 G 1.447
1159 ➡ 1166 (rom each)-3.947 F F2(name)3.947 E F0 6.447(.I)C 3.947(fav)-6.447 G
1160 ➡ 1167 1.447(ariable name is follo)-4.197 F 1.447(wed by =)-.25 F F2(wor)A(d)
1161
-
No equivalent source code line in the reference code can be identified.
--.37 E F0 3.946(,t)C(he)-3.946 E -.25(va)144 379.2 S .741(lue of the v)
1168
-
+-.37 E F0 3.946(,t)C(he)-3.946 E -.25(va)144 415.2 S .741(lue of the v)
1162 ➡ 1169 .25 F .741(ariable is set to)-.25 F F2(wor)3.241 E(d)-.37 E F0(.)A F1
1163 ➡ 1170 (export)5.741 E F0 .742(returns an e)3.242 F .742
1164 ➡ 1171 (xit status of 0 unless an in)-.15 F -.25(va)-.4 G .742(lid option is)
1165
-
No equivalent source code line in the reference code can be identified.
-.25 F .032(encountered, one of the)144 391.2 R F2(names)2.532 E F0 .032
1172
-
+.25 F .032(encountered, one of the)144 427.2 R F2(names)2.532 E F0 .032
1166 ➡ 1173 (is not a v)2.532 F .032(alid shell v)-.25 F .032(ariable name, or)-.25
1167 ➡ 1174 F F1<ad66>2.531 E F0 .031(is supplied with a)2.531 F F2(name)2.891 E F0
1168
-
No equivalent source code line in the reference code can be identified.
-(that)2.711 E(is not a function.)144 403.2 Q F1(fc)108 420 Q F0([)2.5 E
1175
-
+(that)2.711 E(is not a function.)144 439.2 Q F1(fc)108 456 Q F0([)2.5 E
1169 ➡ 1176 F1<ad65>A F2(ename)2.5 E F0 2.5(][)C F1(\255lnr)-2.5 E F0 2.5(][)C F2
1170 ➡ 1177 <8c72>-2.5 E(st)-.1 E F0 2.5(][)C F2(last)-2.5 E F0(])A F1(fc \255s)108
1171
-
No equivalent source code line in the reference code can be identified.
-432 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2
1178
-
+468 Q F0([)2.5 E F2(pat)A F0(=)A F2 -.37(re)C(p).37 E F0 2.5(][)C F2
1172 ➡ 1179 (cmd)-2.5 E F0(])A .431
1173
-
No equivalent source code line in the reference code can be identified.
-(The \214rst form selects a range of commands from)144 444 R F2<8c72>
1180
-
+(The \214rst form selects a range of commands from)144 480 R F2<8c72>
1174 ➡ 1181 4.842 E(st)-.1 E F0(to)3.612 E F2(last)3.022 E F0 .432
1175 ➡ 1182 (from the history list and displays or)3.612 F .142(edits and re-e)144
1176
-
No equivalent source code line in the reference code can be identified.
-456 R -.15(xe)-.15 G .142(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs)
1183
-
+492 R -.15(xe)-.15 G .142(cutes them.).15 F F2 -.45(Fi)5.141 G -.1(rs)
1177 ➡ 1184 .45 G(t).1 E F0(and)3.321 E F2(last)2.731 E F0 .141
1178 ➡ 1185 (may be speci\214ed as a string \(to locate the last command)3.321 F(be)
1179
-
No equivalent source code line in the reference code can be identified.
-144 468 Q .31(ginning with that string\) or as a number \(an inde)-.15 F
1186
-
+144 504 Q .31(ginning with that string\) or as a number \(an inde)-.15 F
1180 ➡ 1187 2.811(xi)-.15 G .311(nto the history list, where a ne)-2.811 F -.05(ga)
1181 ➡ 1188 -.15 G(ti).05 E .611 -.15(ve n)-.25 H(umber).15 E .19(is used as an of)
1182
-
No equivalent source code line in the reference code can be identified.
-144 480 R .19(fset from the current command number\).)-.25 F(If)5.19 E
1189
-
+144 516 R .19(fset from the current command number\).)-.25 F(If)5.19 E
1183 ➡ 1190 F2(last)2.779 E F0 .189(is not speci\214ed, it is set to the cur)3.369 F
1184
-
No equivalent source code line in the reference code can be identified.
-(-)-.2 E .948(rent command for listing \(so that)144 492 R/F4 10
1191
-
+(-)-.2 E .948(rent command for listing \(so that)144 528 R/F4 10
1185 ➡ 1192 /Courier@0 SF .948(fc \255l \25510)3.448 F F0 .948
1186 ➡ 1193 (prints the last 10 commands\) and to)3.448 F F2<8c72>5.359 E(st)-.1 E
1187
-
No equivalent source code line in the reference code can be identified.
-F0(other)4.129 E(-)-.2 E 2.5(wise. If)144 504 R F2<8c72>4.41 E(st)-.1 E
1194
-
+F0(other)4.129 E(-)-.2 E 2.5(wise. If)144 540 R F2<8c72>4.41 E(st)-.1 E
1188 ➡ 1195 F0(is not speci\214ed, it is set to the pre)3.18 E
1189
-
No equivalent source code line in the reference code can be identified.
-(vious command for editing and \25516 for listing.)-.25 E(The)144 528 Q
1196
-
+(vious command for editing and \25516 for listing.)-.25 E(The)144 564 Q
1190 ➡ 1197 F1<ad6e>2.522 E F0 .022
1191 ➡ 1198 (option suppresses the command numbers when listing.)2.522 F(The)5.022 E
1192 ➡ 1199 F1<ad72>2.522 E F0 .022(option re)2.522 F -.15(ve)-.25 G .022
1193
-
No equivalent source code line in the reference code can be identified.
-(rses the order of).15 F .438(the commands.)144 540 R .438(If the)5.438
1200
-
+(rses the order of).15 F .438(the commands.)144 576 R .438(If the)5.438
1194 ➡ 1201 F F1<ad6c>2.938 E F0 .438(option is gi)2.938 F -.15(ve)-.25 G .438
1195 ➡ 1202 (n, the commands are listed on standard output.).15 F(Otherwise,)5.438 E
1196
-
No equivalent source code line in the reference code can be identified.
-.335(the editor gi)144 552 R -.15(ve)-.25 G 2.835(nb).15 G(y)-2.835 E F2
1203
-
+.335(the editor gi)144 588 R -.15(ve)-.25 G 2.835(nb).15 G(y)-2.835 E F2
1197 ➡ 1204 (ename)3.025 E F0 .335(is in)3.015 F -.2(vo)-.4 G -.1(ke).2 G 2.835(do)
1198 ➡ 1205 .1 G 2.835(na\214)-2.835 G .335(le containing those commands.)-2.835 F
1199 ➡ 1206 (If)5.334 E F2(ename)3.024 E F0 .334(is not gi)3.014 F -.15(ve)-.25 G
1200
-
No equivalent source code line in the reference code can be identified.
-(n,).15 E .63(the v)144 564 R .63(alue of the)-.25 F F3(FCEDIT)3.13 E F0
1207
-
+(n,).15 E .63(the v)144 600 R .63(alue of the)-.25 F F3(FCEDIT)3.13 E F0
1201 ➡ 1208 -.25(va)2.88 G .631(riable is used, and the v).25 F .631(alue of)-.25 F
1202 ➡ 1209 F3(EDIT)3.131 E(OR)-.162 E F0(if)2.881 E F3(FCEDIT)3.131 E F0 .631
1203
-
No equivalent source code line in the reference code can be identified.
-(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144 576 R .951
1210
-
+(is not set.)2.881 F .631(If nei-)5.631 F .951(ther v)144 612 R .951
1204 ➡ 1211 (ariable is set,)-.25 F F2(vi)5.117 E F0 .951(is used.)5.117 F .95
1205 ➡ 1212 (When editing is complete, the edited commands are echoed and)5.951 F
1206
-
No equivalent source code line in the reference code can be identified.
--.15(exe)144 588 S(cuted.).15 E .788(In the second form,)144 612 R F2
1213
-
+-.15(exe)144 624 S(cuted.).15 E .788(In the second form,)144 648 R F2
1207 ➡ 1214 (command)3.288 E F0 .788(is re-e)3.288 F -.15(xe)-.15 G .788
1208 ➡ 1215 (cuted after each instance of).15 F F2(pat)3.288 E F0 .788
1209 ➡ 1216 (is replaced by)3.288 F F2 -.37(re)3.289 G(p).37 E F0(.)A F2(Com-)5.789
1210
-
No equivalent source code line in the reference code can be identified.
-E(mand)144 624 Q F0 .172(is interpreted the same as)2.672 F F2<8c72>
1217
-
+E(mand)144 660 Q F0 .172(is interpreted the same as)2.672 F F2<8c72>
1211 ➡ 1218 2.672 E(st)-.1 E F0(abo)2.672 E -.15(ve)-.15 G 5.172(.A).15 G .171
1212 ➡ 1219 (useful alias to use with this is)-2.5 F F4 .171(r='fc \255s')2.671 F F0
1213
-
No equivalent source code line in the reference code can be identified.
-2.671(,s)C 2.671(ot)-2.671 G(hat)-2.671 E(typing)144 636 Q F4 7.165(rc)
1220
-
+2.671(,s)C 2.671(ot)-2.671 G(hat)-2.671 E(typing)144 672 Q F4 7.165(rc)
1214 ➡ 1221 3.665 G(c)-7.165 E F0 1.165(runs the last command be)3.665 F 1.166
1215 ➡ 1222 (ginning with)-.15 F F4(cc)3.666 E F0 1.166(and typing)3.666 F F4(r)
1216 ➡ 1223 3.666 E F0(re-e)3.666 E -.15(xe)-.15 G 1.166(cutes the last com-).15 F
1217
-
No equivalent source code line in the reference code can be identified.
-(mand.)144 648 Q .142(If the \214rst form is used, the return v)144 672
1224
-
+(mand.)144 684 Q .142(If the \214rst form is used, the return v)144 708
1218 ➡ 1225 R .142(alue is 0 unless an in)-.25 F -.25(va)-.4 G .142
1219 ➡ 1226 (lid option is encountered or).25 F F2<8c72>4.552 E(st)-.1 E F0(or)3.322
1220
-
No equivalent source code line in the reference code can be identified.
-E F2(last)2.732 E F0 .454(specify history lines out of range.)144 684 R
1227
-
+E F2(last)2.732 E F0 .454(specify history lines out of range.)144 720 R
1221 ➡ 1228 .454(If the)5.454 F F1<ad65>2.954 E F0 .454
1222 ➡ 1229 (option is supplied, the return v)2.954 F .455(alue is the v)-.25 F .455
1223
-
No equivalent source code line in the reference code can be identified.
-(alue of the)-.25 F .788(last command e)144 696 R -.15(xe)-.15 G .788
1224
-
No equivalent source code line in the reference code can be identified.
-(cuted or f).15 F .787
1225
-
No equivalent source code line in the reference code can be identified.
-(ailure if an error occurs with the temporary \214le of commands.)-.1 F
1226
-
No equivalent source code line in the reference code can be identified.
-.787(If the)5.787 F 1.135
1227
-
No equivalent source code line in the reference code can be identified.
-(second form is used, the return status is that of the command re-e)144
1228
-
No equivalent source code line in the reference code can be identified.
-708 R -.15(xe)-.15 G 1.136(cuted, unless).15 F F2(cmd)3.836 E F0 1.136
1229
-
No equivalent source code line in the reference code can be identified.
-(does not)4.406 F(specify a v)144 720 Q
1230
-
No equivalent source code line in the reference code can be identified.
-(alid history line, in which case)-.25 E F1(fc)2.5 E F0(returns f)2.5 E
1231
-
No equivalent source code line in the reference code can be identified.
-(ailure.)-.1 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(8)203.725 E 0
1232
-
No equivalent source code line in the reference code can be identified.
-Cg EP
1230
-
+(alue of the)-.25 F(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(8)
1231
-
+203.725 E 0 Cg EP
1233 ➡ 1232 %%Page: 9 9
1234 ➡ 1233 %%BeginPageSetup
1235 ➡ 1234 BP
1236 ➡ 1235 %%EndPageSetup
1237 ➡ 1236 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1238 ➡ 1237 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1239
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(fg)108 84 Q F0([)2.5
1240
-
No equivalent source code line in the reference code can be identified.
-E/F2 10/Times-Italic@0 SF(jobspec)A F0(])A(Resume)144 96 Q F2(jobspec)
1241
-
No equivalent source code line in the reference code can be identified.
-5.654 E F0 1.413(in the fore)4.224 F 1.413(ground, and mak)-.15 F 3.913
1242
-
No equivalent source code line in the reference code can be identified.
-(ei)-.1 G 3.913(tt)-3.913 G 1.413(he current job)-3.913 F 6.413(.I)-.4 G
1243
-
No equivalent source code line in the reference code can be identified.
-(f)-6.413 E F2(jobspec)5.653 E F0 1.413(is not present, the)4.223 F
1244
-
No equivalent source code line in the reference code can be identified.
-(shell')144 108 Q 3.116(sn)-.55 G .616(otion of the)-3.116 F F2(curr)
1245
-
No equivalent source code line in the reference code can be identified.
-3.116 E .616(ent job)-.37 F F0 .617(is used.)3.116 F .617(The return v)
1246
-
No equivalent source code line in the reference code can be identified.
-5.617 F .617(alue is that of the command placed into the)-.25 F(fore)144
1247
-
No equivalent source code line in the reference code can be identified.
-120 Q .363(ground, or f)-.15 F .363
1238
-
+E(UIL)-.1 E(TINS\(1\))-.92 E .788(last command e)144 84 R -.15(xe)-.15 G
1239
-
+.788(cuted or f).15 F .787
1240
-
+(ailure if an error occurs with the temporary \214le of commands.)-.1 F
1241
-
+.787(If the)5.787 F 1.135
1242
-
+(second form is used, the return status is that of the command re-e)144
1243
-
+96 R -.15(xe)-.15 G 1.136(cuted, unless).15 F/F1 10/Times-Italic@0 SF
1244
-
+(cmd)3.836 E F0 1.136(does not)4.406 F(specify a v)144 108 Q
1245
-
+(alid history line, in which case)-.25 E/F2 10/Times-Bold@0 SF(fc)2.5 E
1246
-
+F0(returns f)2.5 E(ailure.)-.1 E F2(fg)108 124.8 Q F0([)2.5 E F1
1247
-
+(jobspec)A F0(])A(Resume)144 136.8 Q F1(jobspec)5.654 E F0 1.413
1248
-
+(in the fore)4.224 F 1.413(ground, and mak)-.15 F 3.913(ei)-.1 G 3.913
1249
-
+(tt)-3.913 G 1.413(he current job)-3.913 F 6.413(.I)-.4 G(f)-6.413 E F1
1250
-
+(jobspec)5.653 E F0 1.413(is not present, the)4.223 F(shell')144 148.8 Q
1251
-
+3.116(sn)-.55 G .616(otion of the)-3.116 F F1(curr)3.116 E .616(ent job)
1252
-
+-.37 F F0 .617(is used.)3.116 F .617(The return v)5.617 F .617
1253
-
+(alue is that of the command placed into the)-.25 F(fore)144 160.8 Q
1254
-
+.363(ground, or f)-.15 F .363
1248 ➡ 1255 (ailure if run when job control is disabled or)-.1 F 2.862(,w)-.4 G .362
1249
-
No equivalent source code line in the reference code can be identified.
-(hen run with job control enabled, if)-2.862 F F2(jobspec)145.74 132 Q
1250
-
No equivalent source code line in the reference code can be identified.
-F0(does not specify a v)2.81 E(alid job or)-.25 E F2(jobspec)4.24 E F0
1256
-
+(hen run with job control enabled, if)-2.862 F F1(jobspec)145.74 172.8 Q
1257
-
+F0(does not specify a v)2.81 E(alid job or)-.25 E F1(jobspec)4.24 E F0
1251 ➡ 1258 (speci\214es a job that w)2.81 E(as started without job control.)-.1 E
1252
-
No equivalent source code line in the reference code can be identified.
-F1(getopts)108 148.8 Q F2(optstring name)2.5 E F0([)2.5 E F2(ar)A(gs)
1253
-
No equivalent source code line in the reference code can be identified.
--.37 E F0(])A F1(getopts)144 160.8 Q F0 .793
1254
-
No equivalent source code line in the reference code can be identified.
-(is used by shell procedures to parse positional parameters.)3.293 F F2
1259
-
+F2(getopts)108 189.6 Q F1(optstring name)2.5 E F0([)2.5 E F1(ar)A(gs)
1260
-
+-.37 E F0(])A F2(getopts)144 201.6 Q F0 .793
1261
-
+(is used by shell procedures to parse positional parameters.)3.293 F F1
1255 ➡ 1262 (optstring)6.023 E F0 .793(contains the option)3.513 F .15
1256
-
No equivalent source code line in the reference code can be identified.
-(characters to be recognized; if a character is follo)144 172.8 R .149
1263
-
+(characters to be recognized; if a character is follo)144 213.6 R .149
1257 ➡ 1264 (wed by a colon, the option is e)-.25 F .149(xpected to ha)-.15 F .449
1258
-
No equivalent source code line in the reference code can be identified.
--.15(ve a)-.2 H(n).15 E(ar)144 184.8 Q .578
1265
-
+-.15(ve a)-.2 H(n).15 E(ar)144 225.6 Q .578
1259 ➡ 1266 (gument, which should be separated from it by white space.)-.18 F .579
1260 ➡ 1267 (The colon and question mark char)5.579 F(-)-.2 E 1.665
1261
-
No equivalent source code line in the reference code can be identified.
-(acters may not be used as option characters.)144 196.8 R 1.665
1262
-
No equivalent source code line in the reference code can be identified.
-(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F1(getopts)
1268
-
+(acters may not be used as option characters.)144 237.6 R 1.665
1269
-
+(Each time it is in)6.665 F -.2(vo)-.4 G -.1(ke).2 G(d,).1 E F2(getopts)
1263 ➡ 1270 4.165 E F0 1.665(places the ne)4.165 F(xt)-.15 E .796
1264
-
No equivalent source code line in the reference code can be identified.
-(option in the shell v)144 208.8 R(ariable)-.25 E F2(name)3.296 E F0
1265
-
No equivalent source code line in the reference code can be identified.
-3.296(,i).18 G(nitializing)-3.296 E F2(name)3.657 E F0 .797
1271
-
+(option in the shell v)144 249.6 R(ariable)-.25 E F1(name)3.296 E F0
1272
-
+3.296(,i).18 G(nitializing)-3.296 E F1(name)3.657 E F0 .797
1266 ➡ 1273 (if it does not e)3.477 F .797(xist, and the inde)-.15 F 3.297(xo)-.15 G
1267
-
No equivalent source code line in the reference code can be identified.
-3.297(ft)-3.297 G .797(he ne)-3.297 F(xt)-.15 E(ar)144 220.8 Q .085
1274
-
+3.297(ft)-3.297 G .797(he ne)-3.297 F(xt)-.15 E(ar)144 261.6 Q .085
1268 ➡ 1275 (gument to be processed into the v)-.18 F(ariable)-.25 E/F3 9
1269 ➡ 1276 /Times-Bold@0 SF(OPTIND)2.585 E/F4 9/Times-Roman@0 SF(.)A F3(OPTIND)
1270 ➡ 1277 4.585 E F0 .085(is initialized to 1 each time the shell)2.335 F .845
1271
-
No equivalent source code line in the reference code can be identified.
-(or a shell script is in)144 232.8 R -.2(vo)-.4 G -.1(ke).2 G 3.345
1272
-
No equivalent source code line in the reference code can be identified.
-(d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F1
1278
-
+(or a shell script is in)144 273.6 R -.2(vo)-.4 G -.1(ke).2 G 3.345
1279
-
+(d. When).1 F .845(an option requires an ar)3.345 F(gument,)-.18 E F2
1273 ➡ 1280 (getopts)3.346 E F0 .846(places that ar)3.346 F(gument)-.18 E .804
1274
-
No equivalent source code line in the reference code can be identified.
-(into the v)144 244.8 R(ariable)-.25 E F3(OPT)3.304 E(ARG)-.81 E F4(.)A
1281
-
+(into the v)144 285.6 R(ariable)-.25 E F3(OPT)3.304 E(ARG)-.81 E F4(.)A
1275 ➡ 1282 F0 .803(The shell does not reset)5.304 F F3(OPTIND)3.303 E F0 .803
1276 ➡ 1283 (automatically; it must be manually)3.053 F .293
1277
-
No equivalent source code line in the reference code can be identified.
-(reset between multiple calls to)144 256.8 R F1(getopts)2.793 E F0 .293
1284
-
+(reset between multiple calls to)144 297.6 R F2(getopts)2.793 E F0 .293
1278 ➡ 1285 (within the same shell in)2.793 F -.2(vo)-.4 G .293(cation if a ne).2 F
1279
-
No equivalent source code line in the reference code can be identified.
-2.793(ws)-.25 G .294(et of parameters)-2.793 F(is to be used.)144 268.8
1280
-
No equivalent source code line in the reference code can be identified.
-Q 2.044(When the end of options is encountered,)144 292.8 R F1(getopts)
1286
-
+2.793(ws)-.25 G .294(et of parameters)-2.793 F(is to be used.)144 309.6
1287
-
+Q 2.044(When the end of options is encountered,)144 333.6 R F2(getopts)
1281 ➡ 1288 4.543 E F0 -.15(ex)4.543 G 2.043(its with a return v).15 F 2.043
1282
-
No equivalent source code line in the reference code can be identified.
-(alue greater than zero.)-.25 F F3(OPTIND)144 304.8 Q F0
1289
-
+(alue greater than zero.)-.25 F F3(OPTIND)144 345.6 Q F0
1283 ➡ 1290 (is set to the inde)2.25 E 2.5(xo)-.15 G 2.5(ft)-2.5 G
1284
-
No equivalent source code line in the reference code can be identified.
-(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F2(name)2.5 E F0
1285
-
No equivalent source code line in the reference code can be identified.
-(is set to ?.)2.5 E F1(getopts)144 328.8 Q F0 2.392
1291
-
+(he \214rst non-option ar)-2.5 E(gument, and)-.18 E F1(name)2.5 E F0
1292
-
+(is set to ?.)2.5 E F2(getopts)144 369.6 Q F0 2.392
1286 ➡ 1293 (normally parses the positional parameters, b)4.892 F 2.392
1287 ➡ 1294 (ut if more ar)-.2 F 2.393(guments are gi)-.18 F -.15(ve)-.25 G 4.893
1288
-
No equivalent source code line in the reference code can be identified.
-(ni).15 G(n)-4.893 E F2(ar)4.893 E(gs)-.37 E F0(,).27 E F1(getopts)144
1289
-
No equivalent source code line in the reference code can be identified.
-340.8 Q F0(parses those instead.)2.5 E F1(getopts)144 364.8 Q F0 1.166
1295
-
+(ni).15 G(n)-4.893 E F1(ar)4.893 E(gs)-.37 E F0(,).27 E F2(getopts)144
1296
-
+381.6 Q F0(parses those instead.)2.5 E F2(getopts)144 405.6 Q F0 1.166
1290 ➡ 1297 (can report errors in tw)3.666 F 3.665(ow)-.1 G 3.665(ays. If)-3.765 F
1291
-
No equivalent source code line in the reference code can be identified.
-1.165(the \214rst character of)3.665 F F2(optstring)3.895 E F0 1.165
1292
-
No equivalent source code line in the reference code can be identified.
-(is a colon,)3.885 F F2(silent)4.005 E F0(error)4.345 E 1.07
1293
-
No equivalent source code line in the reference code can be identified.
-(reporting is used.)144 376.8 R 1.071
1298
-
+1.165(the \214rst character of)3.665 F F1(optstring)3.895 E F0 1.165
1299
-
+(is a colon,)3.885 F F1(silent)4.005 E F0(error)4.345 E 1.07
1300
-
+(reporting is used.)144 417.6 R 1.071
1294 ➡ 1301 (In normal operation, diagnostic messages are printed when in)6.07 F
1295 ➡ 1302 -.25(va)-.4 G 1.071(lid options or).25 F .394(missing option ar)144
1296
-
No equivalent source code line in the reference code can be identified.
-388.8 R .394(guments are encountered.)-.18 F .394(If the v)5.394 F
1303
-
+429.6 R .394(guments are encountered.)-.18 F .394(If the v)5.394 F
1297 ➡ 1304 (ariable)-.25 E F3(OPTERR)2.894 E F0 .394
1298
-
No equivalent source code line in the reference code can be identified.
-(is set to 0, no error messages)2.644 F(will be displayed, e)144 400.8 Q
1305
-
+(is set to 0, no error messages)2.644 F(will be displayed, e)144 441.6 Q
1299 ➡ 1306 -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he \214rst character of)-2.5 E
1300
-
No equivalent source code line in the reference code can be identified.
-F2(optstring)2.73 E F0(is not a colon.)2.72 E .666(If an in)144 424.8 R
1301
-
No equivalent source code line in the reference code can be identified.
--.25(va)-.4 G .666(lid option is seen,).25 F F1(getopts)3.166 E F0 .667
1302
-
No equivalent source code line in the reference code can be identified.
-(places ? into)3.167 F F2(name)3.527 E F0 .667
1307
-
+F1(optstring)2.73 E F0(is not a colon.)2.72 E .666(If an in)144 465.6 R
1308
-
+-.25(va)-.4 G .666(lid option is seen,).25 F F2(getopts)3.166 E F0 .667
1309
-
+(places ? into)3.167 F F1(name)3.527 E F0 .667
1303 ➡ 1310 (and, if not silent, prints an error message)3.347 F .4(and unsets)144
1304
-
No equivalent source code line in the reference code can be identified.
-436.8 R F3(OPT)2.9 E(ARG)-.81 E F4(.)A F0(If)4.899 E F1(getopts)2.899 E
1311
-
+477.6 R F3(OPT)2.9 E(ARG)-.81 E F4(.)A F0(If)4.899 E F2(getopts)2.899 E
1305 ➡ 1312 F0 .399(is silent, the option character found is placed in)2.899 F F3
1306 ➡ 1313 (OPT)2.899 E(ARG)-.81 E F0 .399(and no)2.649 F
1307
-
No equivalent source code line in the reference code can be identified.
-(diagnostic message is printed.)144 448.8 Q 1.241(If a required ar)144
1308
-
No equivalent source code line in the reference code can be identified.
-472.8 R 1.241(gument is not found, and)-.18 F F1(getopts)3.741 E F0
1309
-
No equivalent source code line in the reference code can be identified.
-1.241(is not silent, a question mark \()3.741 F F1(?).833 E F0 3.742
1310
-
No equivalent source code line in the reference code can be identified.
-(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F2(name)144 484.8
1314
-
+(diagnostic message is printed.)144 489.6 Q 1.241(If a required ar)144
1315
-
+513.6 R 1.241(gument is not found, and)-.18 F F2(getopts)3.741 E F0
1316
-
+1.241(is not silent, a question mark \()3.741 F F2(?).833 E F0 3.742
1317
-
+(\)i).833 G 3.742(sp)-3.742 G 1.242(laced in)-3.742 F F1(name)144 525.6
1311 ➡ 1318 Q F0(,).18 E F3(OPT)2.735 E(ARG)-.81 E F0 .234
1312
-
No equivalent source code line in the reference code can be identified.
-(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E F1
1313
-
No equivalent source code line in the reference code can be identified.
-(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F1(:).833 E
1314
-
No equivalent source code line in the reference code can be identified.
-F0(\)).833 E(is placed in)144 496.8 Q F2(name)2.86 E F0(and)2.68 E F3
1315
-
No equivalent source code line in the reference code can be identified.
-(OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F1
1316
-
No equivalent source code line in the reference code can be identified.
-(getopts)144 520.8 Q F0 .902
1319
-
+(is unset, and a diagnostic message is printed.)2.485 F(If)5.234 E F2
1320
-
+(getopts)2.734 E F0 .234(is silent, then a colon \()2.734 F F2(:).833 E
1321
-
+F0(\)).833 E(is placed in)144 537.6 Q F1(name)2.86 E F0(and)2.68 E F3
1322
-
+(OPT)2.5 E(ARG)-.81 E F0(is set to the option character found.)2.25 E F2
1323
-
+(getopts)144 561.6 Q F0 .902
1317 ➡ 1324 (returns true if an option, speci\214ed or unspeci\214ed, is found.)
1318 ➡ 1325 3.401 F .902(It returns f)5.902 F .902(alse if the end of)-.1 F
1319
-
No equivalent source code line in the reference code can be identified.
-(options is encountered or an error occurs.)144 532.8 Q F1(hash)108
1320
-
No equivalent source code line in the reference code can be identified.
-549.6 Q F0([)2.5 E F1(\255lr)A F0 2.5(][)C F1<ad70>-2.5 E F2(\214lename)
1321
-
No equivalent source code line in the reference code can be identified.
-2.5 E F0 2.5(][)C F1(\255dt)-2.5 E F0 2.5(][)C F2(name)-2.5 E F0(])A
1322
-
No equivalent source code line in the reference code can be identified.
-.858(Each time)144 561.6 R F1(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)
1323
-
No equivalent source code line in the reference code can be identified.
--.4 G -.1(ke).2 G .858(d, the full pathname of the command).1 F F2(name)
1326
-
+(options is encountered or an error occurs.)144 573.6 Q F2(hash)108
1327
-
+590.4 Q F0([)2.5 E F2(\255lr)A F0 2.5(][)C F2<ad70>-2.5 E F1(\214lename)
1328
-
+2.5 E F0 2.5(][)C F2(\255dt)-2.5 E F0 2.5(][)C F1(name)-2.5 E F0(])A
1329
-
+.858(Each time)144 602.4 R F2(hash)3.358 E F0 .858(is in)3.358 F -.2(vo)
1330
-
+-.4 G -.1(ke).2 G .858(d, the full pathname of the command).1 F F1(name)
1324 ➡ 1331 3.718 E F0 .858(is determined by searching)3.538 F .956
1325
-
No equivalent source code line in the reference code can be identified.
-(the directories in)144 573.6 R F1($P)3.456 E -.95(AT)-.74 G(H).95 E F0
1332
-
+(the directories in)144 614.4 R F2($P)3.456 E -.95(AT)-.74 G(H).95 E F0
1326 ➡ 1333 .956(and remembered.)3.456 F(An)5.956 E 3.456(yp)-.15 G(re)-3.456 E .956
1327
-
No equivalent source code line in the reference code can be identified.
-(viously-remembered pathname is discarded.)-.25 F .243(If the)144 585.6
1328
-
No equivalent source code line in the reference code can be identified.
-R F1<ad70>2.743 E F0 .243
1329
-
No equivalent source code line in the reference code can be identified.
-(option is supplied, no path search is performed, and)2.743 F F2
1334
-
+(viously-remembered pathname is discarded.)-.25 F .243(If the)144 626.4
1335
-
+R F2<ad70>2.743 E F0 .243
1336
-
+(option is supplied, no path search is performed, and)2.743 F F1
1330 ➡ 1337 (\214lename)4.653 E F0 .242(is used as the full \214lename)2.923 F 1.711
1331
-
No equivalent source code line in the reference code can be identified.
-(of the command.)144 597.6 R(The)6.711 E F1<ad72>4.211 E F0 1.711
1338
-
+(of the command.)144 638.4 R(The)6.711 E F2<ad72>4.211 E F0 1.711
1332 ➡ 1339 (option causes the shell to for)4.211 F 1.712
1333
-
No equivalent source code line in the reference code can be identified.
-(get all remembered locations.)-.18 F(The)6.712 E F1<ad64>4.212 E F0
1334
-
No equivalent source code line in the reference code can be identified.
-.833(option causes the shell to for)144 609.6 R .833
1335
-
No equivalent source code line in the reference code can be identified.
-(get the remembered location of each)-.18 F F2(name)3.333 E F0 5.833(.I)
1336
-
No equivalent source code line in the reference code can be identified.
-C 3.333(ft)-5.833 G(he)-3.333 E F1<ad74>3.333 E F0 .833(option is sup-)
1337
-
No equivalent source code line in the reference code can be identified.
-3.333 F .703(plied, the full pathname to which each)144 621.6 R F2(name)
1340
-
+(get all remembered locations.)-.18 F(The)6.712 E F2<ad64>4.212 E F0
1341
-
+.833(option causes the shell to for)144 650.4 R .833
1342
-
+(get the remembered location of each)-.18 F F1(name)3.333 E F0 5.833(.I)
1343
-
+C 3.333(ft)-5.833 G(he)-3.333 E F2<ad74>3.333 E F0 .833(option is sup-)
1344
-
+3.333 F .703(plied, the full pathname to which each)144 662.4 R F1(name)
1338 ➡ 1345 3.204 E F0 .704(corresponds is printed.)3.204 F .704(If multiple)5.704 F
1339
-
No equivalent source code line in the reference code can be identified.
-F2(name)3.204 E F0(ar)3.204 E(guments)-.18 E .795(are supplied with)144
1340
-
No equivalent source code line in the reference code can be identified.
-633.6 R F1<ad74>3.295 E F0 3.295(,t)C(he)-3.295 E F2(name)3.295 E F0
1341
-
No equivalent source code line in the reference code can be identified.
-.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F1
1346
-
+F1(name)3.204 E F0(ar)3.204 E(guments)-.18 E .795(are supplied with)144
1347
-
+674.4 R F2<ad74>3.295 E F0 3.295(,t)C(he)-3.295 E F1(name)3.295 E F0
1348
-
+.795(is printed before the hashed full pathname.)3.295 F(The)5.795 E F2
1342 ➡ 1349 <ad6c>3.295 E F0 .795(option causes)3.295 F .934
1343 ➡ 1350 (output to be displayed in a format that may be reused as input.)144
1344
-
No equivalent source code line in the reference code can be identified.
-645.6 R .934(If no ar)5.934 F .935(guments are gi)-.18 F -.15(ve)-.25 G
1345
-
No equivalent source code line in the reference code can be identified.
-.935(n, or if).15 F(only)144 657.6 Q F1<ad6c>2.822 E F0 .322
1351
-
+686.4 R .934(If no ar)5.934 F .935(guments are gi)-.18 F -.15(ve)-.25 G
1352
-
+.935(n, or if).15 F(only)144 698.4 Q F2<ad6c>2.822 E F0 .322
1346 ➡ 1353 (is supplied, information about remembered commands is printed.)2.822 F
1347
-
No equivalent source code line in the reference code can be identified.
-.321(The return status is true)5.321 F(unless a)144 669.6 Q F2(name)2.86
1354
-
+.321(The return status is true)5.321 F(unless a)144 710.4 Q F1(name)2.86
1348 ➡ 1355 E F0(is not found or an in)2.68 E -.25(va)-.4 G(lid option is supplied.)
1349
-
No equivalent source code line in the reference code can be identified.
-.25 E F1(help)108 686.4 Q F0([)2.5 E F1(\255dms)A F0 2.5(][)C F2
1350
-
No equivalent source code line in the reference code can be identified.
-(pattern)-2.5 E F0(])A .866(Display helpful information about b)144
1351
-
No equivalent source code line in the reference code can be identified.
-698.4 R .867(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0
1352
-
No equivalent source code line in the reference code can be identified.
-.867(is speci\214ed,)3.607 F F1(help)3.367 E F0(gi)3.367 E -.15(ve)-.25
1353
-
No equivalent source code line in the reference code can be identified.
-G 3.367(sd).15 G(etailed)-3.367 E .307(help on all commands matching)144
1354
-
No equivalent source code line in the reference code can be identified.
-710.4 R F2(pattern)2.807 E F0 2.807(;o).24 G .307
1355
-
No equivalent source code line in the reference code can be identified.
-(therwise help for all the b)-2.807 F .306
1356
-
No equivalent source code line in the reference code can be identified.
-(uiltins and shell control struc-)-.2 F(tures is printed.)144 722.4 Q
1357
-
No equivalent source code line in the reference code can be identified.
-(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(9)203.725 E 0 Cg EP
1356
-
+.25 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(9)203.725 E 0 Cg EP
1358 ➡ 1357 %%Page: 10 10
1359 ➡ 1358 %%BeginPageSetup
1360 ➡ 1359 BP
1361 ➡ 1360 %%EndPageSetup
1362 ➡ 1361 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1363 ➡ 1362 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1364
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad64>144 84 Q F0
1365
-
No equivalent source code line in the reference code can be identified.
-(Display a short description of each)180 84 Q/F2 10/Times-Italic@0 SF
1366
-
No equivalent source code line in the reference code can be identified.
-(pattern)2.5 E F1<ad6d>144 96 Q F0(Display the description of each)180
1367
-
No equivalent source code line in the reference code can be identified.
-96 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G(ormat)-2.5
1368
-
No equivalent source code line in the reference code can be identified.
-E F1<ad73>144 108 Q F0(Display only a short usage synopsis for each)180
1369
-
No equivalent source code line in the reference code can be identified.
-108 Q F2(pattern)2.5 E F0
1370
-
No equivalent source code line in the reference code can be identified.
-(The return status is 0 unless no command matches)144 124.8 Q F2
1371
-
No equivalent source code line in the reference code can be identified.
-(pattern)2.5 E F0(.).24 E F1(history [)108 141.6 Q F2(n)A F1(])A
1372
-
No equivalent source code line in the reference code can be identified.
-(history \255c)108 153.6 Q(history \255d)108 165.6 Q F2(of)2.5 E(fset)
1373
-
No equivalent source code line in the reference code can be identified.
--.18 E F1(history \255d)108 177.6 Q F2(start)2.5 E F0<ad>A F2(end)A F1
1374
-
No equivalent source code line in the reference code can be identified.
-(history \255anrw)108 189.6 Q F0([)2.5 E F2(\214lename)A F0(])A F1
1375
-
No equivalent source code line in the reference code can be identified.
-(history \255p)108 201.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5
1376
-
No equivalent source code line in the reference code can be identified.
-(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 213.6 Q F2(ar)2.5 E(g)
1363
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(help)108 84 Q F0([)
1364
-
+2.5 E F1(\255dms)A F0 2.5(][)C/F2 10/Times-Italic@0 SF(pattern)-2.5 E F0
1365
-
+(])A .866(Display helpful information about b)144 96 R .867
1366
-
+(uiltin commands.)-.2 F(If)5.867 E F2(pattern)4.617 E F0 .867
1367
-
+(is speci\214ed,)3.607 F F1(help)3.367 E F0(gi)3.367 E -.15(ve)-.25 G
1368
-
+3.367(sd).15 G(etailed)-3.367 E .307(help on all commands matching)144
1369
-
+108 R F2(pattern)2.807 E F0 2.807(;o).24 G .307
1370
-
+(therwise help for all the b)-2.807 F .306
1371
-
+(uiltins and shell control struc-)-.2 F(tures is printed.)144 120 Q F1
1372
-
+<ad64>144 132 Q F0(Display a short description of each)180 132 Q F2
1373
-
+(pattern)2.5 E F1<ad6d>144 144 Q F0(Display the description of each)180
1374
-
+144 Q F2(pattern)2.5 E F0(in a manpage-lik)2.5 E 2.5(ef)-.1 G(ormat)-2.5
1375
-
+E F1<ad73>144 156 Q F0(Display only a short usage synopsis for each)180
1376
-
+156 Q F2(pattern)2.5 E F0
1377
-
+(The return status is 0 unless no command matches)144 172.8 Q F2
1378
-
+(pattern)2.5 E F0(.).24 E F1(history [)108 189.6 Q F2(n)A F1(])A
1379
-
+(history \255c)108 201.6 Q(history \255d)108 213.6 Q F2(of)2.5 E(fset)
1380
-
+-.18 E F1(history \255d)108 225.6 Q F2(start)2.5 E F0<ad>A F2(end)A F1
1381
-
+(history \255anrw)108 237.6 Q F0([)2.5 E F2(\214lename)A F0(])A F1
1382
-
+(history \255p)108 249.6 Q F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A 2.5
1383
-
+(g.)-.37 G(..)-2.5 E F0(])A F1(history \255s)108 261.6 Q F2(ar)2.5 E(g)
1377 ➡ 1384 -.37 E F0([)2.5 E F2(ar)A 2.5(g.)-.37 G(..)-2.5 E F0(])A -.4(Wi)144
1378
-
No equivalent source code line in the reference code can be identified.
-225.6 S .752
1385
-
+273.6 S .752
1379 ➡ 1386 (th no options, display the command history list with line numbers.).4 F
1380 ➡ 1387 .752(Lines listed with a)5.752 F F1(*)3.252 E F0(ha)3.252 E -.15(ve)-.2
1381
-
No equivalent source code line in the reference code can be identified.
-G .381(been modi\214ed.)144 237.6 R .38(An ar)5.38 F .38(gument of)-.18
1388
-
+G .381(been modi\214ed.)144 285.6 R .38(An ar)5.38 F .38(gument of)-.18
1382 ➡ 1389 F F2(n)3.24 E F0 .38(lists only the last)3.12 F F2(n)3.24 E F0 2.88
1383 ➡ 1390 (lines. If)3.12 F .38(the shell v)2.88 F(ariable)-.25 E/F3 9
1384
-
No equivalent source code line in the reference code can be identified.
-/Times-Bold@0 SF(HISTTIMEFOR-)2.88 E(MA)144 249.6 Q(T)-.855 E F0 .264
1391
-
+/Times-Bold@0 SF(HISTTIMEFOR-)2.88 E(MA)144 297.6 Q(T)-.855 E F0 .264
1385 ➡ 1392 (is set and not null, it is used as a format string for)2.514 F F2
1386 ➡ 1393 (strftime)2.765 E F0 .265(\(3\) to display the time stamp asso-)B 1.02
1387
-
No equivalent source code line in the reference code can be identified.
-(ciated with each displayed history entry)144 261.6 R 6.019(.N)-.65 G
1394
-
+(ciated with each displayed history entry)144 309.6 R 6.019(.N)-.65 G
1388 ➡ 1395 3.519(oi)-6.019 G(nterv)-3.519 E 1.019
1389 ➡ 1396 (ening blank is printed between the formatted)-.15 F .176
1390
-
No equivalent source code line in the reference code can be identified.
-(time stamp and the history line.)144 273.6 R(If)5.176 E F2(\214lename)
1397
-
+(time stamp and the history line.)144 321.6 R(If)5.176 E F2(\214lename)
1391 ➡ 1398 2.676 E F0 .176
1392 ➡ 1399 (is supplied, it is used as the name of the history \214le; if)2.676 F
1393
-
No equivalent source code line in the reference code can be identified.
-(not, the v)144 285.6 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.)
1400
-
+(not, the v)144 333.6 Q(alue of)-.25 E F3(HISTFILE)2.5 E F0(is used.)
1394 ➡ 1401 2.25 E(Options, if supplied, ha)5 E .3 -.15(ve t)-.2 H(he follo).15 E
1395
-
No equivalent source code line in the reference code can be identified.
-(wing meanings:)-.25 E F1<ad63>144 297.6 Q F0
1396
-
No equivalent source code line in the reference code can be identified.
-(Clear the history list by deleting all the entries.)180 297.6 Q F1
1397
-
No equivalent source code line in the reference code can be identified.
-<ad64>144 309.6 Q F2(of)2.5 E(fset)-.18 E F0 .39
1398
-
No equivalent source code line in the reference code can be identified.
-(Delete the history entry at position)180 321.6 R F2(of)2.889 E(fset)
1402
-
+(wing meanings:)-.25 E F1<ad63>144 345.6 Q F0
1403
-
+(Clear the history list by deleting all the entries.)180 345.6 Q F1
1404
-
+<ad64>144 357.6 Q F2(of)2.5 E(fset)-.18 E F0 .39
1405
-
+(Delete the history entry at position)180 369.6 R F2(of)2.889 E(fset)
1399 ➡ 1406 -.18 E F0 5.389(.I)C(f)-5.389 E F2(of)2.889 E(fset)-.18 E F0 .389(is ne)
1400 ➡ 1407 2.889 F -.05(ga)-.15 G(ti).05 E -.15(ve)-.25 G 2.889(,i).15 G 2.889(ti)
1401 ➡ 1408 -2.889 G 2.889(si)-2.889 G .389(nterpreted as relati)-2.889 F -.15(ve)
1402 ➡ 1409 -.25 G .598(to one greater than the last history position, so ne)180
1403
-
No equivalent source code line in the reference code can be identified.
-333.6 R -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .599
1404
-
No equivalent source code line in the reference code can be identified.
-(ndices count back from the end).15 F(of the history)180 345.6 Q 2.5(,a)
1410
-
+381.6 R -.05(ga)-.15 G(ti).05 E .899 -.15(ve i)-.25 H .599
1411
-
+(ndices count back from the end).15 F(of the history)180 393.6 Q 2.5(,a)
1405 ➡ 1412 -.65 G(nd an inde)-2.5 E 2.5(xo)-.15 G 2.5<66ad>-2.5 G 2.5(1r)-2.5 G
1406 ➡ 1413 (efers to the current)-2.5 E F1(history -d)2.5 E F0(command.)2.5 E F1
1407
-
No equivalent source code line in the reference code can be identified.
-<ad64>144 357.6 Q F2(start)2.5 E F0<ad>A F2(end)A F0 .758
1408
-
No equivalent source code line in the reference code can be identified.
-(Delete the history entries between positions)180 369.6 R F2(start)3.258
1414
-
+<ad64>144 405.6 Q F2(start)2.5 E F0<ad>A F2(end)A F0 .758
1415
-
+(Delete the history entries between positions)180 417.6 R F2(start)3.258
1409 ➡ 1416 E F0(and)3.257 E F2(end)3.257 E F0 3.257(,i)C(nclusi)-3.257 E -.15(ve)
1410 ➡ 1417 -.25 G 5.757(.P).15 G(ositi)-5.757 E 1.057 -.15(ve a)-.25 H .757(nd ne)
1411
-
No equivalent source code line in the reference code can be identified.
-.15 F -.05(ga)-.15 G(-).05 E(ti)180 381.6 Q .3 -.15(ve v)-.25 H
1418
-
+.15 F -.05(ga)-.15 G(-).05 E(ti)180 429.6 Q .3 -.15(ve v)-.25 H
1412 ➡ 1419 (alues for)-.1 E F2(start)2.5 E F0(and)2.5 E F2(end)2.5 E F0
1413 ➡ 1420 (are interpreted as described abo)2.5 E -.15(ve)-.15 G(.).15 E F1<ad61>
1414
-
No equivalent source code line in the reference code can be identified.
-144 393.6 Q F0 .564(Append the `)180 393.6 R(`ne)-.74 E(w')-.25 E 3.064
1421
-
+144 441.6 Q F0 .564(Append the `)180 441.6 R(`ne)-.74 E(w')-.25 E 3.064
1415 ➡ 1422 ('h)-.74 G .564(istory lines to the history \214le.)-3.064 F .565
1416
-
No equivalent source code line in the reference code can be identified.
-(These are history lines entered since)5.564 F(the be)180 405.6 Q
1423
-
+(These are history lines entered since)5.564 F(the be)180 453.6 Q
1417 ➡ 1424 (ginning of the current)-.15 E F1(bash)2.5 E F0(session, b)2.5 E
1418
-
No equivalent source code line in the reference code can be identified.
-(ut not already appended to the history \214le.)-.2 E F1<ad6e>144 417.6
1425
-
+(ut not already appended to the history \214le.)-.2 E F1<ad6e>144 465.6
1419 ➡ 1426 Q F0 .854(Read the history lines not already read from the history \214\
1420
-
No equivalent source code line in the reference code can be identified.
-le into the current history list.)180 417.6 R .772
1421
-
No equivalent source code line in the reference code can be identified.
-(These are lines appended to the history \214le since the be)180 429.6 R
1427
-
+le into the current history list.)180 465.6 R .772
1428
-
+(These are lines appended to the history \214le since the be)180 477.6 R
1422 ➡ 1429 .773(ginning of the current)-.15 F F1(bash)3.273 E F0(ses-)3.273 E
1423
-
No equivalent source code line in the reference code can be identified.
-(sion.)180 441.6 Q F1<ad72>144 453.6 Q F0(Read the contents of the hist\
1424
-
No equivalent source code line in the reference code can be identified.
-ory \214le and append them to the current history list.)180 453.6 Q F1
1425
-
No equivalent source code line in the reference code can be identified.
-<ad77>144 465.6 Q F0
1426
-
No equivalent source code line in the reference code can be identified.
-(Write the current history list to the history \214le, o)180 465.6 Q
1430
-
+(sion.)180 489.6 Q F1<ad72>144 501.6 Q F0(Read the contents of the hist\
1431
-
+ory \214le and append them to the current history list.)180 501.6 Q F1
1432
-
+<ad77>144 513.6 Q F0
1433
-
+(Write the current history list to the history \214le, o)180 513.6 Q
1427 ➡ 1434 -.15(ve)-.15 G(rwriting the history \214le').15 E 2.5(sc)-.55 G
1428
-
No equivalent source code line in the reference code can be identified.
-(ontents.)-2.5 E F1<ad70>144 477.6 Q F0 .626
1429
-
No equivalent source code line in the reference code can be identified.
-(Perform history substitution on the follo)180 477.6 R(wing)-.25 E F2
1435
-
+(ontents.)-2.5 E F1<ad70>144 525.6 Q F0 .626
1436
-
+(Perform history substitution on the follo)180 525.6 R(wing)-.25 E F2
1430 ➡ 1437 (ar)3.125 E(gs)-.37 E F0 .625(and display the result on the standard)
1431
-
No equivalent source code line in the reference code can be identified.
-3.125 F 2.975(output. Does)180 489.6 R .475
1438
-
+3.125 F 2.975(output. Does)180 537.6 R .475
1432 ➡ 1439 (not store the results in the history list.)2.975 F(Each)5.475 E F2(ar)
1433 ➡ 1440 2.975 E(g)-.37 E F0 .475(must be quoted to disable)2.975 F
1434
-
No equivalent source code line in the reference code can be identified.
-(normal history e)180 501.6 Q(xpansion.)-.15 E F1<ad73>144 513.6 Q F0
1435
-
No equivalent source code line in the reference code can be identified.
-.363(Store the)180 513.6 R F2(ar)3.193 E(gs)-.37 E F0 .363
1441
-
+(normal history e)180 549.6 Q(xpansion.)-.15 E F1<ad73>144 561.6 Q F0
1442
-
+.363(Store the)180 561.6 R F2(ar)3.193 E(gs)-.37 E F0 .363
1436 ➡ 1443 (in the history list as a single entry)3.133 F 5.363(.T)-.65 G .362
1437
-
No equivalent source code line in the reference code can be identified.
-(he last command in the history list is)-5.363 F(remo)180 525.6 Q -.15
1444
-
+(he last command in the history list is)-5.363 F(remo)180 573.6 Q -.15
1438 ➡ 1445 (ve)-.15 G 2.5(db).15 G(efore the)-2.5 E F2(ar)2.83 E(gs)-.37 E F0
1439
-
No equivalent source code line in the reference code can be identified.
-(are added.)2.77 E .145(If the)144 542.4 R F3(HISTTIMEFORMA)2.645 E(T)
1446
-
+(are added.)2.77 E .145(If the)144 590.4 R F3(HISTTIMEFORMA)2.645 E(T)
1440 ➡ 1447 -.855 E F0 -.25(va)2.395 G .145
1441 ➡ 1448 (riable is set, the time stamp information associated with each history)
1442
-
No equivalent source code line in the reference code can be identified.
-.25 F .669(entry is written to the history \214le, mark)144 554.4 R .669
1449
-
+.25 F .669(entry is written to the history \214le, mark)144 602.4 R .669
1443 ➡ 1450 (ed with the history comment character)-.1 F 5.668(.W)-.55 G .668
1444
-
No equivalent source code line in the reference code can be identified.
-(hen the history)-5.668 F .955(\214le is read, lines be)144 566.4 R .956
1451
-
+(hen the history)-5.668 F .955(\214le is read, lines be)144 614.4 R .956
1445 ➡ 1452 (ginning with the history comment character follo)-.15 F .956
1446 ➡ 1453 (wed immediately by a digit)-.25 F 1.796
1447
-
No equivalent source code line in the reference code can be identified.
-(are interpreted as timestamps for the follo)144 578.4 R 1.795
1454
-
+(are interpreted as timestamps for the follo)144 626.4 R 1.795
1448 ➡ 1455 (wing history entry)-.25 F 6.795(.T)-.65 G 1.795(he return v)-6.795 F
1449
-
No equivalent source code line in the reference code can be identified.
-1.795(alue is 0 unless an)-.25 F(in)144 590.4 Q -.25(va)-.4 G .768(lid \
1456
-
+1.795(alue is 0 unless an)-.25 F(in)144 638.4 Q -.25(va)-.4 G .768(lid \
1450 ➡ 1457 option is encountered, an error occurs while reading or writing the his\
1451
-
No equivalent source code line in the reference code can be identified.
-tory \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)144 602.4 Q(fset)
1458
-
+tory \214le, an in).25 F -.25(va)-.4 G(lid).25 E F2(of)144 650.4 Q(fset)
1452 ➡ 1459 -.18 E F0 1.032(is supplied as an ar)3.532 F 1.031(gument to)-.18 F F1
1453 ➡ 1460 <ad64>3.531 E F0 3.531(,o)C 3.531(rt)-3.531 G 1.031(he history e)-3.531
1454 ➡ 1461 F 1.031(xpansion supplied as an ar)-.15 F 1.031(gument to)-.18 F F1
1455
-
No equivalent source code line in the reference code can be identified.
-<ad70>3.531 E F0 -.1(fa)144 614.4 S(ils.).1 E F1(jobs)108 631.2 Q F0([)
1462
-
+<ad70>3.531 E F0 -.1(fa)144 662.4 S(ils.).1 E F1(jobs)108 679.2 Q F0([)
1456 ➡ 1463 2.5 E F1(\255lnprs)A F0 2.5(][)C F2(jobspec)A F0(... ])2.5 E F1
1457
-
No equivalent source code line in the reference code can be identified.
-(jobs \255x)108 643.2 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37
1458
-
No equivalent source code line in the reference code can be identified.
-E F0(... ])2.5 E(The \214rst form lists the acti)144 655.2 Q .3 -.15
1464
-
+(jobs \255x)108 691.2 Q F2(command)2.5 E F0([)2.5 E F2(ar)2.5 E(gs)-.37
1465
-
+E F0(... ])2.5 E(The \214rst form lists the acti)144 703.2 Q .3 -.15
1459 ➡ 1466 (ve j)-.25 H 2.5(obs. The).15 F(options ha)2.5 E .3 -.15(ve t)-.2 H
1460
-
No equivalent source code line in the reference code can be identified.
-(he follo).15 E(wing meanings:)-.25 E F1<ad6c>144 667.2 Q F0
1461
-
No equivalent source code line in the reference code can be identified.
-(List process IDs in addition to the normal information.)180 667.2 Q F1
1462
-
No equivalent source code line in the reference code can be identified.
-<ad6e>144 679.2 Q F0 .193(Display information only about jobs that ha)
1463
-
No equivalent source code line in the reference code can be identified.
-180 679.2 R .494 -.15(ve c)-.2 H .194(hanged status since the user w).15
1464
-
No equivalent source code line in the reference code can be identified.
-F .194(as last noti-)-.1 F(\214ed of their status.)180 691.2 Q F1<ad70>
1465
-
No equivalent source code line in the reference code can be identified.
-144 703.2 Q F0(List only the process ID of the job')180 703.2 Q 2.5(sp)
1466
-
No equivalent source code line in the reference code can be identified.
--.55 G(rocess group leader)-2.5 E(.)-.55 E F1<ad72>144 715.2 Q F0
1467
-
No equivalent source code line in the reference code can be identified.
-(Display only running jobs.)180 715.2 Q(GNU Bash 5.0)72 768 Q
1468
-
No equivalent source code line in the reference code can be identified.
-(2004 Apr 20)149.565 E(10)198.725 E 0 Cg EP
1467
-
+(he follo).15 E(wing meanings:)-.25 E F1<ad6c>144 715.2 Q F0
1468
-
+(List process IDs in addition to the normal information.)180 715.2 Q
1469
-
+(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(10)198.725 E 0 Cg EP
1469 ➡ 1470 %%Page: 11 11
1470 ➡ 1471 %%BeginPageSetup
1471 ➡ 1472 BP
1472 ➡ 1473 %%EndPageSetup
1473 ➡ 1474 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1474 ➡ 1475 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1475
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad73>144 84 Q F0
1476
-
No equivalent source code line in the reference code can be identified.
-(Display only stopped jobs.)180 84 Q(If)144 100.8 Q/F2 10/Times-Italic@0
1477
-
No equivalent source code line in the reference code can be identified.
-SF(jobspec)4.554 E F0 .314(is gi)3.124 F -.15(ve)-.25 G .314
1478
-
No equivalent source code line in the reference code can be identified.
-(n, output is restricted to information about that job).15 F 5.313(.T)
1479
-
No equivalent source code line in the reference code can be identified.
--.4 G .313(he return status is 0 unless)-5.313 F(an in)144 112.8 Q -.25
1480
-
No equivalent source code line in the reference code can be identified.
-(va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G(lid).25
1481
-
No equivalent source code line in the reference code can be identified.
-E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144 129.6 R F1
1482
-
No equivalent source code line in the reference code can be identified.
-<ad78>2.894 E F0 .394(option is supplied,)2.894 F F1(jobs)2.894 E F0
1483
-
No equivalent source code line in the reference code can be identified.
-.394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394(found in)
1484
-
No equivalent source code line in the reference code can be identified.
-3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37 E F0 .395
1485
-
No equivalent source code line in the reference code can be identified.
-(with the corre-)3.164 F(sponding process group ID, and e)144 141.6 Q
1486
-
No equivalent source code line in the reference code can be identified.
--.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E F2(ar)
1487
-
No equivalent source code line in the reference code can be identified.
-2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)-.15 E
1488
-
No equivalent source code line in the reference code can be identified.
-F1(kill)108 158.4 Q F0([)2.5 E F1<ad73>A F2(sigspec)2.5 E F0(|)2.5 E F1
1489
-
No equivalent source code line in the reference code can be identified.
-<ad6e>2.5 E F2(signum)2.5 E F0(|)2.5 E F1<ad>2.5 E F2(sigspec)A F0 2.5
1490
-
No equivalent source code line in the reference code can be identified.
-(][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)-2.5 E F1
1491
-
No equivalent source code line in the reference code can be identified.
-(kill \255l)108 170.4 Q F0(|)A F1<ad4c>A F0([)2.5 E F2(sigspec)A F0(|)
1492
-
No equivalent source code line in the reference code can be identified.
-2.5 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .12
1493
-
No equivalent source code line in the reference code can be identified.
-(Send the signal named by)144 182.4 R F2(sigspec)2.96 E F0(or)2.93 E F2
1476
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad6e>144 84 Q F0 .193
1477
-
+(Display information only about jobs that ha)180 84 R .494 -.15(ve c)-.2
1478
-
+H .194(hanged status since the user w).15 F .194(as last noti-)-.1 F
1479
-
+(\214ed of their status.)180 96 Q F1<ad70>144 108 Q F0
1480
-
+(List only the process ID of the job')180 108 Q 2.5(sp)-.55 G
1481
-
+(rocess group leader)-2.5 E(.)-.55 E F1<ad72>144 120 Q F0
1482
-
+(Display only running jobs.)180 120 Q F1<ad73>144 132 Q F0
1483
-
+(Display only stopped jobs.)180 132 Q(If)144 148.8 Q/F2 10
1484
-
+/Times-Italic@0 SF(jobspec)4.554 E F0 .314(is gi)3.124 F -.15(ve)-.25 G
1485
-
+.314(n, output is restricted to information about that job).15 F 5.313
1486
-
+(.T)-.4 G .313(he return status is 0 unless)-5.313 F(an in)144 160.8 Q
1487
-
+-.25(va)-.4 G(lid option is encountered or an in).25 E -.25(va)-.4 G
1488
-
+(lid).25 E F2(jobspec)4.24 E F0(is supplied.)2.81 E .394(If the)144
1489
-
+177.6 R F1<ad78>2.894 E F0 .394(option is supplied,)2.894 F F1(jobs)
1490
-
+2.894 E F0 .394(replaces an)2.894 F(y)-.15 E F2(jobspec)4.634 E F0 .394
1491
-
+(found in)3.204 F F2(command)3.094 E F0(or)3.664 E F2(ar)3.224 E(gs)-.37
1492
-
+E F0 .395(with the corre-)3.164 F(sponding process group ID, and e)144
1493
-
+189.6 Q -.15(xe)-.15 G(cutes).15 E F2(command)2.7 E F0(passing it)3.27 E
1494
-
+F2(ar)2.5 E(gs)-.37 E F0 2.5(,r).27 G(eturning its e)-2.5 E(xit status.)
1495
-
+-.15 E F1(kill)108 206.4 Q F0([)2.5 E F1<ad73>A F2(sigspec)2.5 E F0(|)
1496
-
+2.5 E F1<ad6e>2.5 E F2(signum)2.5 E F0(|)2.5 E F1<ad>2.5 E F2(sigspec)A
1497
-
+F0 2.5(][)C F2(pid)-2.5 E F0(|)2.5 E F2(jobspec)2.5 E F0 2.5(].)C(..)
1498
-
+-2.5 E F1(kill \255l)108 218.4 Q F0(|)A F1<ad4c>A F0([)2.5 E F2(sigspec)
1499
-
+A F0(|)2.5 E F2 -.2(ex)2.5 G(it_status).2 E F0(])A .12
1500
-
+(Send the signal named by)144 230.4 R F2(sigspec)2.96 E F0(or)2.93 E F2
1494 ➡ 1501 (signum)2.96 E F0 .119(to the processes named by)2.939 F F2(pid)3.869 E
1495 ➡ 1502 F0(or)3.389 E F2(jobspec)2.619 E F0(.).31 E F2(sigspec)5.459 E F0(is)
1496
-
No equivalent source code line in the reference code can be identified.
-2.929 E .318(either a case-insensiti)144 194.4 R .618 -.15(ve s)-.25 H
1503
-
+2.929 E .318(either a case-insensiti)144 242.4 R .618 -.15(ve s)-.25 H
1497 ➡ 1504 .318(ignal name such as).15 F/F3 9/Times-Bold@0 SF(SIGKILL)2.818 E F0
1498 ➡ 1505 .319(\(with or without the)2.569 F F3(SIG)2.819 E F0 .319
1499
-
No equivalent source code line in the reference code can be identified.
-(pre\214x\) or a signal)2.569 F(number;)144 206.4 Q F2(signum)4.189 E F0
1506
-
+(pre\214x\) or a signal)2.569 F(number;)144 254.4 Q F2(signum)4.189 E F0
1500 ➡ 1507 1.349(is a signal number)4.169 F 6.349(.I)-.55 G(f)-6.349 E F2(sigspec)
1501 ➡ 1508 4.189 E F0 1.349(is not present, then)4.159 F F3(SIGTERM)3.849 E F0
1502
-
No equivalent source code line in the reference code can be identified.
-1.348(is assumed.)3.599 F(An)6.348 E(ar)144 218.4 Q .522(gument of)-.18
1509
-
+1.348(is assumed.)3.599 F(An)6.348 E(ar)144 266.4 Q .522(gument of)-.18
1503 ➡ 1510 F F1<ad6c>3.023 E F0 .523(lists the signal names.)3.023 F .523(If an)
1504 ➡ 1511 5.523 F 3.023(ya)-.15 G -.18(rg)-3.023 G .523(uments are supplied when)
1505 ➡ 1512 .18 F F1<ad6c>3.023 E F0 .523(is gi)3.023 F -.15(ve)-.25 G .523
1506
-
No equivalent source code line in the reference code can be identified.
-(n, the names).15 F .28(of the signals corresponding to the ar)144 230.4
1513
-
+(n, the names).15 F .28(of the signals corresponding to the ar)144 278.4
1507 ➡ 1514 R .28(guments are listed, and the return status is 0.)-.18 F(The)5.28 E
1508
-
No equivalent source code line in the reference code can be identified.
-F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 242.4 Q .377(gument to)-.18 F
1515
-
+F2 -.2(ex)2.78 G(it_status).2 E F0(ar)144 290.4 Q .377(gument to)-.18 F
1509 ➡ 1516 F1<ad6c>2.877 E F0 .378
1510 ➡ 1517 (is a number specifying either a signal number or the e)2.877 F .378
1511
-
No equivalent source code line in the reference code can be identified.
-(xit status of a process termi-)-.15 F .963(nated by a signal.)144 254.4
1518
-
+(xit status of a process termi-)-.15 F .963(nated by a signal.)144 302.4
1512 ➡ 1519 R(The)5.962 E F1<ad4c>3.462 E F0 .962(option is equi)3.462 F -.25(va)
1513 ➡ 1520 -.25 G .962(lent to).25 F F1<ad6c>3.462 E F0(.)A F1(kill)5.962 E F0 .962
1514 ➡ 1521 (returns true if at least one signal w)3.462 F(as)-.1 E
1515
-
No equivalent source code line in the reference code can be identified.
-(successfully sent, or f)144 266.4 Q(alse if an error occurs or an in)
1516
-
No equivalent source code line in the reference code can be identified.
--.1 E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 283.2 Q
1522
-
+(successfully sent, or f)144 314.4 Q(alse if an error occurs or an in)
1523
-
+-.1 E -.25(va)-.4 G(lid option is encountered.).25 E F1(let)108 331.2 Q
1517 ➡ 1524 F2(ar)2.5 E(g)-.37 E F0([)2.5 E F2(ar)A(g)-.37 E F0(...])2.5 E(Each)144
1518
-
No equivalent source code line in the reference code can be identified.
-295.2 Q F2(ar)3.026 E(g)-.37 E F0 .196(is an arithmetic e)2.916 F .197
1525
-
+343.2 Q F2(ar)3.026 E(g)-.37 E F0 .196(is an arithmetic e)2.916 F .197
1519 ➡ 1526 (xpression to be e)-.15 F -.25(va)-.25 G .197(luated \(see).25 F F3 .197
1520 ➡ 1527 (ARITHMETIC EV)2.697 F(ALU)-1.215 E -.855(AT)-.54 G(ION).855 E F0(abo)
1521
-
No equivalent source code line in the reference code can be identified.
-2.447 E -.15(ve)-.15 G 2.697(\). If).15 F(the last)144 307.2 Q F2(ar)
1528
-
+2.447 E -.15(ve)-.15 G 2.697(\). If).15 F(the last)144 355.2 Q F2(ar)
1522 ➡ 1529 2.83 E(g)-.37 E F0 -.25(eva)2.72 G(luates to 0,).25 E F1(let)2.5 E F0
1523
-
No equivalent source code line in the reference code can be identified.
-(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 324 Q F0([)2.5 E
1530
-
+(returns 1; 0 is returned otherwise.)2.5 E F1(local)108 372 Q F0([)2.5 E
1524 ➡ 1531 F2(option)A F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(value)A F0 2.5(].)C
1525
-
No equivalent source code line in the reference code can be identified.
-(.. | \255 ])-2.5 E -.15(Fo)144 336 S 2.56(re).15 G .06(ach ar)-2.56 F
1532
-
+(.. | \255 ])-2.5 E -.15(Fo)144 384 S 2.56(re).15 G .06(ach ar)-2.56 F
1526 ➡ 1533 .06(gument, a local v)-.18 F .06(ariable named)-.25 F F2(name)2.92 E F0
1527 ➡ 1534 .06(is created, and assigned)2.74 F F2(value)2.56 E F0 5.06(.T).18 G(he)
1528
-
No equivalent source code line in the reference code can be identified.
--5.06 E F2(option)2.56 E F0 .06(can be)2.56 F(an)144 348 Q 3.152(yo)-.15
1535
-
+-5.06 E F2(option)2.56 E F0 .06(can be)2.56 F(an)144 396 Q 3.152(yo)-.15
1529 ➡ 1536 G 3.152(ft)-3.152 G .652(he options accepted by)-3.152 F F1(declar)3.152
1530 ➡ 1537 E(e)-.18 E F0 5.652(.W)C(hen)-5.652 E F1(local)3.152 E F0 .653
1531 ➡ 1538 (is used within a function, it causes the v)3.152 F(ari-)-.25 E(able)144
1532
-
No equivalent source code line in the reference code can be identified.
-360 Q F2(name)3.282 E F0 .422(to ha)3.102 F .722 -.15(ve a v)-.2 H .422
1539
-
+408 Q F2(name)3.282 E F0 .422(to ha)3.102 F .722 -.15(ve a v)-.2 H .422
1533 ➡ 1540 (isible scope restricted to that function and its children.).15 F(If)
1534 ➡ 1541 5.421 E F2(name)2.921 E F0 .421(is \255, the set)2.921 F 1.461
1535
-
No equivalent source code line in the reference code can be identified.
-(of shell options is made local to the function in which)144 372 R F1
1542
-
+(of shell options is made local to the function in which)144 420 R F1
1536 ➡ 1543 (local)3.961 E F0 1.462(is in)3.961 F -.2(vo)-.4 G -.1(ke).2 G 1.462
1537
-
No equivalent source code line in the reference code can be identified.
-(d: shell options changed).1 F 1.563(using the)144 384 R F1(set)4.063 E
1544
-
+(d: shell options changed).1 F 1.563(using the)144 432 R F1(set)4.063 E
1538 ➡ 1545 F0 -.2(bu)4.063 G 1.563
1539 ➡ 1546 (iltin inside the function are restored to their original v).2 F 1.562
1540
-
No equivalent source code line in the reference code can be identified.
-(alues when the function)-.25 F 3.743(returns. W)144 396 R 1.243
1547
-
+(alues when the function)-.25 F 3.743(returns. W)144 444 R 1.243
1541 ➡ 1548 (ith no operands,)-.4 F F1(local)3.743 E F0 1.243
1542 ➡ 1549 (writes a list of local v)3.743 F 1.244
1543 ➡ 1550 (ariables to the standard output.)-.25 F 1.244(It is an)6.244 F .42
1544
-
No equivalent source code line in the reference code can be identified.
-(error to use)144 408 R F1(local)2.92 E F0 .42
1551
-
+(error to use)144 456 R F1(local)2.92 E F0 .42
1545 ➡ 1552 (when not within a function.)2.92 F .42(The return status is 0 unless)
1546 ➡ 1553 5.42 F F1(local)2.92 E F0 .42(is used outside a)2.92 F(function, an in)
1547
-
No equivalent source code line in the reference code can be identified.
-144 420 Q -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or)2.68
1554
-
+144 468 Q -.25(va)-.4 G(lid).25 E F2(name)2.86 E F0(is supplied, or)2.68
1548 ➡ 1555 E F2(name)2.5 E F0(is a readonly v)2.5 E(ariable.)-.25 E F1(logout)108
1549
-
No equivalent source code line in the reference code can be identified.
-436.8 Q F0(Exit a login shell.)144 436.8 Q F1(map\214le)108 453.6 Q F0
1556
-
+484.8 Q F0(Exit a login shell.)144 484.8 Q F1(map\214le)108 501.6 Q F0
1550 ➡ 1557 ([)2.5 E F1<ad64>A F2(delim)2.5 E F0 2.5(][)C F1<ad6e>-2.5 E F2(count)
1551 ➡ 1558 2.5 E F0 2.5(][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0 2.5(][)C F1<ad73>
1552 ➡ 1559 -2.5 E F2(count)2.5 E F0 2.5(][)C F1<ad74>-2.5 E F0 2.5(][)C F1<ad75>
1553 ➡ 1560 -2.5 E F2(fd)2.5 E F0 2.5(][)C F1<ad43>-2.5 E F2(callbac)2.5 E(k)-.2 E
1554 ➡ 1561 F0 2.5(][)C F1<ad63>-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E
1555
-
No equivalent source code line in the reference code can be identified.
-(ay)-.15 E F0(])A F1 -.18(re)108 465.6 S(adarray).18 E F0([)2.5 E F1
1562
-
+(ay)-.15 E F0(])A F1 -.18(re)108 513.6 S(adarray).18 E F0([)2.5 E F1
1556 ➡ 1563 <ad64>A F2(delim)2.5 E F0 2.5(][)C F1<ad6e>-2.5 E F2(count)2.5 E F0 2.5
1557 ➡ 1564 (][)C F1<ad4f>-2.5 E F2(origin)2.5 E F0 2.5(][)C F1<ad73>-2.5 E F2
1558 ➡ 1565 (count)2.5 E F0 2.5(][)C F1<ad74>-2.5 E F0 2.5(][)C F1<ad75>-2.5 E F2
1559 ➡ 1566 (fd)2.5 E F0 2.5(][)C F1<ad43>-2.5 E F2(callbac)2.5 E(k)-.2 E F0 2.5(][)
1560 ➡ 1567 C F1<ad63>-2.5 E F2(quantum)2.5 E F0 2.5(][)C F2(arr)-2.5 E(ay)-.15 E F0
1561
-
No equivalent source code line in the reference code can be identified.
-(])A .179(Read lines from the standard input into the inde)144 477.6 R
1568
-
+(])A .179(Read lines from the standard input into the inde)144 525.6 R
1562 ➡ 1569 -.15(xe)-.15 G 2.679(da).15 G .179(rray v)-2.679 F(ariable)-.25 E F2
1563 ➡ 1570 (arr)2.68 E(ay)-.15 E F0 2.68(,o).32 G 2.68(rf)-2.68 G .18
1564
-
No equivalent source code line in the reference code can be identified.
-(rom \214le descriptor)-2.68 F F2(fd)4.65 E F0 1.249(if the)144 489.6 R
1571
-
+(rom \214le descriptor)-2.68 F F2(fd)4.65 E F0 1.249(if the)144 537.6 R
1565 ➡ 1572 F1<ad75>3.749 E F0 1.249(option is supplied.)3.749 F 1.249(The v)6.249 F
1566 ➡ 1573 (ariable)-.25 E F3(MAPFILE)3.749 E F0 1.249(is the def)3.499 F(ault)-.1
1567 ➡ 1574 E F2(arr)3.748 E(ay)-.15 E F0 6.248(.O)C 1.248(ptions, if supplied,)
1568
-
No equivalent source code line in the reference code can be identified.
--6.248 F(ha)144 501.6 Q .3 -.15(ve t)-.2 H(he follo).15 E
1569
-
No equivalent source code line in the reference code can be identified.
-(wing meanings:)-.25 E F1<ad64>144 513.6 Q F0 .91
1570
-
No equivalent source code line in the reference code can be identified.
-(The \214rst character of)180 513.6 R F2(delim)3.41 E F0 .911
1575
-
+-6.248 F(ha)144 549.6 Q .3 -.15(ve t)-.2 H(he follo).15 E
1576
-
+(wing meanings:)-.25 E F1<ad64>144 561.6 Q F0 .91
1577
-
+(The \214rst character of)180 561.6 R F2(delim)3.41 E F0 .911
1571 ➡ 1578 (is used to terminate each input line, rather than ne)3.41 F 3.411
1572
-
No equivalent source code line in the reference code can be identified.
-(wline. If)-.25 F F2(delim)180 525.6 Q F0(is the empty string,)2.5 E F1
1579
-
+(wline. If)-.25 F F2(delim)180 573.6 Q F0(is the empty string,)2.5 E F1
1573 ➡ 1580 (map\214le)2.5 E F0(will terminate a line when it reads a NUL character)
1574
-
No equivalent source code line in the reference code can be identified.
-2.5 E(.)-.55 E F1<ad6e>144 537.6 Q F0(Cop)180 537.6 Q 2.5(ya)-.1 G 2.5
1581
-
+2.5 E(.)-.55 E F1<ad6e>144 585.6 Q F0(Cop)180 585.6 Q 2.5(ya)-.1 G 2.5
1575 ➡ 1582 (tm)-2.5 G(ost)-2.5 E F2(count)2.7 E F0 2.5(lines. If)3.18 F F2(count)
1576
-
No equivalent source code line in the reference code can be identified.
-2.5 E F0(is 0, all lines are copied.)2.5 E F1<ad4f>144 549.6 Q F0(Be)180
1577
-
No equivalent source code line in the reference code can be identified.
-549.6 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82
1583
-
+2.5 E F0(is 0, all lines are copied.)2.5 E F1<ad4f>144 597.6 Q F0(Be)180
1584
-
+597.6 Q(gin assigning to)-.15 E F2(arr)2.83 E(ay)-.15 E F0(at inde)2.82
1578 ➡ 1585 E(x)-.15 E F2(origin)2.5 E F0 5(.T).24 G(he def)-5 E(ault inde)-.1 E 2.5
1579
-
No equivalent source code line in the reference code can be identified.
-(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1<ad73>144 561.6 Q F0
1580
-
No equivalent source code line in the reference code can be identified.
-(Discard the \214rst)180 561.6 Q F2(count)2.5 E F0(lines read.)2.5 E F1
1581
-
No equivalent source code line in the reference code can be identified.
-<ad74>144 573.6 Q F0(Remo)180 573.6 Q .3 -.15(ve a t)-.15 H(railing).15
1586
-
+(xi)-.15 G 2.5(s0)-2.5 G(.)-2.5 E F1<ad73>144 609.6 Q F0
1587
-
+(Discard the \214rst)180 609.6 Q F2(count)2.5 E F0(lines read.)2.5 E F1
1588
-
+<ad74>144 621.6 Q F0(Remo)180 621.6 Q .3 -.15(ve a t)-.15 H(railing).15
1582 ➡ 1589 E F2(delim)2.5 E F0(\(def)2.5 E(ault ne)-.1 E
1583
-
No equivalent source code line in the reference code can be identified.
-(wline\) from each line read.)-.25 E F1<ad75>144 585.6 Q F0
1584
-
No equivalent source code line in the reference code can be identified.
-(Read lines from \214le descriptor)180 585.6 Q F2(fd)2.5 E F0
1585
-
No equivalent source code line in the reference code can be identified.
-(instead of the standard input.)2.5 E F1<ad43>144 597.6 Q F0(Ev)180
1586
-
No equivalent source code line in the reference code can be identified.
-597.6 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2
1590
-
+(wline\) from each line read.)-.25 E F1<ad75>144 633.6 Q F0
1591
-
+(Read lines from \214le descriptor)180 633.6 Q F2(fd)2.5 E F0
1592
-
+(instead of the standard input.)2.5 E F1<ad43>144 645.6 Q F0(Ev)180
1593
-
+645.6 Q(aluate)-.25 E F2(callbac)2.7 E(k)-.2 E F0(each time)3.17 E F2
1587 ➡ 1594 (quantum)2.5 E F0(lines are read.)2.5 E(The)5 E F1<ad63>2.5 E F0
1588
-
No equivalent source code line in the reference code can be identified.
-(option speci\214es)2.5 E F2(quantum)2.5 E F0(.).32 E F1<ad63>144 609.6
1589
-
No equivalent source code line in the reference code can be identified.
-Q F0(Specify the number of lines read between each call to)180 609.6 Q
1590
-
No equivalent source code line in the reference code can be identified.
-F2(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 626.4 Q F1<ad43>2.968 E F0
1595
-
+(option speci\214es)2.5 E F2(quantum)2.5 E F0(.).32 E F1<ad63>144 657.6
1596
-
+Q F0(Specify the number of lines read between each call to)180 657.6 Q
1597
-
+F2(callbac)2.5 E(k)-.2 E F0(.).67 E(If)144 674.4 Q F1<ad43>2.968 E F0
1591 ➡ 1598 .467(is speci\214ed without)2.967 F F1<ad63>2.967 E F0 2.967(,t)C .467
1592 ➡ 1599 (he def)-2.967 F .467(ault quantum is 5000.)-.1 F(When)5.467 E F2
1593 ➡ 1600 (callbac)2.967 E(k)-.2 E F0 .467(is e)2.967 F -.25(va)-.25 G .467
1594
-
No equivalent source code line in the reference code can be identified.
-(luated, it is sup-).25 F .261(plied the inde)144 638.4 R 2.761(xo)-.15
1601
-
+(luated, it is sup-).25 F .261(plied the inde)144 686.4 R 2.761(xo)-.15
1595 ➡ 1602 G 2.761(ft)-2.761 G .261(he ne)-2.761 F .262(xt array element to be ass\
1596 ➡ 1603 igned and the line to be assigned to that element)-.15 F .275
1597
-
No equivalent source code line in the reference code can be identified.
-(as additional ar)144 650.4 R(guments.)-.18 E F2(callbac)5.275 E(k)-.2 E
1604
-
+(as additional ar)144 698.4 R(guments.)-.18 E F2(callbac)5.275 E(k)-.2 E
1598 ➡ 1605 F0 .275(is e)2.775 F -.25(va)-.25 G .274
1599 ➡ 1606 (luated after the line is read b).25 F .274
1600
-
No equivalent source code line in the reference code can be identified.
-(ut before the array element is)-.2 F(assigned.)144 662.4 Q
1601
-
No equivalent source code line in the reference code can be identified.
-(If not supplied with an e)144 679.2 Q(xplicit origin,)-.15 E F1
1607
-
+(ut before the array element is)-.2 F(assigned.)144 710.4 Q
1608
-
+(If not supplied with an e)144 727.2 Q(xplicit origin,)-.15 E F1
1602 ➡ 1609 (map\214le)2.5 E F0(will clear)2.5 E F2(arr)2.5 E(ay)-.15 E F0
1603
-
No equivalent source code line in the reference code can be identified.
-(before assigning to it.)2.5 E F1(map\214le)144 696 Q F0 1.905
1604
-
No equivalent source code line in the reference code can be identified.
-(returns successfully unless an in)4.405 F -.25(va)-.4 G 1.905
1605
-
No equivalent source code line in the reference code can be identified.
-(lid option or option ar).25 F 1.906(gument is supplied,)-.18 F F2(arr)
1606
-
No equivalent source code line in the reference code can be identified.
-4.406 E(ay)-.15 E F0(is)4.406 E(in)144 708 Q -.25(va)-.4 G
1607
-
No equivalent source code line in the reference code can be identified.
-(lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0
1608
-
No equivalent source code line in the reference code can be identified.
-(is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E
1609
-
No equivalent source code line in the reference code can be identified.
-(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(11)198.725 E 0 Cg EP
1610
-
+(before assigning to it.)2.5 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565
1611
-
+E(11)198.725 E 0 Cg EP
1610 ➡ 1612 %%Page: 12 12
1611 ➡ 1613 %%BeginPageSetup
1612 ➡ 1614 BP
1613 ➡ 1615 %%EndPageSetup
1614 ➡ 1616 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1615 ➡ 1617 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1616
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(popd)108 84 Q F0
1617
-
No equivalent source code line in the reference code can be identified.
-<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E/F2 10/Times-Italic@0 SF(n)A F0
1618
-
No equivalent source code line in the reference code can be identified.
-2.5(][)C<ad>-2.5 E F2(n)A F0(])A(Remo)144 96 Q -.15(ve)-.15 G 2.8(se).15
1619
-
No equivalent source code line in the reference code can be identified.
-G .3(ntries from the directory stack.)-2.8 F -.4(Wi)5.299 G .299
1618
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(map\214le)144 84 Q F0
1619
-
+1.905(returns successfully unless an in)4.405 F -.25(va)-.4 G 1.905
1620
-
+(lid option or option ar).25 F 1.906(gument is supplied,)-.18 F/F2 10
1621
-
+/Times-Italic@0 SF(arr)4.406 E(ay)-.15 E F0(is)4.406 E(in)144 96 Q -.25
1622
-
+(va)-.4 G(lid or unassignable, or if).25 E F2(arr)2.5 E(ay)-.15 E F0
1623
-
+(is not an inde)2.5 E -.15(xe)-.15 G 2.5(da).15 G(rray)-2.5 E(.)-.65 E
1624
-
+F1(popd)108 112.8 Q F0<5bad>2.5 E F1(n)A F0 2.5(][)C(+)-2.5 E F2(n)A F0
1625
-
+2.5(][)C<ad>-2.5 E F2(n)A F0(])A(Remo)144 124.8 Q -.15(ve)-.15 G 2.8(se)
1626
-
+.15 G .3(ntries from the directory stack.)-2.8 F -.4(Wi)5.299 G .299
1620 ➡ 1627 (th no ar).4 F .299(guments, remo)-.18 F -.15(ve)-.15 G 2.799(st).15 G
1621 ➡ 1628 .299(he top directory from the)-2.799 F 1.478(stack, and performs a)144
1622
-
No equivalent source code line in the reference code can be identified.
-108 R F1(cd)3.978 E F0 1.479(to the ne)3.978 F 3.979(wt)-.25 G 1.479
1629
-
+136.8 R F1(cd)3.978 E F0 1.479(to the ne)3.978 F 3.979(wt)-.25 G 1.479
1623 ➡ 1630 (op directory)-3.979 F 6.479(.A)-.65 G -.18(rg)-6.479 G 1.479
1624 ➡ 1631 (uments, if supplied, ha).18 F 1.779 -.15(ve t)-.2 H 1.479(he follo).15
1625
-
No equivalent source code line in the reference code can be identified.
-F(wing)-.25 E(meanings:)144 120 Q F1<ad6e>144 132 Q F0 .551
1626
-
No equivalent source code line in the reference code can be identified.
-(Suppresses the normal change of directory when remo)180 132 R .551
1632
-
+F(wing)-.25 E(meanings:)144 148.8 Q F1<ad6e>144 160.8 Q F0 .551
1633
-
+(Suppresses the normal change of directory when remo)180 160.8 R .551
1627 ➡ 1634 (ving directories from the stack, so)-.15 F
1628
-
No equivalent source code line in the reference code can be identified.
-(that only the stack is manipulated.)180 144 Q F1(+)144 156 Q F2(n)A F0
1629
-
No equivalent source code line in the reference code can be identified.
-(Remo)180 156 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E F0
1630
-
No equivalent source code line in the reference code can be identified.
-.14(th entry counting from the left of the list sho)B .14(wn by)-.25 F
1631
-
No equivalent source code line in the reference code can be identified.
-F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180
1632
-
No equivalent source code line in the reference code can be identified.
-168 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0
1635
-
+(that only the stack is manipulated.)180 172.8 Q F1(+)144 184.8 Q F2(n)A
1636
-
+F0(Remo)180 184.8 Q -.15(ve)-.15 G 2.64(st).15 G(he)-2.64 E F2(n)2.64 E
1637
-
+F0 .14(th entry counting from the left of the list sho)B .14(wn by)-.25
1638
-
+F F1(dirs)2.64 E F0 2.64(,s)C .14(tarting with zero.)-2.64 F -.15(Fo)180
1639
-
+196.8 S 2.5(re).15 G(xample:)-2.65 E/F3 10/Courier@0 SF(popd +0)2.5 E F0
1633 ➡ 1640 (remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he \214rst directory)-2.5 E(,)
1634
-
No equivalent source code line in the reference code can be identified.
--.65 E F3(popd +1)2.5 E F0(the second.)2.5 E F1<ad>144 180 Q F2(n)A F0
1635
-
No equivalent source code line in the reference code can be identified.
-(Remo)180 180 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F2(n)3.76 E F0
1641
-
+-.65 E F3(popd +1)2.5 E F0(the second.)2.5 E F1<ad>144 208.8 Q F2(n)A F0
1642
-
+(Remo)180 208.8 Q -.15(ve)-.15 G 3.76(st).15 G(he)-3.76 E F2(n)3.76 E F0
1636 ➡ 1643 1.259(th entry counting from the right of the list sho)B 1.259(wn by)
1637 ➡ 1644 -.25 F F1(dirs)3.759 E F0 3.759(,s)C 1.259(tarting with)-3.759 F 2.5
1638
-
No equivalent source code line in the reference code can be identified.
-(zero. F)180 192 R(or e)-.15 E(xample:)-.15 E F3(popd -0)2.5 E F0(remo)
1639
-
No equivalent source code line in the reference code can be identified.
-2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65 E F3
1640
-
No equivalent source code line in the reference code can be identified.
-(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144 208.8
1641
-
No equivalent source code line in the reference code can be identified.
-R F1(popd)3.143 E F0 .643(command is successful, a)3.143 F F1(dirs)3.143
1642
-
No equivalent source code line in the reference code can be identified.
-E F0 .644(is performed as well, and the return status is 0.)3.143 F F1
1643
-
No equivalent source code line in the reference code can be identified.
-(popd)5.644 E F0 .416(returns f)144 220.8 R .416(alse if an in)-.1 F
1644
-
No equivalent source code line in the reference code can be identified.
--.25(va)-.4 G .415
1645
-
+(zero. F)180 220.8 R(or e)-.15 E(xample:)-.15 E F3(popd -0)2.5 E F0
1646
-
+(remo)2.5 E -.15(ve)-.15 G 2.5(st).15 G(he last directory)-2.5 E(,)-.65
1647
-
+E F3(popd -1)2.5 E F0(the ne)2.5 E(xt to last.)-.15 E .643(If the)144
1648
-
+237.6 R F1(popd)3.143 E F0 .643(command is successful, a)3.143 F F1
1649
-
+(dirs)3.143 E F0 .644(is performed as well, and the return status is 0.)
1650
-
+3.143 F F1(popd)5.644 E F0 .416(returns f)144 249.6 R .416
1651
-
+(alse if an in)-.1 F -.25(va)-.4 G .415
1645 ➡ 1652 (lid option is encountered, the directory stack is empty).25 F 2.915
1646 ➡ 1653 (,an)-.65 G(on-e)-2.915 E .415(xistent direc-)-.15 F
1647
-
No equivalent source code line in the reference code can be identified.
-(tory stack entry is speci\214ed, or the directory change f)144 232.8 Q
1648
-
No equivalent source code line in the reference code can be identified.
-(ails.)-.1 E F1(printf)108 249.6 Q F0([)2.5 E F1<ad76>A F2(var)2.5 E F0
1654
-
+(tory stack entry is speci\214ed, or the directory change f)144 261.6 Q
1655
-
+(ails.)-.1 E F1(printf)108 278.4 Q F0([)2.5 E F1<ad76>A F2(var)2.5 E F0
1649 ➡ 1656 (])A F2(format)2.5 E F0([)2.5 E F2(ar)A(guments)-.37 E F0(])A 1.436
1650
-
No equivalent source code line in the reference code can be identified.
-(Write the formatted)144 261.6 R F2(ar)3.936 E(guments)-.37 E F0 1.437
1657
-
+(Write the formatted)144 290.4 R F2(ar)3.936 E(guments)-.37 E F0 1.437
1651 ➡ 1658 (to the standard output under the control of the)3.936 F F2(format)3.937
1652 ➡ 1659 E F0 6.437(.T)C(he)-6.437 E F1<ad76>3.937 E F0 .126
1653
-
No equivalent source code line in the reference code can be identified.
-(option causes the output to be assigned to the v)144 273.6 R(ariable)
1660
-
+(option causes the output to be assigned to the v)144 302.4 R(ariable)
1654 ➡ 1661 -.25 E F2(var)2.626 E F0 .126(rather than being printed to the standard)
1655
-
No equivalent source code line in the reference code can be identified.
-2.626 F(output.)144 285.6 Q(The)144 309.6 Q F2(format)3.017 E F0 .517(i\
1662
-
+2.626 F(output.)144 314.4 Q(The)144 338.4 Q F2(format)3.017 E F0 .517(i\
1656 ➡ 1663 s a character string which contains three types of objects: plain chara\
1657 ➡ 1664 cters, which are)3.017 F .704(simply copied to standard output, charact\
1658
-
No equivalent source code line in the reference code can be identified.
-er escape sequences, which are con)144 321.6 R -.15(ve)-.4 G .703
1665
-
+er escape sequences, which are con)144 350.4 R -.15(ve)-.4 G .703
1659 ➡ 1666 (rted and copied to).15 F .036(the standard output, and format speci\
1660
-
No equivalent source code line in the reference code can be identified.
-\214cations, each of which causes printing of the ne)144 333.6 R .037
1661
-
No equivalent source code line in the reference code can be identified.
-(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 345.6 Q(gument)-.37 E F0
1667
-
+\214cations, each of which causes printing of the ne)144 362.4 R .037
1668
-
+(xt successi)-.15 F -.15(ve)-.25 G F2(ar)144 374.4 Q(gument)-.37 E F0
1662 ➡ 1669 5.532(.I)C 3.032(na)-5.532 G .532(ddition to the standard)-3.032 F F2
1663 ➡ 1670 (printf)3.032 E F0 .532(\(1\) format speci\214cations,)B F1(printf)3.031
1664
-
No equivalent source code line in the reference code can be identified.
-E F0 .531(interprets the follo)3.031 F(w-)-.25 E(ing e)144 357.6 Q
1665
-
No equivalent source code line in the reference code can be identified.
-(xtensions:)-.15 E F1(%b)144 369.6 Q F0(causes)180 369.6 Q F1(printf)
1671
-
+E F0 .531(interprets the follo)3.031 F(w-)-.25 E(ing e)144 386.4 Q
1672
-
+(xtensions:)-.15 E F1(%b)144 398.4 Q F0(causes)180 398.4 Q F1(printf)
1666 ➡ 1673 2.595 E F0 .096(to e)2.595 F .096
1667 ➡ 1674 (xpand backslash escape sequences in the corresponding)-.15 F F2(ar)
1668
-
No equivalent source code line in the reference code can be identified.
-2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 381.6 Q(ay as)
1669
-
No equivalent source code line in the reference code can be identified.
--.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 393.6 Q F0(causes)180 393.6 Q
1675
-
+2.596 E(gument)-.37 E F0 .096(in the)2.596 F(same w)180 410.4 Q(ay as)
1676
-
+-.1 E F1(echo \255e)2.5 E F0(.)A F1(%q)144 422.4 Q F0(causes)180 422.4 Q
1670 ➡ 1677 F1(printf)2.51 E F0 .01(to output the corresponding)2.51 F F2(ar)2.51 E
1671 ➡ 1678 (gument)-.37 E F0 .01(in a format that can be reused as shell)2.51 F
1672
-
No equivalent source code line in the reference code can be identified.
-(input.)180 405.6 Q F1(%\()144 417.6 Q F2(datefmt)A F1(\)T)A F0(causes)
1673
-
No equivalent source code line in the reference code can be identified.
-180 429.6 Q F1(printf)4.403 E F0 1.904
1679
-
+(input.)180 434.4 Q F1(%\()144 446.4 Q F2(datefmt)A F1(\)T)A F0(causes)
1680
-
+180 458.4 Q F1(printf)4.403 E F0 1.904
1674 ➡ 1681 (to output the date-time string resulting from using)4.403 F F2(datefmt)
1675
-
No equivalent source code line in the reference code can be identified.
-4.404 E F0 1.904(as a format)4.404 F .381(string for)180 441.6 R F2
1682
-
+4.404 E F0 1.904(as a format)4.404 F .381(string for)180 470.4 R F2
1676 ➡ 1683 (strftime)2.881 E F0 2.881(\(3\). The)B(corresponding)2.881 E F2(ar)
1677 ➡ 1684 2.881 E(gument)-.37 E F0 .381(is an inte)2.881 F .381
1678 ➡ 1685 (ger representing the number)-.15 F .292(of seconds since the epoch.)180
1679
-
No equivalent source code line in the reference code can be identified.
-453.6 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F
1686
-
+482.4 R -1 -.8(Tw o)5.293 H .293(special ar)3.593 F .293(gument v)-.18 F
1680 ➡ 1687 .293(alues may be used: \2551 represents the)-.25 F .694
1681
-
No equivalent source code line in the reference code can be identified.
-(current time, and \2552 represents the time the shell w)180 465.6 R
1688
-
+(current time, and \2552 represents the time the shell w)180 494.4 R
1682 ➡ 1689 .693(as in)-.1 F -.2(vo)-.4 G -.1(ke).2 G 3.193(d. If).1 F .693(no ar)
1683
-
No equivalent source code line in the reference code can be identified.
-3.193 F .693(gument is speci-)-.18 F .21(\214ed, con)180 477.6 R -.15
1690
-
+3.193 F .693(gument is speci-)-.18 F .21(\214ed, con)180 506.4 R -.15
1684 ➡ 1691 (ve)-.4 G .21(rsion beha).15 F -.15(ve)-.2 G 2.71(sa).15 G 2.71(si)-2.71
1685 ➡ 1692 G 2.71<66ad>-2.71 G 2.71(1h)-2.71 G .21(ad been gi)-2.71 F -.15(ve)-.25
1686 ➡ 1693 G 2.71(n. This).15 F .21(is an e)2.71 F .21(xception to the usual)-.15 F
1687
-
No equivalent source code line in the reference code can be identified.
-F1(printf)2.71 E F0(beha)180 489.6 Q(vior)-.2 E(.)-.55 E(Ar)144 506.4 Q
1694
-
+F1(printf)2.71 E F0(beha)180 518.4 Q(vior)-.2 E(.)-.55 E(Ar)144 535.2 Q
1688 ➡ 1695 .464(guments to non-string format speci\214ers are treated as C constan\
1689 ➡ 1696 ts, e)-.18 F .463(xcept that a leading plus or)-.15 F 1.258
1690
-
No equivalent source code line in the reference code can be identified.
-(minus sign is allo)144 518.4 R 1.259
1697
-
+(minus sign is allo)144 547.2 R 1.259
1691 ➡ 1698 (wed, and if the leading character is a single or double quote, the v)
1692
-
No equivalent source code line in the reference code can be identified.
--.25 F 1.259(alue is the)-.25 F(ASCII v)144 530.4 Q(alue of the follo)
1693
-
No equivalent source code line in the reference code can be identified.
--.25 E(wing character)-.25 E(.)-.55 E(The)144 547.2 Q F2(format)3.424 E
1694
-
No equivalent source code line in the reference code can be identified.
-F0 .923(is reused as necessary to consume all of the)3.424 F F2(ar)3.423
1695
-
No equivalent source code line in the reference code can be identified.
-E(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format)
1696
-
No equivalent source code line in the reference code can be identified.
-3.423 E F0 .923(requires more)3.423 F F2(ar)144 559.2 Q(guments)-.37 E
1697
-
No equivalent source code line in the reference code can be identified.
-F0 .033(than are supplied, the e)2.533 F .033
1699
-
+-.25 F 1.259(alue is the)-.25 F(ASCII v)144 559.2 Q(alue of the follo)
1700
-
+-.25 E(wing character)-.25 E(.)-.55 E(The)144 576 Q F2(format)3.424 E F0
1701
-
+.923(is reused as necessary to consume all of the)3.424 F F2(ar)3.423 E
1702
-
+(guments)-.37 E F0 5.923(.I)C 3.423(ft)-5.923 G(he)-3.423 E F2(format)
1703
-
+3.423 E F0 .923(requires more)3.423 F F2(ar)144 588 Q(guments)-.37 E F0
1704
-
+.033(than are supplied, the e)2.533 F .033
1698 ➡ 1705 (xtra format speci\214cations beha)-.15 F .333 -.15(ve a)-.2 H 2.533(si)
1699 ➡ 1706 .15 G 2.533(faz)-2.533 G .033(ero v)-2.533 F .034(alue or null string,)
1700
-
No equivalent source code line in the reference code can be identified.
--.25 F(as appropriate, had been supplied.)144 571.2 Q(The return v)5 E
1707
-
+-.25 F(as appropriate, had been supplied.)144 600 Q(The return v)5 E
1701 ➡ 1708 (alue is zero on success, non-zero on f)-.25 E(ailure.)-.1 E F1(pushd)
1702
-
No equivalent source code line in the reference code can be identified.
-108 588 Q F0([)2.5 E F1<ad6e>A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C
1703
-
No equivalent source code line in the reference code can be identified.
-<ad>-2.5 E F2(n)A F0(])A F1(pushd)108 600 Q F0([)2.5 E F1<ad6e>A F0 2.5
1704
-
No equivalent source code line in the reference code can be identified.
-(][)C F2(dir)-2.5 E F0(])A .64(Adds a directory to the top of the direc\
1705
-
No equivalent source code line in the reference code can be identified.
-tory stack, or rotates the stack, making the ne)144 612 R 3.139(wt)-.25
1706
-
No equivalent source code line in the reference code can be identified.
-G .639(op of the)-3.139 F .416(stack the current w)144 624 R .416
1709
-
+108 616.8 Q F0([)2.5 E F1<ad6e>A F0 2.5(][)C(+)-2.5 E F2(n)A F0 2.5(][)C
1710
-
+<ad>-2.5 E F2(n)A F0(])A F1(pushd)108 628.8 Q F0([)2.5 E F1<ad6e>A F0
1711
-
+2.5(][)C F2(dir)-2.5 E F0(])A .64(Adds a directory to the top of the di\
1712
-
+rectory stack, or rotates the stack, making the ne)144 640.8 R 3.139(wt)
1713
-
+-.25 G .639(op of the)-3.139 F .416(stack the current w)144 652.8 R .416
1707 ➡ 1714 (orking directory)-.1 F 5.416(.W)-.65 G .416(ith no ar)-5.816 F
1708 ➡ 1715 (guments,)-.18 E F1(pushd)2.916 E F0 -.15(ex)2.916 G .416
1709 ➡ 1716 (changes the top tw).15 F 2.917(od)-.1 G(irectories)-2.917 E 1.625
1710
-
No equivalent source code line in the reference code can be identified.
-(and returns 0, unless the directory stack is empty)144 636 R 6.625(.A)
1711
-
No equivalent source code line in the reference code can be identified.
--.65 G -.18(rg)-6.625 G 1.625(uments, if supplied, ha).18 F 1.925 -.15
1712
-
No equivalent source code line in the reference code can be identified.
-(ve t)-.2 H 1.625(he follo).15 F(wing)-.25 E(meanings:)144 648 Q F1
1713
-
No equivalent source code line in the reference code can be identified.
-<ad6e>144 660 Q F0 1.811(Suppresses the normal change of directory when\
1714
-
No equivalent source code line in the reference code can be identified.
- rotating or adding directories to the)180 660 R
1715
-
No equivalent source code line in the reference code can be identified.
-(stack, so that only the stack is manipulated.)180 672 Q F1(+)144 684 Q
1716
-
No equivalent source code line in the reference code can be identified.
-F2(n)A F0 1.268(Rotates the stack so that the)180 684 R F2(n)3.768 E F0
1717
-
No equivalent source code line in the reference code can be identified.
-1.267(th directory \(counting from the left of the list sho)B 1.267
1718
-
No equivalent source code line in the reference code can be identified.
-(wn by)-.25 F F1(dirs)180 696 Q F0 2.5(,s)C
1719
-
No equivalent source code line in the reference code can be identified.
-(tarting with zero\) is at the top.)-2.5 E F1<ad>144 708 Q F2(n)A F0 .92
1720
-
No equivalent source code line in the reference code can be identified.
-(Rotates the stack so that the)180 708 R F2(n)3.42 E F0 .92
1721
-
No equivalent source code line in the reference code can be identified.
-(th directory \(counting from the right of the list sho)B .92(wn by)-.25
1722
-
No equivalent source code line in the reference code can be identified.
-F F1(dirs)180 720 Q F0 2.5(,s)C(tarting with zero\) is at the top.)-2.5
1723
-
No equivalent source code line in the reference code can be identified.
-E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(12)198.725 E 0 Cg EP
1717
-
+(and returns 0, unless the directory stack is empty)144 664.8 R 6.625
1718
-
+(.A)-.65 G -.18(rg)-6.625 G 1.625(uments, if supplied, ha).18 F 1.925
1719
-
+-.15(ve t)-.2 H 1.625(he follo).15 F(wing)-.25 E(meanings:)144 676.8 Q
1720
-
+F1<ad6e>144 688.8 Q F0 1.811(Suppresses the normal change of directory \
1721
-
+when rotating or adding directories to the)180 688.8 R
1722
-
+(stack, so that only the stack is manipulated.)180 700.8 Q F1(+)144
1723
-
+712.8 Q F2(n)A F0 1.268(Rotates the stack so that the)180 712.8 R F2(n)
1724
-
+3.768 E F0 1.267(th directory \(counting from the left of the list sho)B
1725
-
+1.267(wn by)-.25 F F1(dirs)180 724.8 Q F0 2.5(,s)C
1726
-
+(tarting with zero\) is at the top.)-2.5 E(GNU Bash 5.0)72 768 Q
1727
-
+(2004 Apr 20)149.565 E(12)198.725 E 0 Cg EP
1724 ➡ 1728 %%Page: 13 13
1725 ➡ 1729 %%BeginPageSetup
1726 ➡ 1730 BP
1727 ➡ 1731 %%EndPageSetup
1728 ➡ 1732 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1729 ➡ 1733 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1730
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Italic@0 SF(dir)144.35 84 Q F0
1731
-
No equivalent source code line in the reference code can be identified.
-(Adds)180 84 Q F1(dir)3.138 E F0 .288
1734
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad>144 84 Q/F2 10
1735
-
+/Times-Italic@0 SF(n)A F0 .92(Rotates the stack so that the)180 84 R F2
1736
-
+(n)3.42 E F0 .92(th directory \(counting from the right of the list sho)
1737
-
+B .92(wn by)-.25 F F1(dirs)180 96 Q F0 2.5(,s)C
1738
-
+(tarting with zero\) is at the top.)-2.5 E F2(dir)144.35 108 Q F0(Adds)
1739
-
+180 108 Q F2(dir)3.138 E F0 .288
1732 ➡ 1740 (to the directory stack at the top, making it the ne)3.518 F 2.787(wc)
1733 ➡ 1741 -.25 G .287(urrent w)-2.787 F .287(orking directory as)-.1 F
1734
-
No equivalent source code line in the reference code can be identified.
-(if it had been supplied as the ar)180 96 Q(gument to the)-.18 E/F2 10
1735
-
No equivalent source code line in the reference code can be identified.
-/Times-Bold@0 SF(cd)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144
1736
-
No equivalent source code line in the reference code can be identified.
-112.8 R F2(pushd)2.988 E F0 .488(command is successful, a)2.988 F F2
1737
-
No equivalent source code line in the reference code can be identified.
-(dirs)2.988 E F0 .488(is performed as well.)2.988 F .489
1738
-
No equivalent source code line in the reference code can be identified.
-(If the \214rst form is used,)5.488 F F2(pushd)2.989 E F0 1.04
1739
-
No equivalent source code line in the reference code can be identified.
-(returns 0 unless the cd to)144 124.8 R F1(dir)3.89 E F0 -.1(fa)4.27 G
1740
-
No equivalent source code line in the reference code can be identified.
-3.539(ils. W).1 F 1.039(ith the second form,)-.4 F F2(pushd)3.539 E F0
1741
-
No equivalent source code line in the reference code can be identified.
-1.039(returns 0 unless the directory)3.539 F .846(stack is empty)144
1742
-
No equivalent source code line in the reference code can be identified.
-136.8 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent directory stack ele\
1743
-
No equivalent source code line in the reference code can be identified.
-ment is speci\214ed, or the directory change to the)-.15 F
1744
-
No equivalent source code line in the reference code can be identified.
-(speci\214ed ne)144 148.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5 E
1745
-
No equivalent source code line in the reference code can be identified.
-(ails.)-.1 E F2(pwd)108 165.6 Q F0([)2.5 E F2(\255LP)A F0(])A .845
1746
-
No equivalent source code line in the reference code can be identified.
-(Print the absolute pathname of the current w)144 177.6 R .845
1742
-
+(if it had been supplied as the ar)180 120 Q(gument to the)-.18 E F1(cd)
1743
-
+2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .488(If the)144 136.8 R F1(pushd)2.988
1744
-
+E F0 .488(command is successful, a)2.988 F F1(dirs)2.988 E F0 .488
1745
-
+(is performed as well.)2.988 F .489(If the \214rst form is used,)5.488 F
1746
-
+F1(pushd)2.989 E F0 1.04(returns 0 unless the cd to)144 148.8 R F2(dir)
1747
-
+3.89 E F0 -.1(fa)4.27 G 3.539(ils. W).1 F 1.039(ith the second form,)-.4
1748
-
+F F1(pushd)3.539 E F0 1.039(returns 0 unless the directory)3.539 F .846
1749
-
+(stack is empty)144 160.8 R 3.346(,an)-.65 G(on-e)-3.346 E .847(xistent\
1750
-
+ directory stack element is speci\214ed, or the directory change to the)
1751
-
+-.15 F(speci\214ed ne)144 172.8 Q 2.5(wc)-.25 G(urrent directory f)-2.5
1752
-
+E(ails.)-.1 E F1(pwd)108 189.6 Q F0([)2.5 E F1(\255LP)A F0(])A .845
1753
-
+(Print the absolute pathname of the current w)144 201.6 R .845
1747 ➡ 1754 (orking directory)-.1 F 5.844(.T)-.65 G .844
1748 ➡ 1755 (he pathname printed contains no)-5.844 F .181(symbolic links if the)144
1749
-
No equivalent source code line in the reference code can be identified.
-189.6 R F2<ad50>2.681 E F0 .181(option is supplied or the)2.681 F F2
1750
-
No equivalent source code line in the reference code can be identified.
-.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F2
1756
-
+213.6 R F1<ad50>2.681 E F0 .181(option is supplied or the)2.681 F F1
1757
-
+.181(\255o ph)2.681 F(ysical)-.15 E F0 .181(option to the)2.681 F F1
1751 ➡ 1758 (set)2.681 E F0 -.2(bu)2.681 G .182(iltin command is).2 F 3.264
1752
-
No equivalent source code line in the reference code can be identified.
-(enabled. If)144 201.6 R(the)3.264 E F2<ad4c>3.264 E F0 .763
1759
-
+(enabled. If)144 225.6 R(the)3.264 E F1<ad4c>3.264 E F0 .763
1753 ➡ 1760 (option is used, the pathname printed may contain symbolic links.)3.264
1754 ➡ 1761 F .763(The return)5.763 F 1.36(status is 0 unless an error occurs while\
1755
-
No equivalent source code line in the reference code can be identified.
- reading the name of the current directory or an in)144 213.6 R -.25(va)
1756
-
No equivalent source code line in the reference code can be identified.
--.4 G(lid).25 E(option is supplied.)144 225.6 Q F2 -.18(re)108 242.4 S
1757
-
No equivalent source code line in the reference code can be identified.
-(ad).18 E F0([)3.817 E F2(\255ers)A F0 3.817(][)C F2<ad61>-3.817 E F1
1758
-
No equivalent source code line in the reference code can be identified.
-(aname)3.817 E F0 3.817(][)C F2<ad64>-3.817 E F1(delim)3.817 E F0 3.817
1759
-
No equivalent source code line in the reference code can be identified.
-(][)C F2<ad69>-3.817 E F1(te)3.817 E(xt)-.2 E F0 3.817(][)C F2<ad6e>
1760
-
No equivalent source code line in the reference code can be identified.
--3.817 E F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F2<ad4e>-3.816 E
1761
-
No equivalent source code line in the reference code can be identified.
-F1(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F2<ad70>-3.816 E F1(pr)
1762
-
No equivalent source code line in the reference code can be identified.
-3.816 E(ompt)-.45 E F0 3.816(][)C F2<ad74>-3.816 E F1(timeout)3.816 E F0
1763
-
No equivalent source code line in the reference code can be identified.
-3.816(][)C F2<ad75>-3.816 E F1(fd)3.816 E F0(])A([)108 254.4 Q F1(name)A
1762
-
+ reading the name of the current directory or an in)144 237.6 R -.25(va)
1763
-
+-.4 G(lid).25 E(option is supplied.)144 249.6 Q F1 -.18(re)108 266.4 S
1764
-
+(ad).18 E F0([)3.817 E F1(\255ers)A F0 3.817(][)C F1<ad61>-3.817 E F2
1765
-
+(aname)3.817 E F0 3.817(][)C F1<ad64>-3.817 E F2(delim)3.817 E F0 3.817
1766
-
+(][)C F1<ad69>-3.817 E F2(te)3.817 E(xt)-.2 E F0 3.817(][)C F1<ad6e>
1767
-
+-3.817 E F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1<ad4e>-3.816 E
1768
-
+F2(nc)3.816 E(har)-.15 E(s)-.1 E F0 3.816(][)C F1<ad70>-3.816 E F2(pr)
1769
-
+3.816 E(ompt)-.45 E F0 3.816(][)C F1<ad74>-3.816 E F2(timeout)3.816 E F0
1770
-
+3.816(][)C F1<ad75>-3.816 E F2(fd)3.816 E F0(])A([)108 278.4 Q F2(name)A
1764 ➡ 1771 F0(...])2.5 E .516(One line is read from the standard input, or from th\
1765
-
No equivalent source code line in the reference code can be identified.
-e \214le descriptor)144 266.4 R F1(fd)3.016 E F0 .516(supplied as an ar)
1766
-
No equivalent source code line in the reference code can be identified.
-3.016 F .517(gument to)-.18 F(the)144 278.4 Q F2<ad75>3.848 E F0 1.348
1772
-
+e \214le descriptor)144 290.4 R F2(fd)3.016 E F0 .516(supplied as an ar)
1773
-
+3.016 F .517(gument to)-.18 F(the)144 302.4 Q F1<ad75>3.848 E F0 1.348
1767 ➡ 1774 (option, split into w)3.848 F 1.348(ords as described abo)-.1 F 1.647
1768
-
No equivalent source code line in the reference code can be identified.
--.15(ve u)-.15 H(nder).15 E F2 -.75(Wo)3.847 G 1.347(rd Splitting).75 F
1775
-
+-.15(ve u)-.15 H(nder).15 E F1 -.75(Wo)3.847 G 1.347(rd Splitting).75 F
1769 ➡ 1776 F0 3.847(,a)C 1.347(nd the \214rst w)-3.847 F 1.347(ord is)-.1 F 1.465
1770
-
No equivalent source code line in the reference code can be identified.
-(assigned to the \214rst)144 290.4 R F1(name)3.965 E F0 3.965(,t).18 G
1771
-
No equivalent source code line in the reference code can be identified.
-1.465(he second w)-3.965 F 1.465(ord to the second)-.1 F F1(name)3.965 E
1777
-
+(assigned to the \214rst)144 314.4 R F2(name)3.965 E F0 3.965(,t).18 G
1778
-
+1.465(he second w)-3.965 F 1.465(ord to the second)-.1 F F2(name)3.965 E
1772 ➡ 1779 F0 3.965(,a).18 G 1.465(nd so on.)-3.965 F 1.465(If there are more)6.465
1773
-
No equivalent source code line in the reference code can be identified.
-F -.1(wo)144 302.4 S 1.112(rds than names, the remaining w).1 F 1.112
1780
-
+F -.1(wo)144 326.4 S 1.112(rds than names, the remaining w).1 F 1.112
1774 ➡ 1781 (ords and their interv)-.1 F 1.112
1775
-
No equivalent source code line in the reference code can be identified.
-(ening delimiters are assigned to the last)-.15 F F1(name)144 314.4 Q F0
1782
-
+(ening delimiters are assigned to the last)-.15 F F2(name)144 338.4 Q F0
1776 ➡ 1783 5.722(.I).18 G 3.222(ft)-5.722 G .722(here are fe)-3.222 F .722(wer w)
1777 ➡ 1784 -.25 F .723
1778 ➡ 1785 (ords read from the input stream than names, the remaining names are)-.1
1779
-
No equivalent source code line in the reference code can be identified.
-F .532(assigned empty v)144 326.4 R 3.032(alues. The)-.25 F .532
1786
-
+F .532(assigned empty v)144 350.4 R 3.032(alues. The)-.25 F .532
1780 ➡ 1787 (characters in)3.032 F/F3 9/Times-Bold@0 SF(IFS)3.032 E F0 .531
1781 ➡ 1788 (are used to split the line into w)2.782 F .531(ords using the same)-.1
1782
-
No equivalent source code line in the reference code can be identified.
-F .197(rules the shell uses for e)144 338.4 R .197
1783
-
No equivalent source code line in the reference code can be identified.
-(xpansion \(described abo)-.15 F .497 -.15(ve u)-.15 H(nder).15 E F2
1789
-
+F .197(rules the shell uses for e)144 362.4 R .197
1790
-
+(xpansion \(described abo)-.15 F .497 -.15(ve u)-.15 H(nder).15 E F1
1784 ➡ 1791 -.75(Wo)2.697 G .197(rd Splitting).75 F F0 2.697(\). The)B .197
1785
-
No equivalent source code line in the reference code can be identified.
-(backslash charac-)2.697 F .157(ter \()144 350.4 R F2(\\)A F0 2.657(\)m)
1792
-
+(backslash charac-)2.697 F .157(ter \()144 374.4 R F1(\\)A F0 2.657(\)m)
1786 ➡ 1793 C .157(ay be used to remo)-2.657 F .457 -.15(ve a)-.15 H .457 -.15(ny s)
1787 ➡ 1794 .15 H .157(pecial meaning for the ne).15 F .156
1788 ➡ 1795 (xt character read and for line continu-)-.15 F 2.5(ation. Options,)144
1789
-
No equivalent source code line in the reference code can be identified.
-362.4 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E
1790
-
No equivalent source code line in the reference code can be identified.
-(wing meanings:)-.25 E F2<ad61>144 374.4 Q F1(aname)2.5 E F0 1.049
1791
-
No equivalent source code line in the reference code can be identified.
-(The w)180 386.4 R 1.049
1796
-
+386.4 R(if supplied, ha)2.5 E .3 -.15(ve t)-.2 H(he follo).15 E
1797
-
+(wing meanings:)-.25 E F1<ad61>144 398.4 Q F2(aname)2.5 E F0 1.049
1798
-
+(The w)180 410.4 R 1.049
1792 ➡ 1799 (ords are assigned to sequential indices of the array v)-.1 F(ariable)
1793
-
No equivalent source code line in the reference code can be identified.
--.25 E F1(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F1
1794
-
No equivalent source code line in the reference code can be identified.
-(aname)180.33 398.4 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25
1795
-
No equivalent source code line in the reference code can be identified.
-(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F1(name)2.5 E F0(ar)2.5
1796
-
No equivalent source code line in the reference code can be identified.
-E(guments are ignored.)-.18 E F2<ad64>144 410.4 Q F1(delim)2.5 E F0
1797
-
No equivalent source code line in the reference code can be identified.
-1.318(The \214rst character of)180 422.4 R F1(delim)3.818 E F0 1.317
1800
-
+-.25 E F2(aname)3.55 E F0 3.55(,s).18 G 1.05(tarting at 0.)-3.55 F F2
1801
-
+(aname)180.33 422.4 Q F0(is unset before an)2.68 E 2.5(yn)-.15 G .5 -.25
1802
-
+(ew va)-2.5 H(lues are assigned.).25 E(Other)5 E F2(name)2.5 E F0(ar)2.5
1803
-
+E(guments are ignored.)-.18 E F1<ad64>144 434.4 Q F2(delim)2.5 E F0
1804
-
+1.318(The \214rst character of)180 446.4 R F2(delim)3.818 E F0 1.317
1798 ➡ 1805 (is used to terminate the input line, rather than ne)3.818 F 3.817
1799
-
No equivalent source code line in the reference code can be identified.
-(wline. If)-.25 F F1(delim)180 434.4 Q F0(is the empty string,)2.5 E F2
1806
-
+(wline. If)-.25 F F2(delim)180 458.4 Q F0(is the empty string,)2.5 E F1
1800 ➡ 1807 -.18(re)2.5 G(ad).18 E F0
1801
-
No equivalent source code line in the reference code can be identified.
-(will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F2
1802
-
No equivalent source code line in the reference code can be identified.
-<ad65>144 446.4 Q F0 .372
1803
-
No equivalent source code line in the reference code can be identified.
-(If the standard input is coming from a terminal,)180 446.4 R F2 -.18
1808
-
+(will terminate a line when it reads a NUL character)2.5 E(.)-.55 E F1
1809
-
+<ad65>144 470.4 Q F0 .372
1810
-
+(If the standard input is coming from a terminal,)180 470.4 R F1 -.18
1804 ➡ 1811 (re)2.873 G(adline).18 E F0(\(see)2.873 E F3(READLINE)2.873 E F0(abo)
1805 ➡ 1812 2.623 E -.15(ve)-.15 G 2.873(\)i).15 G 2.873(su)-2.873 G(sed)-2.873 E
1806
-
No equivalent source code line in the reference code can be identified.
-.218(to obtain the line.)180 458.4 R .218
1813
-
+.218(to obtain the line.)180 482.4 R .218
1807 ➡ 1814 (Readline uses the current \(or def)5.218 F .218
1808 ➡ 1815 (ault, if line editing w)-.1 F .218(as not pre)-.1 F(viously)-.25 E
1809
-
No equivalent source code line in the reference code can be identified.
-(acti)180 470.4 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E
1816
-
+(acti)180 494.4 Q -.15(ve)-.25 G 2.5(\)e).15 G(diting settings, b)-2.5 E
1810 ➡ 1817 (ut uses Readline')-.2 E 2.5(sd)-.55 G(ef)-2.5 E
1811
-
No equivalent source code line in the reference code can be identified.
-(ault \214lename completion.)-.1 E F2<ad69>144 482.4 Q F1(te)2.5 E(xt)
1812
-
No equivalent source code line in the reference code can be identified.
--.2 E F0(If)180 482.4 Q F2 -.18(re)2.715 G(adline).18 E F0 .216
1813
-
No equivalent source code line in the reference code can be identified.
-(is being used to read the line,)2.715 F F1(te)2.716 E(xt)-.2 E F0 .216
1818
-
+(ault \214lename completion.)-.1 E F1<ad69>144 506.4 Q F2(te)2.5 E(xt)
1819
-
+-.2 E F0(If)180 506.4 Q F1 -.18(re)2.715 G(adline).18 E F0 .216
1820
-
+(is being used to read the line,)2.715 F F2(te)2.716 E(xt)-.2 E F0 .216
1814 ➡ 1821 (is placed into the editing b)2.716 F(uf)-.2 E .216(fer before edit-)
1815
-
No equivalent source code line in the reference code can be identified.
--.25 F(ing be)180 494.4 Q(gins.)-.15 E F2<ad6e>144 506.4 Q F1(nc)2.5 E
1816
-
No equivalent source code line in the reference code can be identified.
-(har)-.15 E(s)-.1 E F2 -.18(re)180 518.4 S(ad).18 E F0 1.395
1817
-
No equivalent source code line in the reference code can be identified.
-(returns after reading)3.895 F F1(nc)3.895 E(har)-.15 E(s)-.1 E F0 1.395
1822
-
+-.25 F(ing be)180 518.4 Q(gins.)-.15 E F1<ad6e>144 530.4 Q F2(nc)2.5 E
1823
-
+(har)-.15 E(s)-.1 E F1 -.18(re)180 542.4 S(ad).18 E F0 1.395
1824
-
+(returns after reading)3.895 F F2(nc)3.895 E(har)-.15 E(s)-.1 E F0 1.395
1818 ➡ 1825 (characters rather than w)3.895 F 1.394(aiting for a complete line of)
1819
-
No equivalent source code line in the reference code can be identified.
--.1 F(input, b)180 530.4 Q(ut honors a delimiter if fe)-.2 E(wer than)
1820
-
No equivalent source code line in the reference code can be identified.
--.25 E F1(nc)2.5 E(har)-.15 E(s)-.1 E F0
1821
-
No equivalent source code line in the reference code can be identified.
-(characters are read before the delimiter)2.5 E(.)-.55 E F2<ad4e>144
1822
-
No equivalent source code line in the reference code can be identified.
-542.4 Q F1(nc)2.5 E(har)-.15 E(s)-.1 E F2 -.18(re)180 554.4 S(ad).18 E
1823
-
No equivalent source code line in the reference code can be identified.
-F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F1(nc)3.769 E
1826
-
+-.1 F(input, b)180 554.4 Q(ut honors a delimiter if fe)-.2 E(wer than)
1827
-
+-.25 E F2(nc)2.5 E(har)-.15 E(s)-.1 E F0
1828
-
+(characters are read before the delimiter)2.5 E(.)-.55 E F1<ad4e>144
1829
-
+566.4 Q F2(nc)2.5 E(har)-.15 E(s)-.1 E F1 -.18(re)180 578.4 S(ad).18 E
1830
-
+F0 1.269(returns after reading e)3.769 F(xactly)-.15 E F2(nc)3.769 E
1824 ➡ 1831 (har)-.15 E(s)-.1 E F0 1.269(characters rather than w)3.769 F 1.27
1825 ➡ 1832 (aiting for a complete)-.1 F .275
1826
-
No equivalent source code line in the reference code can be identified.
-(line of input, unless EOF is encountered or)180 566.4 R F2 -.18(re)
1833
-
+(line of input, unless EOF is encountered or)180 590.4 R F1 -.18(re)
1827 ➡ 1834 2.775 G(ad).18 E F0 .274(times out.)2.774 F .274
1828 ➡ 1835 (Delimiter characters encoun-)5.274 F 1.002
1829
-
No equivalent source code line in the reference code can be identified.
-(tered in the input are not treated specially and do not cause)180 578.4
1830
-
No equivalent source code line in the reference code can be identified.
-R F2 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F1(nc)
1831
-
No equivalent source code line in the reference code can be identified.
-3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 590.4 R .608
1832
-
No equivalent source code line in the reference code can be identified.
-(The result is not split on the characters in)5.609 F F2(IFS)3.108 E F0
1833
-
No equivalent source code line in the reference code can be identified.
-3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 602.4 S .669
1836
-
+(tered in the input are not treated specially and do not cause)180 602.4
1837
-
+R F1 -.18(re)3.503 G(ad).18 E F0 1.003(to return until)3.503 F F2(nc)
1838
-
+3.503 E(har)-.15 E(s)-.1 E F0 .609(characters are read.)180 614.4 R .608
1839
-
+(The result is not split on the characters in)5.609 F F1(IFS)3.108 E F0
1840
-
+3.108(;t)C .608(he intent is that the)-3.108 F -.25(va)180 626.4 S .669
1834 ➡ 1841 (riable is assigned e).25 F .669
1835 ➡ 1842 (xactly the characters read \(with the e)-.15 F .67
1836
-
No equivalent source code line in the reference code can be identified.
-(xception of backslash; see the)-.15 F F2<ad72>180 614.4 Q F0
1837
-
No equivalent source code line in the reference code can be identified.
-(option belo)2.5 E(w\).)-.25 E F2<ad70>144 626.4 Q F1(pr)2.5 E(ompt)-.45
1838
-
No equivalent source code line in the reference code can be identified.
-E F0(Display)180 638.4 Q F1(pr)3.661 E(ompt)-.45 E F0 1.161
1843
-
+(xception of backslash; see the)-.15 F F1<ad72>180 638.4 Q F0
1844
-
+(option belo)2.5 E(w\).)-.25 E F1<ad70>144 650.4 Q F2(pr)2.5 E(ompt)-.45
1845
-
+E F0(Display)180 662.4 Q F2(pr)3.661 E(ompt)-.45 E F0 1.161
1839 ➡ 1846 (on standard error)3.661 F 3.661(,w)-.4 G 1.161(ithout a trailing ne)
1840
-
No equivalent source code line in the reference code can be identified.
--3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 650.4 Q
1847
-
+-3.661 F 1.161(wline, before attempting to read)-.25 F(an)180 674.4 Q
1841 ➡ 1848 2.5(yi)-.15 G 2.5(nput. The)-2.5 F
1842
-
No equivalent source code line in the reference code can be identified.
-(prompt is displayed only if input is coming from a terminal.)2.5 E F2
1843
-
No equivalent source code line in the reference code can be identified.
-<ad72>144 662.4 Q F0 .543(Backslash does not act as an escape character)
1844
-
No equivalent source code line in the reference code can be identified.
-180 662.4 R 5.543(.T)-.55 G .544
1845
-
No equivalent source code line in the reference code can be identified.
-(he backslash is considered to be part of)-5.543 F(the line.)180 674.4 Q
1849
-
+(prompt is displayed only if input is coming from a terminal.)2.5 E F1
1850
-
+<ad72>144 686.4 Q F0 .543(Backslash does not act as an escape character)
1851
-
+180 686.4 R 5.543(.T)-.55 G .544
1852
-
+(he backslash is considered to be part of)-5.543 F(the line.)180 698.4 Q
1846 ➡ 1853 (In particular)5 E 2.5(,ab)-.4 G(ackslash-ne)-2.5 E
1847
-
No equivalent source code line in the reference code can be identified.
-(wline pair may not be used as a line continuation.)-.25 E F2<ad73>144
1848
-
No equivalent source code line in the reference code can be identified.
-686.4 Q F0(Silent mode.)180 686.4 Q
1849
-
No equivalent source code line in the reference code can be identified.
-(If input is coming from a terminal, characters are not echoed.)5 E F2
1850
-
No equivalent source code line in the reference code can be identified.
-<ad74>144 698.4 Q F1(timeout)2.5 E F0(Cause)180 710.4 Q F2 -.18(re)2.929
1851
-
No equivalent source code line in the reference code can be identified.
-G(ad).18 E F0 .428(to time out and return f)2.929 F .428
1852
-
No equivalent source code line in the reference code can be identified.
-(ailure if a complete line of input \(or a speci\214ed num-)-.1 F .56
1853
-
No equivalent source code line in the reference code can be identified.
-(ber of characters\) is not read within)180 722.4 R F1(timeout)3.061 E
1854
-
No equivalent source code line in the reference code can be identified.
-F0(seconds.)3.061 E F1(timeout)5.561 E F0 .561(may be a decimal number)
1855
-
No equivalent source code line in the reference code can be identified.
-3.061 F(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(13)198.725 E 0 Cg EP
1854
-
+(wline pair may not be used as a line continuation.)-.25 E F1<ad73>144
1855
-
+710.4 Q F0(Silent mode.)180 710.4 Q
1856
-
+(If input is coming from a terminal, characters are not echoed.)5 E
1857
-
+(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(13)198.725 E 0 Cg EP
1856 ➡ 1858 %%Page: 14 14
1857 ➡ 1859 %%BeginPageSetup
1858 ➡ 1860 BP
1859 ➡ 1861 %%EndPageSetup
1860 ➡ 1862 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
1861 ➡ 1863 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
1862
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E(with a fractional portion follo)180 84 Q
1864
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad74>144 84 Q/F2 10
1865
-
+/Times-Italic@0 SF(timeout)2.5 E F0(Cause)180 96 Q F1 -.18(re)2.929 G
1866
-
+(ad).18 E F0 .428(to time out and return f)2.929 F .428
1867
-
+(ailure if a complete line of input \(or a speci\214ed num-)-.1 F .56
1868
-
+(ber of characters\) is not read within)180 108 R F2(timeout)3.061 E F0
1869
-
+(seconds.)3.061 E F2(timeout)5.561 E F0 .561(may be a decimal number)
1870
-
+3.061 F(with a fractional portion follo)180 120 Q
1863 ➡ 1871 (wing the decimal point.)-.25 E(This option is only ef)5 E(fecti)-.25 E
1864
-
No equivalent source code line in the reference code can be identified.
-.3 -.15(ve i)-.25 H(f).15 E/F1 10/Times-Bold@0 SF -.18(re)2.5 G(ad).18 E
1865
-
No equivalent source code line in the reference code can be identified.
-F0 .506(is reading input from a terminal, pipe, or other special \214le\
1866
-
No equivalent source code line in the reference code can be identified.
-; it has no ef)180 96 R .506(fect when reading)-.25 F .59(from re)180
1867
-
No equivalent source code line in the reference code can be identified.
-108 R .59(gular \214les.)-.15 F(If)5.59 E F1 -.18(re)3.09 G(ad).18 E F0
1868
-
No equivalent source code line in the reference code can be identified.
-.589(times out,)3.09 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15
1869
-
No equivalent source code line in the reference code can be identified.
-(ve)-.2 G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .589
1870
-
No equivalent source code line in the reference code can be identified.
-(artial input read into the speci\214ed).15 F -.25(va)180 120 S(riable)
1871
-
No equivalent source code line in the reference code can be identified.
-.25 E/F2 10/Times-Italic@0 SF(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2
1872
-
No equivalent source code line in the reference code can be identified.
-(timeout)2.77 E F0 .27(is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27
1873
-
No equivalent source code line in the reference code can be identified.
-(returns immediately)2.77 F 2.77(,w)-.65 G .27(ithout trying to read an)
1874
-
No equivalent source code line in the reference code can be identified.
--2.77 F 2.77(yd)-.15 G(ata.)-2.77 E 1.12(The e)180 132 R 1.12
1875
-
No equivalent source code line in the reference code can be identified.
-(xit status is 0 if input is a)-.15 F -.25(va)-.2 G 1.12
1876
-
No equivalent source code line in the reference code can be identified.
-(ilable on the speci\214ed \214le descriptor).25 F 3.62(,n)-.4 G 1.12
1877
-
No equivalent source code line in the reference code can be identified.
-(on-zero other)-3.62 F(-)-.2 E 2.5(wise. The)180 144 R -.15(ex)2.5 G
1878
-
No equivalent source code line in the reference code can be identified.
-(it status is greater than 128 if the timeout is e).15 E(xceeded.)-.15 E
1879
-
No equivalent source code line in the reference code can be identified.
-F1<ad75>144 156 Q F2(fd)2.5 E F0(Read input from \214le descriptor)180
1880
-
No equivalent source code line in the reference code can be identified.
-156 Q F2(fd)2.5 E F0(.)A .476(If no)144 172.8 R F2(names)3.336 E F0 .476
1872
-
+.3 -.15(ve i)-.25 H(f).15 E F1 -.18(re)2.5 G(ad).18 E F0 .506(is readin\
1873
-
+g input from a terminal, pipe, or other special \214le; it has no ef)180
1874
-
+132 R .506(fect when reading)-.25 F .59(from re)180 144 R .59
1875
-
+(gular \214les.)-.15 F(If)5.59 E F1 -.18(re)3.09 G(ad).18 E F0 .589
1876
-
+(times out,)3.09 F F1 -.18(re)3.089 G(ad).18 E F0(sa)3.089 E -.15(ve)-.2
1877
-
+G 3.089(sa).15 G .889 -.15(ny p)-3.089 H .589
1878
-
+(artial input read into the speci\214ed).15 F -.25(va)180 156 S(riable)
1879
-
+.25 E F2(name)2.77 E F0 5.27(.I)C(f)-5.27 E F2(timeout)2.77 E F0 .27
1880
-
+(is 0,)2.77 F F1 -.18(re)2.77 G(ad).18 E F0 .27(returns immediately)2.77
1881
-
+F 2.77(,w)-.65 G .27(ithout trying to read an)-2.77 F 2.77(yd)-.15 G
1882
-
+(ata.)-2.77 E 1.12(The e)180 168 R 1.12(xit status is 0 if input is a)
1883
-
+-.15 F -.25(va)-.2 G 1.12(ilable on the speci\214ed \214le descriptor)
1884
-
+.25 F 3.62(,n)-.4 G 1.12(on-zero other)-3.62 F(-)-.2 E 2.5(wise. The)180
1885
-
+180 R -.15(ex)2.5 G(it status is greater than 128 if the timeout is e)
1886
-
+.15 E(xceeded.)-.15 E F1<ad75>144 192 Q F2(fd)2.5 E F0
1887
-
+(Read input from \214le descriptor)180 192 Q F2(fd)2.5 E F0(.)A .476
1888
-
+(If no)144 208.8 R F2(names)3.336 E F0 .476
1881 ➡ 1889 (are supplied, the line read is assigned to the v)3.246 F(ariable)-.25 E
1882 ➡ 1890 /F3 9/Times-Bold@0 SF(REPL)2.977 E(Y)-.828 E/F4 9/Times-Roman@0 SF(.)A
1883 ➡ 1891 F0 .477(The e)4.977 F .477(xit status is zero,)-.15 F .773
1884
-
No equivalent source code line in the reference code can be identified.
-(unless end-of-\214le is encountered,)144 184.8 R F1 -.18(re)3.273 G(ad)
1892
-
+(unless end-of-\214le is encountered,)144 220.8 R F1 -.18(re)3.273 G(ad)
1885 ➡ 1893 .18 E F0 .772
1886 ➡ 1894 (times out \(in which case the status is greater than 128\), a)3.273 F
1887
-
No equivalent source code line in the reference code can be identified.
--.25(va)144 196.8 S 2.004
1895
-
+-.25(va)144 232.8 S 2.004
1888 ➡ 1896 (riable assignment error \(such as assigning to a readonly v).25 F 2.005
1889 ➡ 1897 (ariable\) occurs, or an in)-.25 F -.25(va)-.4 G 2.005(lid \214le).25 F
1890
-
No equivalent source code line in the reference code can be identified.
-(descriptor is supplied as the ar)144 208.8 Q(gument to)-.18 E F1<ad75>
1891
-
No equivalent source code line in the reference code can be identified.
-2.5 E F0(.)A F1 -.18(re)108 225.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A
1898
-
+(descriptor is supplied as the ar)144 244.8 Q(gument to)-.18 E F1<ad75>
1899
-
+2.5 E F0(.)A F1 -.18(re)108 261.6 S(adonly).18 E F0([)2.5 E F1(\255aAf)A
1892 ➡ 1900 F0 2.5(][)C F1<ad70>-2.5 E F0 2.5(][)C F2(name)-2.5 E F0([=)A F2(wor)A
1893
-
No equivalent source code line in the reference code can be identified.
-(d)-.37 E F0 2.5(].)C(..])-2.5 E .77(The gi)144 237.6 R -.15(ve)-.25 G
1901
-
+(d)-.37 E F0 2.5(].)C(..])-2.5 E .77(The gi)144 273.6 R -.15(ve)-.25 G
1894 ➡ 1902 (n).15 E F2(names)3.27 E F0 .77(are mark)3.27 F .77(ed readonly; the v)
1895 ➡ 1903 -.1 F .77(alues of these)-.25 F F2(names)3.63 E F0 .77
1896
-
No equivalent source code line in the reference code can be identified.
-(may not be changed by subse-)3.54 F 1.096(quent assignment.)144 249.6 R
1904
-
+(may not be changed by subse-)3.54 F 1.096(quent assignment.)144 285.6 R
1897 ➡ 1905 1.096(If the)6.096 F F1<ad66>3.596 E F0 1.097
1898 ➡ 1906 (option is supplied, the functions corresponding to the)3.596 F F2
1899
-
No equivalent source code line in the reference code can be identified.
-(names)3.597 E F0 1.097(are so)3.597 F(mark)144 261.6 Q 3.334(ed. The)
1907
-
+(names)3.597 E F0 1.097(are so)3.597 F(mark)144 297.6 Q 3.334(ed. The)
1900 ➡ 1908 -.1 F F1<ad61>3.334 E F0 .834(option restricts the v)3.334 F .834
1901 ➡ 1909 (ariables to inde)-.25 F -.15(xe)-.15 G 3.334(da).15 G .834(rrays; the)
1902 ➡ 1910 -3.334 F F1<ad41>3.334 E F0 .834(option restricts the v)3.334 F(ari-)
1903
-
No equivalent source code line in the reference code can be identified.
--.25 E .776(ables to associati)144 273.6 R 1.076 -.15(ve a)-.25 H 3.276
1911
-
+-.25 E .776(ables to associati)144 309.6 R 1.076 -.15(ve a)-.25 H 3.276
1904 ➡ 1912 (rrays. If).15 F .777(both options are supplied,)3.276 F F1<ad41>3.277 E
1905 ➡ 1913 F0(tak)3.277 E .777(es precedence.)-.1 F .777(If no)5.777 F F2(name)
1906
-
No equivalent source code line in the reference code can be identified.
-3.637 E F0(ar)3.457 E(gu-)-.18 E .522(ments are gi)144 285.6 R -.15(ve)
1914
-
+3.637 E F0(ar)3.457 E(gu-)-.18 E .522(ments are gi)144 321.6 R -.15(ve)
1907 ➡ 1915 -.25 G .521(n, or if the).15 F F1<ad70>3.021 E F0 .521
1908 ➡ 1916 (option is supplied, a list of all readonly names is printed.)3.021 F
1909 ➡ 1917 .521(The other)5.521 F .295(options may be used to restrict the output \
1910
-
No equivalent source code line in the reference code can be identified.
-to a subset of the set of readonly names.)144 297.6 R(The)5.296 E F1
1918
-
+to a subset of the set of readonly names.)144 333.6 R(The)5.296 E F1
1911 ➡ 1919 <ad70>2.796 E F0(option)2.796 E .786
1912 ➡ 1920 (causes output to be displayed in a format that may be reused as input.)
1913
-
No equivalent source code line in the reference code can be identified.
-144 309.6 R .786(If a v)5.786 F .785(ariable name is fol-)-.25 F(lo)144
1914
-
No equivalent source code line in the reference code can be identified.
-321.6 Q .717(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v)
1921
-
+144 345.6 R .786(If a v)5.786 F .785(ariable name is fol-)-.25 F(lo)144
1922
-
+357.6 Q .717(wed by =)-.25 F F2(wor)A(d)-.37 E F0 3.218(,t)C .718(he v)
1915 ➡ 1923 -3.218 F .718(alue of the v)-.25 F .718(ariable is set to)-.25 F F2(wor)
1916 ➡ 1924 3.218 E(d)-.37 E F0 5.718(.T)C .718(he return status is 0 unless an in)
1917 ➡ 1925 -5.718 F -.25(va)-.4 G(lid).25 E .26(option is encountered, one of the)
1918
-
No equivalent source code line in the reference code can be identified.
-144 333.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v)
1926
-
+144 369.6 R F2(names)3.12 E F0 .26(is not a v)3.03 F .26(alid shell v)
1919 ➡ 1927 -.25 F .26(ariable name, or)-.25 F F1<ad66>2.76 E F0 .26
1920
-
No equivalent source code line in the reference code can be identified.
-(is supplied with a)2.76 F F2(name)144.36 345.6 Q F0
1921
-
No equivalent source code line in the reference code can be identified.
-(that is not a function.)2.68 E F1 -.18(re)108 362.4 S(tur).18 E(n)-.15
1922
-
No equivalent source code line in the reference code can be identified.
-E F0([)2.5 E F2(n)A F0(])A .02(Causes a function to stop e)144 374.4 R
1928
-
+(is supplied with a)2.76 F F2(name)144.36 381.6 Q F0
1929
-
+(that is not a function.)2.68 E F1 -.18(re)108 398.4 S(tur).18 E(n)-.15
1930
-
+E F0([)2.5 E F2(n)A F0(])A .02(Causes a function to stop e)144 410.4 R
1923 ➡ 1931 -.15(xe)-.15 G .02(cuting and return the v).15 F .021
1924 ➡ 1932 (alue speci\214ed by)-.25 F F2(n)2.881 E F0 .021(to its caller)2.761 F
1925 ➡ 1933 5.021(.I)-.55 G(f)-5.021 E F2(n)2.881 E F0 .021(is omitted,)2.761 F .597
1926
-
No equivalent source code line in the reference code can be identified.
-(the return status is that of the last command e)144 386.4 R -.15(xe)
1934
-
+(the return status is that of the last command e)144 422.4 R -.15(xe)
1927 ➡ 1935 -.15 G .596(cuted in the function body).15 F 5.596(.I)-.65 G(f)-5.596 E
1928 ➡ 1936 F1 -.18(re)3.096 G(tur).18 E(n)-.15 E F0 .596(is e)3.096 F -.15(xe)-.15
1929
-
No equivalent source code line in the reference code can be identified.
-G(cuted).15 E 1.238(by a trap handler)144 398.4 R 3.738(,t)-.4 G 1.238
1937
-
+G(cuted).15 E 1.238(by a trap handler)144 434.4 R 3.738(,t)-.4 G 1.238
1930 ➡ 1938 (he last command used to determine the status is the last command e)
1931 ➡ 1939 -3.738 F -.15(xe)-.15 G(cuted).15 E 1.033(before the trap handler)144
1932
-
No equivalent source code line in the reference code can be identified.
-410.4 R 6.033(.I)-.55 G(f)-6.033 E F1 -.18(re)3.533 G(tur).18 E(n)-.15 E
1940
-
+446.4 R 6.033(.I)-.55 G(f)-6.033 E F1 -.18(re)3.533 G(tur).18 E(n)-.15 E
1933 ➡ 1941 F0 1.033(is e)3.533 F -.15(xe)-.15 G 1.033(cuted during a).15 F F1(DEB)
1934 ➡ 1942 3.532 E(UG)-.1 E F0 1.032(trap, the last command used to)3.532 F .389
1935
-
No equivalent source code line in the reference code can be identified.
-(determine the status is the last command e)144 422.4 R -.15(xe)-.15 G
1943
-
+(determine the status is the last command e)144 458.4 R -.15(xe)-.15 G
1936 ➡ 1944 .389(cuted by the trap handler before).15 F F1 -.18(re)2.89 G(tur).18 E
1937 ➡ 1945 (n)-.15 E F0 -.1(wa)2.89 G 2.89(si).1 G -1.9 -.4(nv o)-2.89 H -.1(ke).4
1938
-
No equivalent source code line in the reference code can be identified.
-G(d.).1 E(If)144 434.4 Q F1 -.18(re)2.584 G(tur).18 E(n)-.15 E F0 .084
1946
-
+G(d.).1 E(If)144 470.4 Q F1 -.18(re)2.584 G(tur).18 E(n)-.15 E F0 .084
1939 ➡ 1947 (is used outside a function, b)2.584 F .084(ut during e)-.2 F -.15(xe)
1940 ➡ 1948 -.15 G .084(cution of a script by the).15 F F1(.)2.584 E F0(\()5.084 E
1941 ➡ 1949 F1(sour)A(ce)-.18 E F0 2.583(\)c)C .083(ommand, it)-2.583 F .588
1942
-
No equivalent source code line in the reference code can be identified.
-(causes the shell to stop e)144 446.4 R -.15(xe)-.15 G .588
1950
-
+(causes the shell to stop e)144 482.4 R -.15(xe)-.15 G .588
1943 ➡ 1951 (cuting that script and return either).15 F F2(n)3.448 E F0 .589
1944 ➡ 1952 (or the e)3.329 F .589(xit status of the last com-)-.15 F .326(mand e)
1945
-
No equivalent source code line in the reference code can be identified.
-144 458.4 R -.15(xe)-.15 G .326(cuted within the script as the e).15 F
1953
-
+144 494.4 R -.15(xe)-.15 G .326(cuted within the script as the e).15 F
1946 ➡ 1954 .326(xit status of the script.)-.15 F(If)5.326 E F2(n)2.826 E F0 .325
1947 ➡ 1955 (is supplied, the return v)2.826 F .325(alue is)-.25 F .444
1948
-
No equivalent source code line in the reference code can be identified.
-(its least signi\214cant 8 bits.)144 470.4 R .444
1956
-
+(its least signi\214cant 8 bits.)144 506.4 R .444
1949 ➡ 1957 (The return status is non-zero if)5.444 F F1 -.18(re)2.945 G(tur).18 E
1950 ➡ 1958 (n)-.15 E F0 .445(is supplied a non-numeric ar)2.945 F(gu-)-.18 E .381
1951
-
No equivalent source code line in the reference code can be identified.
-(ment, or is used outside a function and not during e)144 482.4 R -.15
1959
-
+(ment, or is used outside a function and not during e)144 518.4 R -.15
1952 ➡ 1960 (xe)-.15 G .381(cution of a script by).15 F F1(.)2.881 E F0(or)3.714 E
1953 ➡ 1961 F1(sour)2.881 E(ce)-.18 E F0 5.38(.A)C .68 -.15(ny c)-5.38 H(om-).15 E
1954
-
No equivalent source code line in the reference code can be identified.
-.749(mand associated with the)144 494.4 R F1(RETURN)3.249 E F0 .749
1962
-
+.749(mand associated with the)144 530.4 R F1(RETURN)3.249 E F0 .749
1955 ➡ 1963 (trap is e)3.249 F -.15(xe)-.15 G .749(cuted before e).15 F -.15(xe)-.15
1956
-
No equivalent source code line in the reference code can be identified.
-G .75(cution resumes after the function).15 F(or script.)144 506.4 Q F1
1957
-
No equivalent source code line in the reference code can be identified.
-(set)108 523.2 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C
1964
-
+G .75(cution resumes after the function).15 F(or script.)144 542.4 Q F1
1965
-
+(set)108 559.2 Q F0([)2.5 E F1(\255\255abefhkmnptuvxBCEHPT)A F0 2.5(][)C
1958 ➡ 1966 F1<ad6f>-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E(g)-.37 E
1959
-
No equivalent source code line in the reference code can be identified.
-F0(...])2.5 E F1(set)108 535.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0
1967
-
+F0(...])2.5 E F1(set)108 571.2 Q F0([)2.5 E F1(+abefhkmnptuvxBCEHPT)A F0
1960 ➡ 1968 2.5(][)C F1(+o)-2.5 E F2(option\255name)2.5 E F0 2.5(][)C F2(ar)-2.5 E
1961
-
No equivalent source code line in the reference code can be identified.
-(g)-.37 E F0(...])2.5 E -.4(Wi)144 547.2 S .836
1969
-
+(g)-.37 E F0(...])2.5 E -.4(Wi)144 583.2 S .836
1962 ➡ 1970 (thout options, the name and v).4 F .835(alue of each shell v)-.25 F
1963 ➡ 1971 .835(ariable are displayed in a format that can be)-.25 F .784
1964
-
No equivalent source code line in the reference code can be identified.
-(reused as input for setting or resetting the currently-set v)144 559.2
1972
-
+(reused as input for setting or resetting the currently-set v)144 595.2
1965 ➡ 1973 R 3.284(ariables. Read-only)-.25 F -.25(va)3.284 G .784
1966
-
No equivalent source code line in the reference code can be identified.
-(riables cannot be).25 F 2.912(reset. In)144 571.2 R F2(posix)2.912 E F0
1974
-
+(riables cannot be).25 F 2.912(reset. In)144 607.2 R F2(posix)2.912 E F0
1967 ➡ 1975 .412(mode, only shell v)2.912 F .412(ariables are listed.)-.25 F .412
1968 ➡ 1976 (The output is sorted according to the current)5.412 F 3.53
1969
-
No equivalent source code line in the reference code can be identified.
-(locale. When)144 583.2 R 1.031(options are speci\214ed, the)3.53 F
1977
-
+(locale. When)144 619.2 R 1.031(options are speci\214ed, the)3.53 F
1970 ➡ 1978 3.531(ys)-.15 G 1.031(et or unset shell attrib)-3.531 F 3.531(utes. An)
1971 ➡ 1979 -.2 F 3.531(ya)-.15 G -.18(rg)-3.531 G 1.031(uments remaining).18 F
1972
-
No equivalent source code line in the reference code can be identified.
-1.624(after option processing are treated as v)144 595.2 R 1.623
1980
-
+1.624(after option processing are treated as v)144 631.2 R 1.623
1973 ➡ 1981 (alues for the positional parameters and are assigned, in)-.25 F(order)
1974
-
No equivalent source code line in the reference code can be identified.
-144 607.2 Q 2.5(,t)-.4 G(o)-2.5 E F1($1)2.5 E F0(,)A F1($2)2.5 E F0(,)A
1982
-
+144 643.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
1975 ➡ 1983 F1 2.5(... $)2.5 F F2(n)A F0 5(.O)C(ptions, if speci\214ed, ha)-5 E .3
1976
-
No equivalent source code line in the reference code can be identified.
--.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad61>144 619.2 Q
1977
-
No equivalent source code line in the reference code can be identified.
-F0 1.377(Each v)184 619.2 R 1.377
1984
-
+-.15(ve t)-.2 H(he follo).15 E(wing meanings:)-.25 E F1<ad61>144 655.2 Q
1985
-
+F0 1.377(Each v)184 655.2 R 1.377
1978 ➡ 1986 (ariable or function that is created or modi\214ed is gi)-.25 F -.15(ve)
1979 ➡ 1987 -.25 G 3.877(nt).15 G 1.377(he e)-3.877 F 1.378(xport attrib)-.15 F
1980
-
No equivalent source code line in the reference code can be identified.
-1.378(ute and)-.2 F(mark)184 631.2 Q(ed for e)-.1 E(xport to the en)-.15
1981
-
No equivalent source code line in the reference code can be identified.
-E(vironment of subsequent commands.)-.4 E F1<ad62>144 643.2 Q F0 .132
1982
-
No equivalent source code line in the reference code can be identified.
-(Report the status of terminated background jobs immediately)184 643.2 R
1988
-
+1.378(ute and)-.2 F(mark)184 667.2 Q(ed for e)-.1 E(xport to the en)-.15
1989
-
+E(vironment of subsequent commands.)-.4 E F1<ad62>144 679.2 Q F0 .132
1990
-
+(Report the status of terminated background jobs immediately)184 679.2 R
1983 ➡ 1991 2.632(,r)-.65 G .131(ather than before the ne)-2.632 F(xt)-.15 E
1984
-
No equivalent source code line in the reference code can be identified.
-(primary prompt.)184 655.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)
1985
-
No equivalent source code line in the reference code can be identified.
--.25 H(nly when job control is enabled.).15 E F1<ad65>144 667.2 Q F0
1986
-
No equivalent source code line in the reference code can be identified.
-.087(Exit immediately if a)184 667.2 R F2(pipeline)2.587 E F0 .087
1992
-
+(primary prompt.)184 691.2 Q(This is ef)5 E(fecti)-.25 E .3 -.15(ve o)
1993
-
+-.25 H(nly when job control is enabled.).15 E F1<ad65>144 703.2 Q F0
1994
-
+.087(Exit immediately if a)184 703.2 R F2(pipeline)2.587 E F0 .087
1987 ➡ 1995 (\(which may consist of a single)2.587 F F2 .088(simple command)2.588 F
1988
-
No equivalent source code line in the reference code can be identified.
-F0 .088(\), a)B F2(list)2.588 E F0 2.588(,o)C(r)-2.588 E(a)184 679.2 Q
1996
-
+F0 .088(\), a)B F2(list)2.588 E F0 2.588(,o)C(r)-2.588 E(a)184 715.2 Q
1989 ➡ 1997 F2 1.521(compound command)4.021 F F0(\(see)4.021 E F3 1.521
1990 ➡ 1998 (SHELL GRAMMAR)4.021 F F0(abo)3.771 E -.15(ve)-.15 G 1.521(\), e).15 F
1991 ➡ 1999 1.521(xits with a non-zero status.)-.15 F .079(The shell does not e)184
1992
-
No equivalent source code line in the reference code can be identified.
-691.2 R .079(xit if the command that f)-.15 F .08
1993
-
No equivalent source code line in the reference code can be identified.
-(ails is part of the command list immediately)-.1 F(follo)184 703.2 Q
1994
-
No equivalent source code line in the reference code can be identified.
-1.655(wing a)-.25 F F1(while)4.155 E F0(or)4.155 E F1(until)4.155 E F0
1995
-
No equivalent source code line in the reference code can be identified.
--.1(ke)4.155 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.654
1996
-
No equivalent source code line in the reference code can be identified.
-(wing the)-.25 F F1(if)4.154 E F0(or)4.154 E F1(elif)4.154 E F0(reserv)
1997
-
No equivalent source code line in the reference code can be identified.
-4.154 E(ed)-.15 E -.1(wo)184 715.2 S .581(rds, part of an).1 F 3.081(yc)
1998
-
No equivalent source code line in the reference code can be identified.
--.15 G .581(ommand e)-3.081 F -.15(xe)-.15 G .581(cuted in a).15 F F1
1999
-
No equivalent source code line in the reference code can be identified.
-(&&)3.081 E F0(or)3.081 E F1(||)3.081 E F0 .582(list e)3.082 F .582
2000
-
No equivalent source code line in the reference code can be identified.
-(xcept the command follo)-.15 F(wing)-.25 E .918(the \214nal)184 727.2 R
2001
-
No equivalent source code line in the reference code can be identified.
-F1(&&)3.418 E F0(or)3.418 E F1(||)3.418 E F0 3.418(,a)C 1.218 -.15(ny c)
2002
-
No equivalent source code line in the reference code can be identified.
--3.418 H .918(ommand in a pipeline b).15 F .917
2003
-
No equivalent source code line in the reference code can be identified.
-(ut the last, or if the command')-.2 F 3.417(sr)-.55 G(eturn)-3.417 E
2004
-
No equivalent source code line in the reference code can be identified.
-(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(14)198.725 E 0 Cg EP
2000
-
+727.2 R .079(xit if the command that f)-.15 F .08
2001
-
+(ails is part of the command list immediately)-.1 F(GNU Bash 5.0)72 768
2002
-
+Q(2004 Apr 20)149.565 E(14)198.725 E 0 Cg EP
2005 ➡ 2003 %%Page: 15 15
2006 ➡ 2004 %%BeginPageSetup
2007 ➡ 2005 BP
2008 ➡ 2006 %%EndPageSetup
2009 ➡ 2007 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2010 ➡ 2008 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2011
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E -.25(va)184 84 S .66(lue is being in).25 F
2012
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.4 G .66(rted with).15 F/F1 10/Times-Bold@0 SF(!)3.16 E F0
2013
-
No equivalent source code line in the reference code can be identified.
-5.661(.I)C 3.161(fac)-5.661 G .661
2009
-
+E(UIL)-.1 E(TINS\(1\))-.92 E(follo)184 84 Q 1.655(wing a)-.25 F/F1 10
2010
-
+/Times-Bold@0 SF(while)4.155 E F0(or)4.155 E F1(until)4.155 E F0 -.1(ke)
2011
-
+4.155 G(yw)-.05 E 1.655(ord, part of the test follo)-.1 F 1.654
2012
-
+(wing the)-.25 F F1(if)4.154 E F0(or)4.154 E F1(elif)4.154 E F0(reserv)
2013
-
+4.154 E(ed)-.15 E -.1(wo)184 96 S .581(rds, part of an).1 F 3.081(yc)
2014
-
+-.15 G .581(ommand e)-3.081 F -.15(xe)-.15 G .581(cuted in a).15 F F1
2015
-
+(&&)3.081 E F0(or)3.081 E F1(||)3.081 E F0 .582(list e)3.082 F .582
2016
-
+(xcept the command follo)-.15 F(wing)-.25 E .918(the \214nal)184 108 R
2017
-
+F1(&&)3.418 E F0(or)3.418 E F1(||)3.418 E F0 3.418(,a)C 1.218 -.15(ny c)
2018
-
+-3.418 H .918(ommand in a pipeline b).15 F .917
2019
-
+(ut the last, or if the command')-.2 F 3.417(sr)-.55 G(eturn)-3.417 E
2020
-
+-.25(va)184 120 S .66(lue is being in).25 F -.15(ve)-.4 G .66(rted with)
2021
-
+.15 F F1(!)3.16 E F0 5.661(.I)C 3.161(fac)-5.661 G .661
2014 ➡ 2022 (ompound command other than a subshell returns a)-3.161 F 1.113
2015
-
No equivalent source code line in the reference code can be identified.
-(non-zero status because a command f)184 96 R 1.112(ailed while)-.1 F F1
2016
-
No equivalent source code line in the reference code can be identified.
-<ad65>3.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.112
2017
-
No equivalent source code line in the reference code can be identified.
-(eing ignored, the shell does)-3.612 F .177(not e)184 108 R 2.677
2023
-
+(non-zero status because a command f)184 132 R 1.112(ailed while)-.1 F
2024
-
+F1<ad65>3.612 E F0 -.1(wa)3.612 G 3.612(sb).1 G 1.112
2025
-
+(eing ignored, the shell does)-3.612 F .177(not e)184 144 R 2.677
2018 ➡ 2026 (xit. A)-.15 F .177(trap on)2.677 F F1(ERR)2.677 E F0 2.677(,i)C 2.678
2019 ➡ 2027 (fs)-2.677 G .178(et, is e)-2.678 F -.15(xe)-.15 G .178
2020 ➡ 2028 (cuted before the shell e).15 F 2.678(xits. This)-.15 F .178
2021
-
No equivalent source code line in the reference code can be identified.
-(option applies to)2.678 F .618(the shell en)184 120 R .617
2029
-
+(option applies to)2.678 F .618(the shell en)184 156 R .617
2022 ➡ 2030 (vironment and each subshell en)-.4 F .617(vironment separately \(see)
2023 ➡ 2031 -.4 F/F2 9/Times-Bold@0 SF .617(COMMAND EXE-)3.117 F .642(CUTION ENVIR)
2024
-
No equivalent source code line in the reference code can be identified.
-184 132 R(ONMENT)-.27 E F0(abo)2.893 E -.15(ve)-.15 G .643
2032
-
+184 168 R(ONMENT)-.27 E F0(abo)2.893 E -.15(ve)-.15 G .643
2025 ➡ 2033 (\), and may cause subshells to e).15 F .643(xit before e)-.15 F -.15
2026
-
No equivalent source code line in the reference code can be identified.
-(xe)-.15 G .643(cuting all).15 F(the commands in the subshell.)184 144 Q
2027
-
No equivalent source code line in the reference code can be identified.
-2.042(If a compound command or shell function e)184 162 R -.15(xe)-.15 G
2034
-
+(xe)-.15 G .643(cuting all).15 F(the commands in the subshell.)184 180 Q
2035
-
+2.042(If a compound command or shell function e)184 198 R -.15(xe)-.15 G
2028 ➡ 2036 2.042(cutes in a conte).15 F 2.042(xt where)-.15 F F1<ad65>4.542 E F0
2029
-
No equivalent source code line in the reference code can be identified.
-2.042(is being)4.542 F 1.435(ignored, none of the commands e)184 174 R
2037
-
+2.042(is being)4.542 F 1.435(ignored, none of the commands e)184 210 R
2030 ➡ 2038 -.15(xe)-.15 G 1.436(cuted within the compound command or function).15 F
2031
-
No equivalent source code line in the reference code can be identified.
-.194(body will be af)184 186 R .194(fected by the)-.25 F F1<ad65>2.694 E
2039
-
+.194(body will be af)184 222 R .194(fected by the)-.25 F F1<ad65>2.694 E
2032 ➡ 2040 F0 .193(setting, e)2.693 F -.15(ve)-.25 G 2.693(ni).15 G(f)-2.693 E F1
2033 ➡ 2041 <ad65>2.693 E F0 .193(is set and a command returns a f)2.693 F(ailure)
2034
-
No equivalent source code line in the reference code can be identified.
--.1 E 3.39(status. If)184 198 R 3.39(ac)3.39 G .89
2042
-
+-.1 E 3.39(status. If)184 234 R 3.39(ac)3.39 G .89
2035 ➡ 2043 (ompound command or shell function sets)-3.39 F F1<ad65>3.39 E F0 .89
2036 ➡ 2044 (while e)3.39 F -.15(xe)-.15 G .89(cuting in a conte).15 F(xt)-.15 E
2037
-
No equivalent source code line in the reference code can be identified.
-(where)184 210 Q F1<ad65>3.154 E F0 .654
2045
-
+(where)184 246 Q F1<ad65>3.154 E F0 .654
2038 ➡ 2046 (is ignored, that setting will not ha)3.154 F .953 -.15(ve a)-.2 H .953
2039 ➡ 2047 -.15(ny e).15 H -.25(ff).15 G .653(ect until the compound command).25 F
2040
-
No equivalent source code line in the reference code can be identified.
-(or the command containing the function call completes.)184 222 Q F1
2041
-
No equivalent source code line in the reference code can be identified.
-<ad66>144 234 Q F0(Disable pathname e)184 234 Q(xpansion.)-.15 E F1
2042
-
No equivalent source code line in the reference code can be identified.
-<ad68>144 246 Q F0 2.238(Remember the location of commands as the)184
2043
-
No equivalent source code line in the reference code can be identified.
-246 R 4.738(ya)-.15 G 2.239(re look)-4.738 F 2.239(ed up for e)-.1 F
2048
-
+(or the command containing the function call completes.)184 258 Q F1
2049
-
+<ad66>144 270 Q F0(Disable pathname e)184 270 Q(xpansion.)-.15 E F1
2050
-
+<ad68>144 282 Q F0 2.238(Remember the location of commands as the)184
2051
-
+282 R 4.738(ya)-.15 G 2.239(re look)-4.738 F 2.239(ed up for e)-.1 F
2044 ➡ 2052 -.15(xe)-.15 G 4.739(cution. This).15 F(is)4.739 E(enabled by def)184
2045
-
No equivalent source code line in the reference code can be identified.
-258 Q(ault.)-.1 E F1<ad6b>144 270 Q F0 .514(All ar)184 270 R .514
2053
-
+294 Q(ault.)-.1 E F1<ad6b>144 306 Q F0 .514(All ar)184 306 R .514
2046 ➡ 2054 (guments in the form of assignment statements are placed in the en)-.18
2047 ➡ 2055 F .513(vironment for a)-.4 F
2048
-
No equivalent source code line in the reference code can be identified.
-(command, not just those that precede the command name.)184 282 Q F1
2049
-
No equivalent source code line in the reference code can be identified.
-<ad6d>144 294 Q F0 .148(Monitor mode.)184 294 R .148
2056
-
+(command, not just those that precede the command name.)184 318 Q F1
2057
-
+<ad6d>144 330 Q F0 .148(Monitor mode.)184 330 R .148
2050 ➡ 2058 (Job control is enabled.)5.148 F .149(This option is on by def)5.148 F
2051 ➡ 2059 .149(ault for interacti)-.1 F .449 -.15(ve s)-.25 H(hells).15 E .651
2052
-
No equivalent source code line in the reference code can be identified.
-(on systems that support it \(see)184 306 R F2 .651(JOB CONTR)3.151 F
2060
-
+(on systems that support it \(see)184 342 R F2 .651(JOB CONTR)3.151 F
2053 ➡ 2061 (OL)-.27 E F0(abo)2.901 E -.15(ve)-.15 G 3.151(\). All).15 F .65
2054
-
No equivalent source code line in the reference code can be identified.
-(processes run in a separate)3.151 F .678(process group.)184 318 R .679
2062
-
+(processes run in a separate)3.151 F .678(process group.)184 354 R .679
2055 ➡ 2063 (When a background job completes, the shell prints a line containing it\
2056
-
No equivalent source code line in the reference code can be identified.
-s)5.678 F -.15(ex)184 330 S(it status.).15 E F1<ad6e>144 342 Q F0 .653
2057
-
No equivalent source code line in the reference code can be identified.
-(Read commands b)184 342 R .653(ut do not e)-.2 F -.15(xe)-.15 G .653
2064
-
+s)5.678 F -.15(ex)184 366 S(it status.).15 E F1<ad6e>144 378 Q F0 .653
2065
-
+(Read commands b)184 378 R .653(ut do not e)-.2 F -.15(xe)-.15 G .653
2058 ➡ 2066 (cute them.).15 F .652(This may be used to check a shell script for)
2059
-
No equivalent source code line in the reference code can be identified.
-5.653 F(syntax errors.)184 354 Q(This is ignored by interacti)5 E .3
2060
-
No equivalent source code line in the reference code can be identified.
--.15(ve s)-.25 H(hells.).15 E F1<ad6f>144 366 Q/F3 10/Times-Italic@0 SF
2061
-
No equivalent source code line in the reference code can be identified.
-(option\255name)2.5 E F0(The)184 378 Q F3(option\255name)2.5 E F0
2062
-
No equivalent source code line in the reference code can be identified.
-(can be one of the follo)2.5 E(wing:)-.25 E F1(allexport)184 390 Q F0
2063
-
No equivalent source code line in the reference code can be identified.
-(Same as)224 402 Q F1<ad61>2.5 E F0(.)A F1(braceexpand)184 414 Q F0
2064
-
No equivalent source code line in the reference code can be identified.
-(Same as)224 426 Q F1<ad42>2.5 E F0(.)A F1(emacs)184 438 Q F0 .089
2065
-
No equivalent source code line in the reference code can be identified.
-(Use an emacs-style command line editing interf)224 438 R 2.589
2067
-
+5.653 F(syntax errors.)184 390 Q(This is ignored by interacti)5 E .3
2068
-
+-.15(ve s)-.25 H(hells.).15 E F1<ad6f>144 402 Q/F3 10/Times-Italic@0 SF
2069
-
+(option\255name)2.5 E F0(The)184 414 Q F3(option\255name)2.5 E F0
2070
-
+(can be one of the follo)2.5 E(wing:)-.25 E F1(allexport)184 426 Q F0
2071
-
+(Same as)224 438 Q F1<ad61>2.5 E F0(.)A F1(braceexpand)184 450 Q F0
2072
-
+(Same as)224 462 Q F1<ad42>2.5 E F0(.)A F1(emacs)184 474 Q F0 .089
2073
-
+(Use an emacs-style command line editing interf)224 474 R 2.589
2066 ➡ 2074 (ace. This)-.1 F .089(is enabled by def)2.589 F(ault)-.1 E .95
2067
-
No equivalent source code line in the reference code can be identified.
-(when the shell is interacti)224 450 R -.15(ve)-.25 G 3.45(,u).15 G .95
2075
-
+(when the shell is interacti)224 486 R -.15(ve)-.25 G 3.45(,u).15 G .95
2068 ➡ 2076 (nless the shell is started with the)-3.45 F F1(\255\255noediting)3.45 E
2069
-
No equivalent source code line in the reference code can be identified.
-F0 2.5(option. This)224 462 R(also af)2.5 E(fects the editing interf)
2077
-
+F0 2.5(option. This)224 498 R(also af)2.5 E(fects the editing interf)
2070 ➡ 2078 -.25 E(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1(err)
2071
-
No equivalent source code line in the reference code can be identified.
-184 474 Q(exit)-.18 E F0(Same as)224 474 Q F1<ad65>2.5 E F0(.)A F1
2072
-
No equivalent source code line in the reference code can be identified.
-(errtrace)184 486 Q F0(Same as)224 486 Q F1<ad45>2.5 E F0(.)A F1
2073
-
No equivalent source code line in the reference code can be identified.
-(functrace)184 498 Q F0(Same as)224 510 Q F1<ad54>2.5 E F0(.)A F1
2074
-
No equivalent source code line in the reference code can be identified.
-(hashall)184 522 Q F0(Same as)224 522 Q F1<ad68>2.5 E F0(.)A F1
2075
-
No equivalent source code line in the reference code can be identified.
-(histexpand)184 534 Q F0(Same as)224 546 Q F1<ad48>2.5 E F0(.)A F1
2076
-
No equivalent source code line in the reference code can be identified.
-(history)184 558 Q F0 .586(Enable command history)224 558 R 3.087(,a)
2079
-
+184 510 Q(exit)-.18 E F0(Same as)224 510 Q F1<ad65>2.5 E F0(.)A F1
2080
-
+(errtrace)184 522 Q F0(Same as)224 522 Q F1<ad45>2.5 E F0(.)A F1
2081
-
+(functrace)184 534 Q F0(Same as)224 546 Q F1<ad54>2.5 E F0(.)A F1
2082
-
+(hashall)184 558 Q F0(Same as)224 558 Q F1<ad68>2.5 E F0(.)A F1
2083
-
+(histexpand)184 570 Q F0(Same as)224 582 Q F1<ad48>2.5 E F0(.)A F1
2084
-
+(history)184 594 Q F0 .586(Enable command history)224 594 R 3.087(,a)
2077 ➡ 2085 -.65 G 3.087(sd)-3.087 G .587(escribed abo)-3.087 F .887 -.15(ve u)-.15
2078 ➡ 2086 H(nder).15 E F2(HIST)3.087 E(OR)-.162 E(Y)-.315 E/F4 9/Times-Roman@0 SF
2079
-
No equivalent source code line in the reference code can be identified.
-(.)A F0 .587(This option is)5.087 F(on by def)224 570 Q
2087
-
+(.)A F0 .587(This option is)5.087 F(on by def)224 606 Q
2080 ➡ 2088 (ault in interacti)-.1 E .3 -.15(ve s)-.25 H(hells.).15 E F1(ignor)184
2081
-
No equivalent source code line in the reference code can be identified.
-582 Q(eeof)-.18 E F0 1.657(The ef)224 594 R 1.657
2089
-
+618 Q(eeof)-.18 E F0 1.657(The ef)224 630 R 1.657
2082 ➡ 2090 (fect is as if the shell command)-.25 F/F5 10/Courier@0 SF(IGNOREEOF=10)
2083 ➡ 2091 4.156 E F0 1.656(had been e)4.156 F -.15(xe)-.15 G(cuted).15 E(\(see)224
2084
-
No equivalent source code line in the reference code can be identified.
-606 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).)
2085
-
No equivalent source code line in the reference code can be identified.
-.15 E F1 -.1(ke)184 618 S(yw).1 E(ord)-.1 E F0(Same as)224 630 Q F1
2086
-
No equivalent source code line in the reference code can be identified.
-<ad6b>2.5 E F0(.)A F1(monitor)184 642 Q F0(Same as)224 642 Q F1<ad6d>2.5
2087
-
No equivalent source code line in the reference code can be identified.
-E F0(.)A F1(noclob)184 654 Q(ber)-.1 E F0(Same as)224 666 Q F1<ad43>2.5
2088
-
No equivalent source code line in the reference code can be identified.
-E F0(.)A F1(noexec)184 678 Q F0(Same as)224 678 Q F1<ad6e>2.5 E F0(.)A
2089
-
No equivalent source code line in the reference code can be identified.
-F1(noglob)184 690 Q F0(Same as)224 690 Q F1<ad66>2.5 E F0(.)A F1(nolog)
2090
-
No equivalent source code line in the reference code can be identified.
-184 702 Q F0(Currently ignored.)224 702 Q F1(notify)184 714 Q F0
2091
-
No equivalent source code line in the reference code can be identified.
-(Same as)224 714 Q F1<ad62>2.5 E F0(.)A(GNU Bash 5.0)72 768 Q
2092
-
No equivalent source code line in the reference code can be identified.
-(2004 Apr 20)149.565 E(15)198.725 E 0 Cg EP
2092
-
+642 Q F1(Shell V)2.5 E(ariables)-.92 E F0(abo)2.5 E -.15(ve)-.15 G(\).)
2093
-
+.15 E F1 -.1(ke)184 654 S(yw).1 E(ord)-.1 E F0(Same as)224 666 Q F1
2094
-
+<ad6b>2.5 E F0(.)A F1(monitor)184 678 Q F0(Same as)224 678 Q F1<ad6d>2.5
2095
-
+E F0(.)A F1(noclob)184 690 Q(ber)-.1 E F0(Same as)224 702 Q F1<ad43>2.5
2096
-
+E F0(.)A F1(noexec)184 714 Q F0(Same as)224 714 Q F1<ad6e>2.5 E F0(.)A
2097
-
+(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(15)198.725 E 0 Cg EP
2093 ➡ 2098 %%Page: 16 16
2094 ➡ 2099 %%BeginPageSetup
2095 ➡ 2100 BP
2096 ➡ 2101 %%EndPageSetup
2097 ➡ 2102 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2098 ➡ 2103 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2099
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(nounset)184 84 Q F0
2100
-
No equivalent source code line in the reference code can be identified.
-(Same as)224 84 Q F1<ad75>2.5 E F0(.)A F1(onecmd)184 96 Q F0(Same as)224
2101
-
No equivalent source code line in the reference code can be identified.
-96 Q F1<ad74>2.5 E F0(.)A F1(ph)184 108 Q(ysical)-.15 E F0(Same as)224
2102
-
No equivalent source code line in the reference code can be identified.
-108 Q F1<ad50>2.5 E F0(.)A F1(pipefail)184 120 Q F0 1.029
2103
-
No equivalent source code line in the reference code can be identified.
-(If set, the return v)224 120 R 1.029(alue of a pipeline is the v)-.25 F
2104
-
No equivalent source code line in the reference code can be identified.
-1.03(alue of the last \(rightmost\) com-)-.25 F 1.137(mand to e)224 132
2105
-
No equivalent source code line in the reference code can be identified.
-R 1.136
2104
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(noglob)184 84 Q F0
2105
-
+(Same as)224 84 Q F1<ad66>2.5 E F0(.)A F1(nolog)184 96 Q F0
2106
-
+(Currently ignored.)224 96 Q F1(notify)184 108 Q F0(Same as)224 108 Q F1
2107
-
+<ad62>2.5 E F0(.)A F1(nounset)184 120 Q F0(Same as)224 120 Q F1<ad75>2.5
2108
-
+E F0(.)A F1(onecmd)184 132 Q F0(Same as)224 132 Q F1<ad74>2.5 E F0(.)A
2109
-
+F1(ph)184 144 Q(ysical)-.15 E F0(Same as)224 144 Q F1<ad50>2.5 E F0(.)A
2110
-
+F1(pipefail)184 156 Q F0 1.029(If set, the return v)224 156 R 1.029
2111
-
+(alue of a pipeline is the v)-.25 F 1.03
2112
-
+(alue of the last \(rightmost\) com-)-.25 F 1.137(mand to e)224 168 R
2113
-
+1.136
2106 ➡ 2114 (xit with a non-zero status, or zero if all commands in the pipeline)
2107
-
No equivalent source code line in the reference code can be identified.
--.15 F -.15(ex)224 144 S(it successfully).15 E 5(.T)-.65 G
2108
-
No equivalent source code line in the reference code can be identified.
-(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 156 Q F0
2109
-
No equivalent source code line in the reference code can be identified.
-2.09(Change the beha)224 156 R 2.091(vior of)-.2 F F1(bash)4.591 E F0
2115
-
+-.15 F -.15(ex)224 180 S(it successfully).15 E 5(.T)-.65 G
2116
-
+(his option is disabled by def)-5 E(ault.)-.1 E F1(posix)184 192 Q F0
2117
-
+2.09(Change the beha)224 192 R 2.091(vior of)-.2 F F1(bash)4.591 E F0
2110 ➡ 2118 2.091(where the def)4.591 F 2.091(ault operation dif)-.1 F 2.091
2111 ➡ 2119 (fers from the)-.25 F 1.212(POSIX standard to match the standard \()224
2112
-
No equivalent source code line in the reference code can be identified.
-168 R/F2 10/Times-Italic@0 SF 1.212(posix mode)B F0 3.712(\). See)B/F3 9
2120
-
+204 R/F2 10/Times-Italic@0 SF 1.212(posix mode)B F0 3.712(\). See)B/F3 9
2113 ➡ 2121 /Times-Bold@0 SF 1.212(SEE ALSO)3.712 F F0(belo)3.462 E(w)-.25 E 2.306
2114
-
No equivalent source code line in the reference code can be identified.
-(for a reference to a document that details ho)224 180 R 4.807(wp)-.25 G
2122
-
+(for a reference to a document that details ho)224 216 R 4.807(wp)-.25 G
2115 ➡ 2123 2.307(osix mode af)-4.807 F 2.307(fects bash')-.25 F(s)-.55 E(beha)224
2116
-
No equivalent source code line in the reference code can be identified.
-192 Q(vior)-.2 E(.)-.55 E F1(pri)184 204 Q(vileged)-.1 E F0(Same as)224
2117
-
No equivalent source code line in the reference code can be identified.
-216 Q F1<ad70>2.5 E F0(.)A F1 -.1(ve)184 228 S(rbose).1 E F0(Same as)224
2118
-
No equivalent source code line in the reference code can be identified.
-228 Q F1<ad76>2.5 E F0(.)A F1(vi)184 240 Q F0 1.466
2119
-
No equivalent source code line in the reference code can be identified.
-(Use a vi-style command line editing interf)224 240 R 3.965(ace. This)
2124
-
+228 Q(vior)-.2 E(.)-.55 E F1(pri)184 240 Q(vileged)-.1 E F0(Same as)224
2125
-
+252 Q F1<ad70>2.5 E F0(.)A F1 -.1(ve)184 264 S(rbose).1 E F0(Same as)224
2126
-
+264 Q F1<ad76>2.5 E F0(.)A F1(vi)184 276 Q F0 1.466
2127
-
+(Use a vi-style command line editing interf)224 276 R 3.965(ace. This)
2120 ➡ 2128 -.1 F 1.465(also af)3.965 F 1.465(fects the editing)-.25 F(interf)224
2121
-
No equivalent source code line in the reference code can be identified.
-252 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1
2122
-
No equivalent source code line in the reference code can be identified.
-(xtrace)184 264 Q F0(Same as)224 264 Q F1<ad78>2.5 E F0(.)A(If)184 282 Q
2129
-
+288 Q(ace used for)-.1 E F1 -.18(re)2.5 G(ad \255e).18 E F0(.)A F1
2130
-
+(xtrace)184 300 Q F0(Same as)224 300 Q F1<ad78>2.5 E F0(.)A(If)184 318 Q
2123 ➡ 2131 F1<ad6f>3.052 E F0 .552(is supplied with no)3.052 F F2(option\255name)
2124 ➡ 2132 3.053 E F0 3.053(,t)C .553(he v)-3.053 F .553
2125 ➡ 2133 (alues of the current options are printed.)-.25 F(If)5.553 E F1(+o)184
2126
-
No equivalent source code line in the reference code can be identified.
-294 Q F0 1.072(is supplied with no)3.572 F F2(option\255name)3.572 E F0
2134
-
+330 Q F0 1.072(is supplied with no)3.572 F F2(option\255name)3.572 E F0
2127 ➡ 2135 3.572(,a)C 1.071(series of)-.001 F F1(set)3.571 E F0 1.071
2128 ➡ 2136 (commands to recreate the current)3.571 F
2129
-
No equivalent source code line in the reference code can be identified.
-(option settings is displayed on the standard output.)184 306 Q F1<ad70>
2130
-
No equivalent source code line in the reference code can be identified.
-144 318 Q F0 -.45(Tu)184 318 S 1.071(rn on).45 F F2(privile)4.821 E -.1
2137
-
+(option settings is displayed on the standard output.)184 342 Q F1<ad70>
2138
-
+144 354 Q F0 -.45(Tu)184 354 S 1.071(rn on).45 F F2(privile)4.821 E -.1
2131 ➡ 2139 (ge)-.4 G(d).1 E F0 3.572(mode. In)4.341 F 1.072(this mode, the)3.572 F
2132 ➡ 2140 F3($ENV)3.572 E F0(and)3.322 E F3($B)3.572 E(ASH_ENV)-.27 E F0 1.072
2133 ➡ 2141 (\214les are not pro-)3.322 F 1.501
2134
-
No equivalent source code line in the reference code can be identified.
-(cessed, shell functions are not inherited from the en)184 330 R 1.5
2142
-
+(cessed, shell functions are not inherited from the en)184 366 R 1.5
2135 ➡ 2143 (vironment, and the)-.4 F F3(SHELLOPTS)4 E/F4 9/Times-Roman@0 SF(,)A F3
2136
-
No equivalent source code line in the reference code can be identified.
--.27(BA)184 342 S(SHOPTS).27 E F4(,)A F3(CDP)2.774 E -.855(AT)-.666 G(H)
2144
-
+-.27(BA)184 378 S(SHOPTS).27 E F4(,)A F3(CDP)2.774 E -.855(AT)-.666 G(H)
2137 ➡ 2145 .855 E F4(,)A F0(and)2.774 E F3(GLOBIGNORE)3.024 E F0 -.25(va)2.774 G
2138 ➡ 2146 .524(riables, if the).25 F 3.025(ya)-.15 G .525(ppear in the en)-3.025 F
2139
-
No equivalent source code line in the reference code can be identified.
-(vironment,)-.4 E .38(are ignored.)184 354 R .38
2147
-
+(vironment,)-.4 E .38(are ignored.)184 390 R .38
2140 ➡ 2148 (If the shell is started with the ef)5.38 F(fecti)-.25 E .679 -.15(ve u)
2141 ➡ 2149 -.25 H .379(ser \(group\) id not equal to the real).15 F .461
2142
-
No equivalent source code line in the reference code can be identified.
-(user \(group\) id, and the)184 366 R F1<ad70>2.961 E F0 .461
2150
-
+(user \(group\) id, and the)184 402 R F1<ad70>2.961 E F0 .461
2143 ➡ 2151 (option is not supplied, these actions are tak)2.961 F .462
2144
-
No equivalent source code line in the reference code can be identified.
-(en and the ef)-.1 F(fec-)-.25 E(ti)184 378 Q .695 -.15(ve u)-.25 H .395
2152
-
+(en and the ef)-.1 F(fec-)-.25 E(ti)184 414 Q .695 -.15(ve u)-.25 H .395
2145 ➡ 2153 (ser id is set to the real user id.).15 F .395(If the)5.395 F F1<ad70>
2146 ➡ 2154 2.895 E F0 .394(option is supplied at startup, the ef)2.895 F(fecti)-.25
2147
-
No equivalent source code line in the reference code can be identified.
-E -.15(ve)-.25 G .386(user id is not reset.)184 390 R -.45(Tu)5.386 G
2155
-
+E -.15(ve)-.25 G .386(user id is not reset.)184 426 R -.45(Tu)5.386 G
2148 ➡ 2156 .386(rning this option of).45 F 2.886(fc)-.25 G .387(auses the ef)-2.886
2149 ➡ 2157 F(fecti)-.25 E .687 -.15(ve u)-.25 H .387(ser and group ids to be).15 F
2150
-
No equivalent source code line in the reference code can be identified.
-(set to the real user and group ids.)184 402 Q F1<ad74>144 414 Q F0
2151
-
No equivalent source code line in the reference code can be identified.
-(Exit after reading and e)184 414 Q -.15(xe)-.15 G(cuting one command.)
2152
-
No equivalent source code line in the reference code can be identified.
-.15 E F1<ad75>144 426 Q F0 -.35(Tr)184 426 S .044(eat unset v).35 F .044
2158
-
+(set to the real user and group ids.)184 438 Q F1<ad74>144 450 Q F0
2159
-
+(Exit after reading and e)184 450 Q -.15(xe)-.15 G(cuting one command.)
2160
-
+.15 E F1<ad75>144 462 Q F0 -.35(Tr)184 462 S .044(eat unset v).35 F .044
2153 ➡ 2161 (ariables and parameters other than the special parameters "@" and "*" \
2154
-
No equivalent source code line in the reference code can be identified.
-as an)-.25 F .182(error when performing parameter e)184 438 R 2.682
2162
-
+as an)-.25 F .182(error when performing parameter e)184 474 R 2.682
2155 ➡ 2163 (xpansion. If)-.15 F -.15(ex)2.682 G .183
2156 ➡ 2164 (pansion is attempted on an unset v).15 F(ari-)-.25 E .746
2157
-
No equivalent source code line in the reference code can be identified.
-(able or parameter)184 450 R 3.246(,t)-.4 G .746
2165
-
+(able or parameter)184 486 R 3.246(,t)-.4 G .746
2158 ➡ 2166 (he shell prints an error message, and, if not interacti)-3.246 F -.15
2159 ➡ 2167 (ve)-.25 G 3.246(,e).15 G .746(xits with a)-3.396 F(non-zero status.)184
2160
-
No equivalent source code line in the reference code can be identified.
-462 Q F1<ad76>144 474 Q F0(Print shell input lines as the)184 474 Q 2.5
2161
-
No equivalent source code line in the reference code can be identified.
-(ya)-.15 G(re read.)-2.5 E F1<ad78>144 486 Q F0 .315(After e)184 486 R
2168
-
+498 Q F1<ad76>144 510 Q F0(Print shell input lines as the)184 510 Q 2.5
2169
-
+(ya)-.15 G(re read.)-2.5 E F1<ad78>144 522 Q F0 .315(After e)184 522 R
2162 ➡ 2170 .315(xpanding each)-.15 F F2 .315(simple command)2.815 F F0(,)A F1 -.25
2163 ➡ 2171 (fo)2.815 G(r).25 E F0(command,)2.815 E F1(case)2.815 E F0(command,)
2164 ➡ 2172 2.815 E F1(select)2.815 E F0(command,)2.815 E 1.236(or arithmetic)184
2165
-
No equivalent source code line in the reference code can be identified.
-498 R F1 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F
2173
-
+534 R F1 -.25(fo)3.736 G(r).25 E F0 1.236(command, display the e)3.736 F
2166 ➡ 2174 1.236(xpanded v)-.15 F 1.236(alue of)-.25 F F3(PS4)3.736 E F4(,)A F0
2167
-
No equivalent source code line in the reference code can be identified.
-(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 510 Q
2175
-
+(follo)3.486 E 1.236(wed by the com-)-.25 F(mand and its e)184 546 Q
2168 ➡ 2176 (xpanded ar)-.15 E(guments or associated w)-.18 E(ord list.)-.1 E F1
2169
-
No equivalent source code line in the reference code can be identified.
-<ad42>144 522 Q F0 2.578(The shell performs brace e)184 522 R 2.578
2177
-
+<ad42>144 558 Q F0 2.578(The shell performs brace e)184 558 R 2.578
2170 ➡ 2178 (xpansion \(see)-.15 F F1 2.578(Brace Expansion)5.078 F F0(abo)5.078 E
2171
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 534 Q
2172
-
No equivalent source code line in the reference code can be identified.
-(ault.)-.1 E F1<ad43>144 546 Q F0 .214(If set,)184 546 R F1(bash)2.714 E
2179
-
+-.15(ve)-.15 G 5.079(\). This).15 F 2.579(is on by)5.079 F(def)184 570 Q
2180
-
+(ault.)-.1 E F1<ad43>144 582 Q F0 .214(If set,)184 582 R F1(bash)2.714 E
2173 ➡ 2181 F0 .214(does not o)2.714 F -.15(ve)-.15 G .214(rwrite an e).15 F .214
2174 ➡ 2182 (xisting \214le with the)-.15 F F1(>)2.714 E F0(,)A F1(>&)2.714 E F0
2175 ➡ 2183 2.713(,a)C(nd)-2.713 E F1(<>)2.713 E F0 .213(redirection opera-)2.713 F
2176
-
No equivalent source code line in the reference code can be identified.
-3.053(tors. This)184 558 R .553(may be o)3.053 F -.15(ve)-.15 G .553
2184
-
+3.053(tors. This)184 594 R .553(may be o)3.053 F -.15(ve)-.15 G .553
2177 ➡ 2185 (rridden when creating output \214les by using the redirection opera-)
2178
-
No equivalent source code line in the reference code can be identified.
-.15 F(tor)184 570 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1
2179
-
No equivalent source code line in the reference code can be identified.
-<ad45>144 582 Q F0 .104(If set, an)184 582 R 2.604(yt)-.15 G .104
2186
-
+.15 F(tor)184 606 Q F1(>|)2.5 E F0(instead of)2.5 E F1(>)2.5 E F0(.)A F1
2187
-
+<ad45>144 618 Q F0 .104(If set, an)184 618 R 2.604(yt)-.15 G .104
2180 ➡ 2188 (rap on)-2.604 F F1(ERR)2.604 E F0 .103
2181 ➡ 2189 (is inherited by shell functions, command substitutions, and com-)2.604
2182
-
No equivalent source code line in the reference code can be identified.
-F .838(mands e)184 594 R -.15(xe)-.15 G .838(cuted in a subshell en).15
2190
-
+F .838(mands e)184 630 R -.15(xe)-.15 G .838(cuted in a subshell en).15
2183 ➡ 2191 F 3.338(vironment. The)-.4 F F1(ERR)3.338 E F0 .839
2184
-
No equivalent source code line in the reference code can be identified.
-(trap is normally not inherited in)3.339 F(such cases.)184 606 Q F1
2185
-
No equivalent source code line in the reference code can be identified.
-<ad48>144 618 Q F0(Enable)184 618 Q F1(!)3.032 E F0 .532
2192
-
+(trap is normally not inherited in)3.339 F(such cases.)184 642 Q F1
2193
-
+<ad48>144 654 Q F0(Enable)184 654 Q F1(!)3.032 E F0 .532
2186 ➡ 2194 (style history substitution.)5.532 F .531(This option is on by def)5.532
2187
-
No equivalent source code line in the reference code can be identified.
-F .531(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 630 Q -.15
2188
-
No equivalent source code line in the reference code can be identified.
-(ve)-.25 G(.).15 E F1<ad50>144 642 Q F0 .959
2189
-
No equivalent source code line in the reference code can be identified.
-(If set, the shell does not resolv)184 642 R 3.459(es)-.15 G .959
2195
-
+F .531(ault when the shell is inter)-.1 F(-)-.2 E(acti)184 666 Q -.15
2196
-
+(ve)-.25 G(.).15 E F1<ad50>144 678 Q F0 .959
2197
-
+(If set, the shell does not resolv)184 678 R 3.459(es)-.15 G .959
2190 ➡ 2198 (ymbolic links when e)-3.459 F -.15(xe)-.15 G .96
2191 ➡ 2199 (cuting commands such as).15 F F1(cd)3.46 E F0 2.822
2192
-
No equivalent source code line in the reference code can be identified.
-(that change the current w)184 654 R 2.822(orking directory)-.1 F 7.822
2200
-
+(that change the current w)184 690 R 2.822(orking directory)-.1 F 7.822
2193 ➡ 2201 (.I)-.65 G 5.322(tu)-7.822 G 2.822(ses the ph)-5.322 F 2.821
2194
-
No equivalent source code line in the reference code can be identified.
-(ysical directory structure)-.05 F 2.685(instead. By)184 666 R(def)2.685
2202
-
+(ysical directory structure)-.05 F 2.685(instead. By)184 702 R(def)2.685
2195 ➡ 2203 E(ault,)-.1 E F1(bash)2.686 E F0(follo)2.686 E .186
2196 ➡ 2204 (ws the logical chain of directories when performing com-)-.25 F
2197
-
No equivalent source code line in the reference code can be identified.
-(mands which change the current directory)184 678 Q(.)-.65 E F1<ad54>144
2198
-
No equivalent source code line in the reference code can be identified.
-690 Q F0 .89(If set, an)184 690 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1
2199
-
No equivalent source code line in the reference code can be identified.
-(DEB)3.39 E(UG)-.1 E F0(and)3.39 E F1(RETURN)3.39 E F0 .89
2200
-
No equivalent source code line in the reference code can be identified.
-(are inherited by shell functions, command)3.39 F 1.932
2201
-
No equivalent source code line in the reference code can be identified.
-(substitutions, and commands e)184 702 R -.15(xe)-.15 G 1.932
2202
-
No equivalent source code line in the reference code can be identified.
-(cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E
2203
-
No equivalent source code line in the reference code can be identified.
-(UG)-.1 E F0(and)4.432 E F1(RETURN)184 714 Q F0
2204
-
No equivalent source code line in the reference code can be identified.
-(traps are normally not inherited in such cases.)2.5 E(GNU Bash 5.0)72
2205
-
No equivalent source code line in the reference code can be identified.
-768 Q(2004 Apr 20)149.565 E(16)198.725 E 0 Cg EP
2205
-
+(mands which change the current directory)184 714 Q(.)-.65 E
2206
-
+(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(16)198.725 E 0 Cg EP
2206 ➡ 2207 %%Page: 17 17
2207 ➡ 2208 %%BeginPageSetup
2208 ➡ 2209 BP
2209 ➡ 2210 %%EndPageSetup
2210 ➡ 2211 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2211 ➡ 2212 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2212
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<adad>144 84 Q F0 .401
2213
-
No equivalent source code line in the reference code can be identified.
-(If no ar)184 84 R .401(guments follo)-.18 F 2.901(wt)-.25 G .401
2214
-
No equivalent source code line in the reference code can be identified.
-(his option, then the positional parameters are unset.)-2.901 F
2215
-
No equivalent source code line in the reference code can be identified.
-(Otherwise,)5.4 E(the positional parameters are set to the)184 96 Q/F2
2213
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad54>144 84 Q F0 .89
2214
-
+(If set, an)184 84 R 3.39(yt)-.15 G .89(raps on)-3.39 F F1(DEB)3.39 E
2215
-
+(UG)-.1 E F0(and)3.39 E F1(RETURN)3.39 E F0 .89
2216
-
+(are inherited by shell functions, command)3.39 F 1.932
2217
-
+(substitutions, and commands e)184 96 R -.15(xe)-.15 G 1.932
2218
-
+(cuted in a subshell en).15 F 4.432(vironment. The)-.4 F F1(DEB)4.432 E
2219
-
+(UG)-.1 E F0(and)4.432 E F1(RETURN)184 108 Q F0
2220
-
+(traps are normally not inherited in such cases.)2.5 E F1<adad>144 120 Q
2221
-
+F0 .401(If no ar)184 120 R .401(guments follo)-.18 F 2.901(wt)-.25 G
2222
-
+.401(his option, then the positional parameters are unset.)-2.901 F
2223
-
+(Otherwise,)5.4 E(the positional parameters are set to the)184 132 Q/F2
2216 ➡ 2224 10/Times-Italic@0 SF(ar)2.5 E(g)-.37 E F0(s, e)A -.15(ve)-.25 G 2.5(ni)
2217 ➡ 2225 .15 G 2.5(fs)-2.5 G(ome of them be)-2.5 E(gin with a)-.15 E F1<ad>2.5 E
2218
-
No equivalent source code line in the reference code can be identified.
-F0(.)A F1<ad>144 108 Q F0 1.944
2219
-
No equivalent source code line in the reference code can be identified.
-(Signal the end of options, cause all remaining)184 108 R F2(ar)4.444 E
2226
-
+F0(.)A F1<ad>144 144 Q F0 1.944
2227
-
+(Signal the end of options, cause all remaining)184 144 R F2(ar)4.444 E
2220 ➡ 2228 (g)-.37 E F0 4.444(st)C 4.444(ob)-4.444 G 4.445(ea)-4.444 G 1.945
2221
-
No equivalent source code line in the reference code can be identified.
-(ssigned to the positional)-4.445 F 3.446(parameters. The)184 120 R F1
2229
-
+(ssigned to the positional)-4.445 F 3.446(parameters. The)184 156 R F1
2222 ➡ 2230 <ad78>3.446 E F0(and)3.446 E F1<ad76>3.446 E F0 .945
2223 ➡ 2231 (options are turned of)3.446 F 3.445(f. If)-.25 F .945(there are no)
2224 ➡ 2232 3.445 F F2(ar)3.445 E(g)-.37 E F0 .945(s, the positional)B
2225
-
No equivalent source code line in the reference code can be identified.
-(parameters remain unchanged.)184 132 Q .425(The options are of)144
2226
-
No equivalent source code line in the reference code can be identified.
-148.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425
2233
-
+(parameters remain unchanged.)184 168 Q .425(The options are of)144
2234
-
+184.8 R 2.925(fb)-.25 G 2.925(yd)-2.925 G(ef)-2.925 E .425
2227 ➡ 2235 (ault unless otherwise noted.)-.1 F .425
2228 ➡ 2236 (Using + rather than \255 causes these options)5.425 F .178
2229
-
No equivalent source code line in the reference code can be identified.
-(to be turned of)144 160.8 R 2.678(f. The)-.25 F .178
2237
-
+(to be turned of)144 196.8 R 2.678(f. The)-.25 F .178
2230 ➡ 2238 (options can also be speci\214ed as ar)2.678 F .178(guments to an in)
2231 ➡ 2239 -.18 F -.2(vo)-.4 G .177(cation of the shell.).2 F(The)5.177 E .066
2232
-
No equivalent source code line in the reference code can be identified.
-(current set of options may be found in)144 172.8 R F1<24ad>2.566 E F0
2240
-
+(current set of options may be found in)144 208.8 R F1<24ad>2.566 E F0
2233 ➡ 2241 5.066(.T)C .066(he return status is al)-5.066 F -.1(wa)-.1 G .066
2234 ➡ 2242 (ys true unless an in).1 F -.25(va)-.4 G .067(lid option).25 F
2235
-
No equivalent source code line in the reference code can be identified.
-(is encountered.)144 184.8 Q F1(shift)108 201.6 Q F0([)2.5 E F2(n)A F0
2236
-
No equivalent source code line in the reference code can be identified.
-(])A .429(The positional parameters from)144 213.6 R F2(n)2.929 E F0
2243
-
+(is encountered.)144 220.8 Q F1(shift)108 237.6 Q F0([)2.5 E F2(n)A F0
2244
-
+(])A .429(The positional parameters from)144 249.6 R F2(n)2.929 E F0
2237 ➡ 2245 .429(+1 ... are renamed to)B F1 .429($1 ....)2.929 F F0 -.15(Pa)5.428 G
2238
-
No equivalent source code line in the reference code can be identified.
-.428(rameters represented by the num-).15 F(bers)144 225.6 Q F1($#)2.582
2246
-
+.428(rameters represented by the num-).15 F(bers)144 261.6 Q F1($#)2.582
2239 ➡ 2247 E F0(do)2.582 E .082(wn to)-.25 F F1($#)2.582 E F0<ad>A F2(n)A F0 .082
2240 ➡ 2248 (+1 are unset.)B F2(n)5.442 E F0 .082(must be a non-ne)2.822 F -.05(ga)
2241 ➡ 2249 -.15 G(ti).05 E .383 -.15(ve n)-.25 H .083(umber less than or equal to)
2242 ➡ 2250 .15 F F1($#)2.583 E F0 5.083(.I)C(f)-5.083 E F2(n)2.943 E F0 .06
2243
-
No equivalent source code line in the reference code can be identified.
-(is 0, no parameters are changed.)144 237.6 R(If)5.06 E F2(n)2.92 E F0
2251
-
+(is 0, no parameters are changed.)144 273.6 R(If)5.06 E F2(n)2.92 E F0
2244 ➡ 2252 .06(is not gi)2.8 F -.15(ve)-.25 G .06(n, it is assumed to be 1.).15 F
2245 ➡ 2253 (If)5.06 E F2(n)2.92 E F0 .06(is greater than)2.8 F F1($#)2.56 E F0 2.56
2246
-
No equivalent source code line in the reference code can be identified.
-(,t)C(he)-2.56 E .143(positional parameters are not changed.)144 249.6 R
2254
-
+(,t)C(he)-2.56 E .143(positional parameters are not changed.)144 285.6 R
2247 ➡ 2255 .144(The return status is greater than zero if)5.143 F F2(n)3.004 E F0
2248 ➡ 2256 .144(is greater than)2.884 F F1($#)2.644 E F0
2249
-
No equivalent source code line in the reference code can be identified.
-(or less than zero; otherwise 0.)144 261.6 Q F1(shopt)108 278.4 Q F0([)
2257
-
+(or less than zero; otherwise 0.)144 297.6 Q F1(shopt)108 314.4 Q F0([)
2250 ➡ 2258 2.5 E F1(\255pqsu)A F0 2.5(][)C F1<ad6f>-2.5 E F0 2.5(][)C F2(optname)
2251
-
No equivalent source code line in the reference code can be identified.
--2.5 E F0(...])2.5 E -.8(To)144 290.4 S .64(ggle the v).8 F .639
2259
-
+-2.5 E F0(...])2.5 E -.8(To)144 326.4 S .64(ggle the v).8 F .639
2252 ➡ 2260 (alues of settings controlling optional shell beha)-.25 F(vior)-.2 E
2253 ➡ 2261 5.639(.T)-.55 G .639(he settings can be either those)-5.639 F .374
2254
-
No equivalent source code line in the reference code can be identified.
-(listed belo)144 302.4 R 1.674 -.65(w, o)-.25 H 1.174 -.4(r, i).65 H
2262
-
+(listed belo)144 338.4 R 1.674 -.65(w, o)-.25 H 1.174 -.4(r, i).65 H
2255 ➡ 2263 2.874(ft).4 G(he)-2.874 E F1<ad6f>2.874 E F0 .375
2256 ➡ 2264 (option is used, those a)2.875 F -.25(va)-.2 G .375(ilable with the).25
2257 ➡ 2265 F F1<ad6f>2.875 E F0 .375(option to the)2.875 F F1(set)2.875 E F0 -.2
2258
-
No equivalent source code line in the reference code can be identified.
-(bu)2.875 G .375(iltin com-).2 F 3.326(mand. W)144 314.4 R .826
2266
-
+(bu)2.875 G .375(iltin com-).2 F 3.326(mand. W)144 350.4 R .826
2259 ➡ 2267 (ith no options, or with the)-.4 F F1<ad70>3.326 E F0 .825
2260 ➡ 2268 (option, a list of all settable options is displayed, with an)3.326 F
2261
-
No equivalent source code line in the reference code can be identified.
-.551(indication of whether or not each is set; if)144 326.4 R F2
2269
-
+.551(indication of whether or not each is set; if)144 362.4 R F2
2262 ➡ 2270 (optnames)3.052 E F0 .552
2263 ➡ 2271 (are supplied, the output is restricted to those)3.052 F 2.55
2264
-
No equivalent source code line in the reference code can be identified.
-(options. The)144 338.4 R F1<ad70>2.55 E F0 .049(option causes output t\
2272
-
+(options. The)144 374.4 R F1<ad70>2.55 E F0 .049(option causes output t\
2265 ➡ 2273 o be displayed in a form that may be reused as input.)2.55 F(Other)5.049
2266
-
No equivalent source code line in the reference code can be identified.
-E(options ha)144 350.4 Q .3 -.15(ve t)-.2 H(he follo).15 E
2267
-
No equivalent source code line in the reference code can be identified.
-(wing meanings:)-.25 E F1<ad73>144 362.4 Q F0(Enable \(set\) each)180
2268
-
No equivalent source code line in the reference code can be identified.
-362.4 Q F2(optname)2.5 E F0(.)A F1<ad75>144 374.4 Q F0
2269
-
No equivalent source code line in the reference code can be identified.
-(Disable \(unset\) each)180 374.4 Q F2(optname)2.5 E F0(.)A F1<ad71>144
2270
-
No equivalent source code line in the reference code can be identified.
-386.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\
2271
-
No equivalent source code line in the reference code can be identified.
-tus indicates whether the)180 386.4 R F2(optname)2.504 E F0(is)2.504 E
2272
-
No equivalent source code line in the reference code can be identified.
-.256(set or unset.)180 398.4 R .256(If multiple)5.256 F F2(optname)2.756
2274
-
+E(options ha)144 386.4 Q .3 -.15(ve t)-.2 H(he follo).15 E
2275
-
+(wing meanings:)-.25 E F1<ad73>144 398.4 Q F0(Enable \(set\) each)180
2276
-
+398.4 Q F2(optname)2.5 E F0(.)A F1<ad75>144 410.4 Q F0
2277
-
+(Disable \(unset\) each)180 410.4 Q F2(optname)2.5 E F0(.)A F1<ad71>144
2278
-
+422.4 Q F0 .003(Suppresses normal output \(quiet mode\); the return sta\
2279
-
+tus indicates whether the)180 422.4 R F2(optname)2.504 E F0(is)2.504 E
2280
-
+.256(set or unset.)180 434.4 R .256(If multiple)5.256 F F2(optname)2.756
2273 ➡ 2281 E F0(ar)2.756 E .256(guments are gi)-.18 F -.15(ve)-.25 G 2.756(nw).15 G
2274 ➡ 2282 (ith)-2.756 E F1<ad71>2.756 E F0 2.755(,t)C .255
2275
-
No equivalent source code line in the reference code can be identified.
-(he return status is zero if)-2.755 F(all)180 410.4 Q F2(optnames)2.5 E
2276
-
No equivalent source code line in the reference code can be identified.
-F0(are enabled; non-zero otherwise.)2.5 E F1<ad6f>144 422.4 Q F0
2277
-
No equivalent source code line in the reference code can be identified.
-(Restricts the v)180 422.4 Q(alues of)-.25 E F2(optname)2.5 E F0
2283
-
+(he return status is zero if)-2.755 F(all)180 446.4 Q F2(optnames)2.5 E
2284
-
+F0(are enabled; non-zero otherwise.)2.5 E F1<ad6f>144 458.4 Q F0
2285
-
+(Restricts the v)180 458.4 Q(alues of)-.25 E F2(optname)2.5 E F0
2278 ➡ 2286 (to be those de\214ned for the)2.5 E F1<ad6f>2.5 E F0(option to the)2.5
2279
-
No equivalent source code line in the reference code can be identified.
-E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .624(If either)144 439.2 R F1
2287
-
+E F1(set)2.5 E F0 -.2(bu)2.5 G(iltin.).2 E .624(If either)144 475.2 R F1
2280 ➡ 2288 <ad73>3.124 E F0(or)3.124 E F1<ad75>3.124 E F0 .624(is used with no)
2281 ➡ 2289 3.124 F F2(optname)3.124 E F0(ar)3.124 E(guments,)-.18 E F1(shopt)3.124
2282 ➡ 2290 E F0(sho)3.124 E .624(ws only those options which are)-.25 F 2.234
2283
-
No equivalent source code line in the reference code can be identified.
-(set or unset, respecti)144 451.2 R -.15(ve)-.25 G(ly).15 E 7.234(.U)
2291
-
+(set or unset, respecti)144 487.2 R -.15(ve)-.25 G(ly).15 E 7.234(.U)
2284 ➡ 2292 -.65 G 2.234(nless otherwise noted, the)-7.234 F F1(shopt)4.734 E F0
2285
-
No equivalent source code line in the reference code can be identified.
-2.234(options are disabled \(unset\) by)4.734 F(def)144 463.2 Q(ault.)
2293
-
+2.234(options are disabled \(unset\) by)4.734 F(def)144 499.2 Q(ault.)
2286 ➡ 2294 -.1 E 1.544(The return status when listing options is zero if all)144
2287
-
No equivalent source code line in the reference code can be identified.
-480 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.)
2295
-
+516 R F2(optnames)4.044 E F0 1.545(are enabled, non-zero otherwise.)
2288 ➡ 2296 4.045 F .696
2289 ➡ 2297 (When setting or unsetting options, the return status is zero unless an)
2290
-
No equivalent source code line in the reference code can be identified.
-144 492 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695(alid shell)
2291
-
No equivalent source code line in the reference code can be identified.
--.25 F(option.)144 504 Q(The list of)144 520.8 Q F1(shopt)2.5 E F0
2292
-
No equivalent source code line in the reference code can be identified.
-(options is:)2.5 E F1(assoc_expand_once)144 538.8 Q F0 1.944
2293
-
No equivalent source code line in the reference code can be identified.
-(If set, the shell suppresses multiple e)184 550.8 R -.25(va)-.25 G
2298
-
+144 528 R F2(optname)3.196 E F0 .696(is not a v)3.196 F .695(alid shell)
2299
-
+-.25 F(option.)144 540 Q(The list of)144 556.8 Q F1(shopt)2.5 E F0
2300
-
+(options is:)2.5 E F1(assoc_expand_once)144 574.8 Q F0 1.944
2301
-
+(If set, the shell suppresses multiple e)184 586.8 R -.25(va)-.25 G
2294 ➡ 2302 1.945(luation of associati).25 F 2.245 -.15(ve a)-.25 H 1.945
2295
-
No equivalent source code line in the reference code can be identified.
-(rray subscripts during).15 F .857(arithmetic e)184 562.8 R .857
2303
-
+(rray subscripts during).15 F .857(arithmetic e)184 598.8 R .857
2296 ➡ 2304 (xpression e)-.15 F -.25(va)-.25 G .857(luation and while e).25 F -.15
2297 ➡ 2305 (xe)-.15 G .857(cuting b).15 F .857(uiltins that can perform v)-.2 F
2298
-
No equivalent source code line in the reference code can be identified.
-(ariable)-.25 E(assignments.)184 574.8 Q F1(autocd)144 586.8 Q F0 .199
2299
-
No equivalent source code line in the reference code can be identified.
-(If set, a command name that is the name of a directory is e)184 586.8 R
2306
-
+(ariable)-.25 E(assignments.)184 610.8 Q F1(autocd)144 622.8 Q F0 .199
2307
-
+(If set, a command name that is the name of a directory is e)184 622.8 R
2300 ➡ 2308 -.15(xe)-.15 G .2(cuted as if it were the ar).15 F(gu-)-.18 E
2301
-
No equivalent source code line in the reference code can be identified.
-(ment to the)184 598.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F
2309
-
+(ment to the)184 634.8 Q F1(cd)2.5 E F0 2.5(command. This)2.5 F
2302 ➡ 2310 (option is only used by interacti)2.5 E .3 -.15(ve s)-.25 H(hells.).15 E
2303
-
No equivalent source code line in the reference code can be identified.
-F1(cdable_v)144 610.8 Q(ars)-.1 E F0 .156(If set, an ar)184 622.8 R .156
2311
-
+F1(cdable_v)144 646.8 Q(ars)-.1 E F0 .156(If set, an ar)184 658.8 R .156
2304 ➡ 2312 (gument to the)-.18 F F1(cd)2.656 E F0 -.2(bu)2.656 G .155
2305 ➡ 2313 (iltin command that is not a directory is assumed to be the).2 F
2306
-
No equivalent source code line in the reference code can be identified.
-(name of a v)184 634.8 Q(ariable whose v)-.25 E
2307
-
No equivalent source code line in the reference code can be identified.
-(alue is the directory to change to.)-.25 E F1(cdspell)144 646.8 Q F0
2314
-
+(name of a v)184 670.8 Q(ariable whose v)-.25 E
2315
-
+(alue is the directory to change to.)-.25 E F1(cdspell)144 682.8 Q F0
2308 ➡ 2316 1.055
2309 ➡ 2317 (If set, minor errors in the spelling of a directory component in a)184
2310
-
No equivalent source code line in the reference code can be identified.
-646.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988
2311
-
No equivalent source code line in the reference code can be identified.
-(corrected. The)184 658.8 R 1.488(errors check)3.988 F 1.487
2318
-
+682.8 R F1(cd)3.555 E F0 1.055(command will be)3.555 F 3.988
2319
-
+(corrected. The)184 694.8 R 1.488(errors check)3.988 F 1.487
2312 ➡ 2320 (ed for are transposed characters, a missing character)-.1 F 3.987(,a)
2313
-
No equivalent source code line in the reference code can be identified.
--.4 G(nd)-3.987 E .77(one character too man)184 670.8 R 4.57 -.65(y. I)
2321
-
+-.4 G(nd)-3.987 E .77(one character too man)184 706.8 R 4.57 -.65(y. I)
2314 ➡ 2322 -.15 H 3.27(fac).65 G .77
2315 ➡ 2323 (orrection is found, the corrected \214lename is printed, and)-3.27 F
2316
-
No equivalent source code line in the reference code can be identified.
-(the command proceeds.)184 682.8 Q
2324
-
+(the command proceeds.)184 718.8 Q
2317 ➡ 2325 (This option is only used by interacti)5 E .3 -.15(ve s)-.25 H(hells.)
2318
-
No equivalent source code line in the reference code can be identified.
-.15 E F1(checkhash)144 694.8 Q F0 .737(If set,)184 706.8 R F1(bash)3.237
2319
-
No equivalent source code line in the reference code can be identified.
-E F0 .736(checks that a command found in the hash table e)3.237 F .736
2320
-
No equivalent source code line in the reference code can be identified.
-(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184
2321
-
No equivalent source code line in the reference code can be identified.
-718.8 Q(If a hashed command no longer e)5 E
2322
-
No equivalent source code line in the reference code can be identified.
-(xists, a normal path search is performed.)-.15 E(GNU Bash 5.0)72 768 Q
2323
-
No equivalent source code line in the reference code can be identified.
-(2004 Apr 20)149.565 E(17)198.725 E 0 Cg EP
2326
-
+.15 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(17)198.725 E 0 Cg EP
2324 ➡ 2327 %%Page: 18 18
2325 ➡ 2328 %%BeginPageSetup
2326 ➡ 2329 BP
2327 ➡ 2330 %%EndPageSetup
2328 ➡ 2331 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2329 ➡ 2332 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2330
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(checkjobs)144 84 Q F0
2331
-
No equivalent source code line in the reference code can be identified.
-.448(If set,)184 96 R F1(bash)2.948 E F0 .448(lists the status of an)
2332
-
No equivalent source code line in the reference code can be identified.
-2.948 F 2.949(ys)-.15 G .449(topped and running jobs before e)-2.949 F
2333
-
No equivalent source code line in the reference code can be identified.
-.449(xiting an interacti)-.15 F -.15(ve)-.25 G 3.439(shell. If)184 108 R
2334
-
No equivalent source code line in the reference code can be identified.
-(an)3.439 E 3.439(yj)-.15 G .938(obs are running, this causes the e)
2335
-
No equivalent source code line in the reference code can be identified.
--3.439 F .938(xit to be deferred until a second e)-.15 F .938(xit is)
2336
-
No equivalent source code line in the reference code can be identified.
--.15 F 2.203(attempted without an interv)184 120 R 2.203
2337
-
No equivalent source code line in the reference code can be identified.
-(ening command \(see)-.15 F/F2 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F
2338
-
No equivalent source code line in the reference code can be identified.
-(OL)-.27 E F0(abo)4.453 E -.15(ve)-.15 G 4.703(\). The).15 F(shell)4.704
2339
-
No equivalent source code line in the reference code can be identified.
-E(al)184 132 Q -.1(wa)-.1 G(ys postpones e).1 E(xiting if an)-.15 E 2.5
2340
-
No equivalent source code line in the reference code can be identified.
-(yj)-.15 G(obs are stopped.)-2.5 E F1(checkwinsize)144 144 Q F0 1.09
2341
-
No equivalent source code line in the reference code can be identified.
-(If set,)184 156 R F1(bash)3.59 E F0 1.09(checks the windo)3.59 F 3.59
2342
-
No equivalent source code line in the reference code can be identified.
-(ws)-.25 G 1.09(ize after each e)-3.59 F 1.09(xternal \(non-b)-.15 F
2343
-
No equivalent source code line in the reference code can be identified.
-1.09(uiltin\) command and, if)-.2 F(necessary)184 168 Q 2.5(,u)-.65 G
2333
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(checkhash)144 84 Q F0
2334
-
+.737(If set,)184 96 R F1(bash)3.237 E F0 .736
2335
-
+(checks that a command found in the hash table e)3.237 F .736
2336
-
+(xists before trying to e)-.15 F -.15(xe)-.15 G(-).15 E(cute it.)184 108
2337
-
+Q(If a hashed command no longer e)5 E
2338
-
+(xists, a normal path search is performed.)-.15 E F1(checkjobs)144 120 Q
2339
-
+F0 .448(If set,)184 132 R F1(bash)2.948 E F0 .448
2340
-
+(lists the status of an)2.948 F 2.949(ys)-.15 G .449
2341
-
+(topped and running jobs before e)-2.949 F .449(xiting an interacti)-.15
2342
-
+F -.15(ve)-.25 G 3.439(shell. If)184 144 R(an)3.439 E 3.439(yj)-.15 G
2343
-
+.938(obs are running, this causes the e)-3.439 F .938
2344
-
+(xit to be deferred until a second e)-.15 F .938(xit is)-.15 F 2.203
2345
-
+(attempted without an interv)184 156 R 2.203(ening command \(see)-.15 F
2346
-
+/F2 9/Times-Bold@0 SF 2.203(JOB CONTR)4.703 F(OL)-.27 E F0(abo)4.453 E
2347
-
+-.15(ve)-.15 G 4.703(\). The).15 F(shell)4.704 E(al)184 168 Q -.1(wa)-.1
2348
-
+G(ys postpones e).1 E(xiting if an)-.15 E 2.5(yj)-.15 G
2349
-
+(obs are stopped.)-2.5 E F1(checkwinsize)144 180 Q F0 1.09(If set,)184
2350
-
+192 R F1(bash)3.59 E F0 1.09(checks the windo)3.59 F 3.59(ws)-.25 G 1.09
2351
-
+(ize after each e)-3.59 F 1.09(xternal \(non-b)-.15 F 1.09
2352
-
+(uiltin\) command and, if)-.2 F(necessary)184 204 Q 2.5(,u)-.65 G
2344 ➡ 2353 (pdates the v)-2.5 E(alues of)-.25 E F2(LINES)2.5 E F0(and)2.25 E F2
2345
-
No equivalent source code line in the reference code can be identified.
-(COLUMNS)2.5 E/F3 9/Times-Roman@0 SF(.)A F1(cmdhist)144 180 Q F0 1.202
2346
-
No equivalent source code line in the reference code can be identified.
-(If set,)184 180 R F1(bash)3.702 E F0 1.202(attempts to sa)3.702 F 1.502
2354
-
+(COLUMNS)2.5 E/F3 9/Times-Roman@0 SF(.)A F1(cmdhist)144 216 Q F0 1.202
2355
-
+(If set,)184 216 R F1(bash)3.702 E F0 1.202(attempts to sa)3.702 F 1.502
2347 ➡ 2356 -.15(ve a)-.2 H 1.202
2348 ➡ 2357 (ll lines of a multiple-line command in the same history).15 F(entry)184
2349
-
No equivalent source code line in the reference code can be identified.
-192 Q 6.133(.T)-.65 G 1.133(his allo)-6.133 F 1.133
2358
-
+228 Q 6.133(.T)-.65 G 1.133(his allo)-6.133 F 1.133
2350 ➡ 2359 (ws easy re-editing of multi-line commands.)-.25 F 1.132
2351
-
No equivalent source code line in the reference code can be identified.
-(This option is enabled by)6.132 F(def)184 204 Q .613(ault, b)-.1 F .613
2360
-
+(This option is enabled by)6.132 F(def)184 240 Q .613(ault, b)-.1 F .613
2352 ➡ 2361 (ut only has an ef)-.2 F .614
2353 ➡ 2362 (fect if command history is enabled, as described abo)-.25 F .914 -.15
2354
-
No equivalent source code line in the reference code can be identified.
-(ve u)-.15 H(nder).15 E F2(HIST)184 216 Q(OR)-.162 E(Y)-.315 E F3(.)A F1
2355
-
No equivalent source code line in the reference code can be identified.
-(compat31)144 228 Q F0 .42(If set,)184 240 R F1(bash)2.92 E F0 .42
2363
-
+(ve u)-.15 H(nder).15 E F2(HIST)184 252 Q(OR)-.162 E(Y)-.315 E F3(.)A F1
2364
-
+(compat31)144 264 Q F0 .42(If set,)184 276 R F1(bash)2.92 E F0 .42
2356 ➡ 2365 (changes its beha)2.92 F .419(vior to that of v)-.2 F .419
2357 ➡ 2366 (ersion 3.1 with respect to quoted ar)-.15 F(guments)-.18 E .461(to the)
2358
-
No equivalent source code line in the reference code can be identified.
-184 252 R F1([[)2.961 E F0 .462(conditional command')2.962 F(s)-.55 E F1
2367
-
+184 288 R F1([[)2.961 E F0 .462(conditional command')2.962 F(s)-.55 E F1
2359 ➡ 2368 (=~)2.962 E F0 .462
2360 ➡ 2369 (operator and locale-speci\214c string comparison when)2.962 F .71
2361
-
No equivalent source code line in the reference code can be identified.
-(using the)184 264 R F1([[)3.21 E F0 .71(conditional command')3.21 F(s)
2370
-
+(using the)184 300 R F1([[)3.21 E F0 .71(conditional command')3.21 F(s)
2362 ➡ 2371 -.55 E F1(<)3.21 E F0(and)3.21 E F1(>)3.21 E F0 3.21(operators. Bash)
2363 ➡ 2372 3.21 F -.15(ve)3.21 G .71(rsions prior to bash-4.1).15 F .82
2364
-
No equivalent source code line in the reference code can be identified.
-(use ASCII collation and)184 276 R/F4 10/Times-Italic@0 SF(str)3.321 E
2373
-
+(use ASCII collation and)184 312 R/F4 10/Times-Italic@0 SF(str)3.321 E
2365 ➡ 2374 (cmp)-.37 E F0 .821(\(3\); bash-4.1 and later use the current locale')
2366
-
No equivalent source code line in the reference code can be identified.
-.19 F 3.321(sc)-.55 G(ollation)-3.321 E(sequence and)184 288 Q F4(str)
2367
-
No equivalent source code line in the reference code can be identified.
-2.5 E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 300 Q F0 1.41(If set,)
2368
-
No equivalent source code line in the reference code can be identified.
-184 312 R F1(bash)3.91 E F0 1.41(changes its beha)3.91 F 1.409
2375
-
+.19 F 3.321(sc)-.55 G(ollation)-3.321 E(sequence and)184 324 Q F4(str)
2376
-
+2.5 E(coll)-.37 E F0(\(3\).).51 E F1(compat32)144 336 Q F0 1.41(If set,)
2377
-
+184 348 R F1(bash)3.91 E F0 1.41(changes its beha)3.91 F 1.409
2369 ➡ 2378 (vior to that of v)-.2 F 1.409
2370 ➡ 2379 (ersion 3.2 with respect to locale-speci\214c)-.15 F .422
2371
-
No equivalent source code line in the reference code can be identified.
-(string comparison when using the)184 324 R F1([[)2.922 E F0 .422
2380
-
+(string comparison when using the)184 360 R F1([[)2.922 E F0 .422
2372 ➡ 2381 (conditional command')2.922 F(s)-.55 E F1(<)2.922 E F0(and)2.922 E F1(>)
2373 ➡ 2382 2.923 E F0 .423(operators \(see pre-)2.923 F .481
2374
-
No equivalent source code line in the reference code can be identified.
-(vious item\) and the ef)184 336 R .481
2383
-
+(vious item\) and the ef)184 372 R .481
2375 ➡ 2384 (fect of interrupting a command list.)-.25 F .48(Bash v)5.481 F .48
2376
-
No equivalent source code line in the reference code can be identified.
-(ersions 3.2 and earlier)-.15 F(continue with the ne)184 348 Q
2385
-
+(ersions 3.2 and earlier)-.15 F(continue with the ne)184 384 Q
2377 ➡ 2386 (xt command in the list after one terminates due to an interrupt.)-.15 E
2378
-
No equivalent source code line in the reference code can be identified.
-F1(compat40)144 360 Q F0 1.409(If set,)184 372 R F1(bash)3.909 E F0
2387
-
+F1(compat40)144 396 Q F0 1.409(If set,)184 408 R F1(bash)3.909 E F0
2379 ➡ 2388 1.409(changes its beha)3.909 F 1.409(vior to that of v)-.2 F 1.41
2380 ➡ 2389 (ersion 4.0 with respect to locale-speci\214c)-.15 F 2.008
2381
-
No equivalent source code line in the reference code can be identified.
-(string comparison when using the)184 384 R F1([[)4.508 E F0 2.007
2390
-
+(string comparison when using the)184 420 R F1([[)4.508 E F0 2.007
2382 ➡ 2391 (conditional command')4.508 F(s)-.55 E F1(<)4.507 E F0(and)4.507 E F1(>)
2383
-
No equivalent source code line in the reference code can be identified.
-4.507 E F0 2.007(operators \(see)4.507 F .769(description of)184 396 R
2392
-
+4.507 E F0 2.007(operators \(see)4.507 F .769(description of)184 432 R
2384 ➡ 2393 F1(compat31)3.269 E F0 3.269(\)a)C .769(nd the ef)-3.269 F .769
2385 ➡ 2394 (fect of interrupting a command list.)-.25 F .77(Bash v)5.77 F(ersions)
2386 ➡ 2395 -.15 E .087(4.0 and later interrupt the list as if the shell recei)184
2387
-
No equivalent source code line in the reference code can be identified.
-408 R -.15(ve)-.25 G 2.586(dt).15 G .086(he interrupt; pre)-2.586 F .086
2388
-
No equivalent source code line in the reference code can be identified.
-(vious v)-.25 F .086(ersions con-)-.15 F(tinue with the ne)184 420 Q
2389
-
No equivalent source code line in the reference code can be identified.
-(xt command in the list.)-.15 E F1(compat41)144 432 Q F0 1.483(If set,)
2390
-
No equivalent source code line in the reference code can be identified.
-184 444 R F1(bash)3.983 E F0 3.983(,w)C 1.483(hen in)-3.983 F F4(posix)
2396
-
+444 R -.15(ve)-.25 G 2.586(dt).15 G .086(he interrupt; pre)-2.586 F .086
2397
-
+(vious v)-.25 F .086(ersions con-)-.15 F(tinue with the ne)184 456 Q
2398
-
+(xt command in the list.)-.15 E F1(compat41)144 468 Q F0 1.483(If set,)
2399
-
+184 480 R F1(bash)3.983 E F0 3.983(,w)C 1.483(hen in)-3.983 F F4(posix)
2391 ➡ 2400 3.983 E F0 1.484
2392 ➡ 2401 (mode, treats a single quote in a double-quoted parameter)3.983 F -.15
2393
-
No equivalent source code line in the reference code can be identified.
-(ex)184 456 S .959(pansion as a special character).15 F 5.959(.T)-.55 G
2402
-
+(ex)184 492 S .959(pansion as a special character).15 F 5.959(.T)-.55 G
2394 ➡ 2403 .958(he single quotes must match \(an e)-5.959 F -.15(ve)-.25 G 3.458
2395 ➡ 2404 (nn).15 G .958(umber\) and)-3.458 F .59
2396
-
No equivalent source code line in the reference code can be identified.
-(the characters between the single quotes are considered quoted.)184 468
2405
-
+(the characters between the single quotes are considered quoted.)184 504
2397 ➡ 2406 R .59(This is the beha)5.59 F .59(vior of)-.2 F .59
2398
-
No equivalent source code line in the reference code can be identified.
-(posix mode through v)184 480 R .589(ersion 4.1.)-.15 F .589(The def)
2407
-
+(posix mode through v)184 516 R .589(ersion 4.1.)-.15 F .589(The def)
2399 ➡ 2408 5.589 F .589(ault bash beha)-.1 F .589(vior remains as in pre)-.2 F .589
2400
-
No equivalent source code line in the reference code can be identified.
-(vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 492 Q F1(compat42)144 504 Q
2401
-
No equivalent source code line in the reference code can be identified.
-F0 1.796(If set,)184 516 R F1(bash)4.296 E F0 1.796
2409
-
+(vious v)-.25 F(er)-.15 E(-)-.2 E(sions.)184 528 Q F1(compat42)144 540 Q
2410
-
+F0 1.796(If set,)184 552 R F1(bash)4.296 E F0 1.796
2402 ➡ 2411 (does not process the replacement string in the pattern substitution w)
2403
-
No equivalent source code line in the reference code can be identified.
-4.296 F(ord)-.1 E -.15(ex)184 528 S(pansion using quote remo).15 E -.25
2404
-
No equivalent source code line in the reference code can be identified.
-(va)-.15 G(l.).25 E F1(compat43)144 540 Q F0 .141(If set,)184 552 R F1
2412
-
+4.296 F(ord)-.1 E -.15(ex)184 564 S(pansion using quote remo).15 E -.25
2413
-
+(va)-.15 G(l.).25 E F1(compat43)144 576 Q F0 .141(If set,)184 588 R F1
2405 ➡ 2414 (bash)2.641 E F0 .141(does not print a w)2.641 F .14
2406 ➡ 2415 (arning message if an attempt is made to use a quoted com-)-.1 F .912
2407
-
No equivalent source code line in the reference code can be identified.
-(pound array assignment as an ar)184 564 R .912(gument to)-.18 F F1
2416
-
+(pound array assignment as an ar)184 600 R .912(gument to)-.18 F F1
2408 ➡ 2417 (declar)3.413 E(e)-.18 E F0 3.413(,m)C(ak)-3.413 E .913(es w)-.1 F .913
2409
-
No equivalent source code line in the reference code can be identified.
-(ord e)-.1 F .913(xpansion errors non-)-.15 F -.1(fa)184 576 S .353
2418
-
+(ord e)-.1 F .913(xpansion errors non-)-.15 F -.1(fa)184 612 S .353
2410 ➡ 2419 (tal errors that cause the current command to f).1 F .353(ail \(the def)
2411 ➡ 2420 -.1 F .352(ault beha)-.1 F .352(vior is to mak)-.2 F 2.852(et)-.1 G(hem)
2412
-
No equivalent source code line in the reference code can be identified.
--2.852 E -.1(fa)184 588 S 1.057(tal errors that cause the shell to e).1
2421
-
+-2.852 E -.1(fa)184 624 S 1.057(tal errors that cause the shell to e).1
2413 ➡ 2422 F 1.058(xit\), and does not reset the loop state when a shell)-.15 F
2414
-
No equivalent source code line in the reference code can be identified.
-.375(function is e)184 600 R -.15(xe)-.15 G .375(cuted \(this allo).15 F
2423
-
+.375(function is e)184 636 R -.15(xe)-.15 G .375(cuted \(this allo).15 F
2415 ➡ 2424 (ws)-.25 E F1(br)2.875 E(eak)-.18 E F0(or)2.875 E F1(continue)2.875 E F0
2416 ➡ 2425 .374(in a shell function to af)2.875 F .374(fect loops in)-.25 F
2417
-
No equivalent source code line in the reference code can be identified.
-(the caller')184 612 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F1
2418
-
No equivalent source code line in the reference code can be identified.
-(compat44)144 624 Q F0 .441(If set,)184 636 R F1(bash)2.941 E F0(sa)
2426
-
+(the caller')184 648 Q 2.5(sc)-.55 G(onte)-2.5 E(xt\).)-.15 E F1
2427
-
+(compat44)144 660 Q F0 .441(If set,)184 672 R F1(bash)2.941 E F0(sa)
2419 ➡ 2428 2.942 E -.15(ve)-.2 G 2.942(st).15 G .442(he positional parameters to B)
2420 ➡ 2429 -2.942 F .442(ASH_ARGV and B)-.35 F .442(ASH_ARGC before)-.35 F(the)184
2421
-
No equivalent source code line in the reference code can be identified.
-648 Q 2.5(ya)-.15 G(re used, re)-2.5 E -.05(ga)-.15 G
2430
-
+684 Q 2.5(ya)-.15 G(re used, re)-2.5 E -.05(ga)-.15 G
2422 ➡ 2431 (rdless of whether or not e).05 E(xtended deb)-.15 E
2423
-
No equivalent source code line in the reference code can be identified.
-(ugging mode is enabled.)-.2 E F1(complete_fullquote)144 660 Q F0 .654
2424
-
No equivalent source code line in the reference code can be identified.
-(If set,)184 672 R F1(bash)3.153 E F0 .653(quotes all shell metacharact\
2432
-
+(ugging mode is enabled.)-.2 E F1(complete_fullquote)144 696 Q F0 .654
2433
-
+(If set,)184 708 R F1(bash)3.153 E F0 .653(quotes all shell metacharact\
2425 ➡ 2434 ers in \214lenames and directory names when per)3.153 F(-)-.2 E 1.524
2426
-
No equivalent source code line in the reference code can be identified.
-(forming completion.)184 684 R 1.524(If not set,)6.524 F F1(bash)4.024 E
2435
-
+(forming completion.)184 720 R 1.524(If not set,)6.524 F F1(bash)4.024 E
2427 ➡ 2436 F0(remo)4.024 E -.15(ve)-.15 G 4.024(sm).15 G 1.524
2428
-
No equivalent source code line in the reference code can be identified.
-(etacharacters such as the dollar sign)-4.024 F 2.667(from the set of c\
2429
-
No equivalent source code line in the reference code can be identified.
-haracters that will be quoted in completed \214lenames when these)184
2430
-
No equivalent source code line in the reference code can be identified.
-696 R .028(metacharacters appear in shell v)184 708 R .028
2431
-
No equivalent source code line in the reference code can be identified.
-(ariable references in w)-.25 F .029(ords to be completed.)-.1 F .029
2432
-
No equivalent source code line in the reference code can be identified.
-(This means)5.029 F 2.91(that dollar signs in v)184 720 R 2.909
2433
-
No equivalent source code line in the reference code can be identified.
-(ariable names that e)-.25 F 2.909
2434
-
No equivalent source code line in the reference code can be identified.
-(xpand to directories will not be quoted;)-.15 F(GNU Bash 5.0)72 768 Q
2437
-
+(etacharacters such as the dollar sign)-4.024 F(GNU Bash 5.0)72 768 Q
2435 ➡ 2438 (2004 Apr 20)149.565 E(18)198.725 E 0 Cg EP
2436 ➡ 2439 %%Page: 19 19
2437 ➡ 2440 %%BeginPageSetup
@@ -2439,211 +2442,211 @@ BP
2439 ➡ 2442 %%EndPageSetup
2440 ➡ 2443 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2441 ➡ 2444 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2442
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E(ho)184 84 Q(we)-.25 E -.15(ve)-.25 G 2.702
2443
-
No equivalent source code line in the reference code can be identified.
--.4(r, a).15 H 2.202 -.15(ny d).4 H 1.902
2445
-
+E(UIL)-.1 E(TINS\(1\))-.92 E 2.667(from the set of characters that will\
2446
-
+ be quoted in completed \214lenames when these)184 84 R .028
2447
-
+(metacharacters appear in shell v)184 96 R .028(ariable references in w)
2448
-
+-.25 F .029(ords to be completed.)-.1 F .029(This means)5.029 F 1.073
2449
-
+(that dollar signs in v)184 108 R 1.073(ariable names that e)-.25 F
2450
-
+1.073(xpand to directories will not be quoted; ho)-.15 F(w-)-.25 E -2.15
2451
-
+-.25(ev e)184 120 T 1.922 -.4(r, a).25 H 1.422 -.15(ny d).4 H 1.123
2444 ➡ 2452 (ollar signs appearing in \214lenames will not be quoted, either).15 F
2445
-
No equivalent source code line in the reference code can be identified.
-6.903(.T)-.55 G 1.903(his is)-6.903 F(acti)184 96 Q .673 -.15(ve o)-.25
2446
-
No equivalent source code line in the reference code can be identified.
-H .373
2447
-
No equivalent source code line in the reference code can be identified.
-(nly when bash is using backslashes to quote completed \214lenames.).15
2448
-
No equivalent source code line in the reference code can be identified.
-F .372(This v)5.372 F(ariable)-.25 E(is set by def)184 108 Q
2453
-
+6.123(.T)-.55 G 1.123(his is acti)-6.123 F -.15(ve)-.25 G .59
2454
-
+(only when bash is using backslashes to quote completed \214lenames.)184
2455
-
+132 R .59(This v)5.59 F .59(ariable is set)-.25 F(by def)184 144 Q
2449 ➡ 2456 (ault, which is the def)-.1 E(ault bash beha)-.1 E(vior in v)-.2 E
2450
-
No equivalent source code line in the reference code can be identified.
-(ersions through 4.2.)-.15 E/F1 10/Times-Bold@0 SF(dir)144 120 Q(expand)
2451
-
No equivalent source code line in the reference code can be identified.
--.18 E F0 .486(If set,)184 132 R F1(bash)2.986 E F0 .486
2457
-
+(ersions through 4.2.)-.15 E/F1 10/Times-Bold@0 SF(dir)144 156 Q(expand)
2458
-
+-.18 E F0 .486(If set,)184 168 R F1(bash)2.986 E F0 .486
2452 ➡ 2459 (replaces directory names with the results of w)2.986 F .486(ord e)-.1 F
2453 ➡ 2460 .487(xpansion when perform-)-.15 F .18(ing \214lename completion.)184
2454
-
No equivalent source code line in the reference code can be identified.
-144 R .179(This changes the contents of the readline editing b)5.18 F
2461
-
+180 R .179(This changes the contents of the readline editing b)5.18 F
2455 ➡ 2462 (uf)-.2 E(fer)-.25 E 5.179(.I)-.55 G 2.679(fn)-5.179 G(ot)-2.679 E(set,)
2456
-
No equivalent source code line in the reference code can be identified.
-184 156 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G
2457
-
No equivalent source code line in the reference code can be identified.
-(hat the user typed.)-2.5 E F1(dirspell)144 168 Q F0 .858(If set,)184
2458
-
No equivalent source code line in the reference code can be identified.
-168 R F1(bash)3.358 E F0 .858
2463
-
+184 192 Q F1(bash)2.5 E F0(attempts to preserv)2.5 E 2.5(ew)-.15 G
2464
-
+(hat the user typed.)-2.5 E F1(dirspell)144 204 Q F0 .858(If set,)184
2465
-
+204 R F1(bash)3.358 E F0 .858
2459 ➡ 2466 (attempts spelling correction on directory names during w)3.358 F .859
2460 ➡ 2467 (ord completion if)-.1 F
2461
-
No equivalent source code line in the reference code can be identified.
-(the directory name initially supplied does not e)184 180 Q(xist.)-.15 E
2462
-
No equivalent source code line in the reference code can be identified.
-F1(dotglob)144 192 Q F0 .165(If set,)184 192 R F1(bash)2.665 E F0 .165
2468
-
+(the directory name initially supplied does not e)184 216 Q(xist.)-.15 E
2469
-
+F1(dotglob)144 228 Q F0 .165(If set,)184 228 R F1(bash)2.665 E F0 .165
2463 ➡ 2470 (includes \214lenames be)2.665 F .165(ginning with a `.)-.15 F 2.665('i)
2464 ➡ 2471 -.7 G 2.665(nt)-2.665 G .165(he results of pathname e)-2.665 F
2465
-
No equivalent source code line in the reference code can be identified.
-(xpansion.)-.15 E(The \214lenames)184 204 Q F1 -.63(``)2.5 G -.55(.').63
2472
-
+(xpansion.)-.15 E(The \214lenames)184 240 Q F1 -.63(``)2.5 G -.55(.').63
2466 ➡ 2473 G(')-.08 E F0(and)5 E F1 -.63(``)2.5 G(..).63 E -.63('')-.55 G F0
2467 ➡ 2474 (must al)5.63 E -.1(wa)-.1 G(ys be matched e).1 E(xplicitly)-.15 E 2.5
2468 ➡ 2475 (,e)-.65 G -.15(ve)-2.75 G 2.5(ni).15 G(f)-2.5 E F1(dotglob)2.5 E F0
2469
-
No equivalent source code line in the reference code can be identified.
-(is set.)2.5 E F1(execfail)144 216 Q F0 1.386(If set, a non-interacti)
2470
-
No equivalent source code line in the reference code can be identified.
-184 216 R 1.686 -.15(ve s)-.25 H 1.386(hell will not e).15 F 1.386
2476
-
+(is set.)2.5 E F1(execfail)144 252 Q F0 1.386(If set, a non-interacti)
2477
-
+184 252 R 1.686 -.15(ve s)-.25 H 1.386(hell will not e).15 F 1.386
2471 ➡ 2478 (xit if it cannot e)-.15 F -.15(xe)-.15 G 1.387
2472
-
No equivalent source code line in the reference code can be identified.
-(cute the \214le speci\214ed as an).15 F(ar)184 228 Q(gument to the)-.18
2479
-
+(cute the \214le speci\214ed as an).15 F(ar)184 264 Q(gument to the)-.18
2473 ➡ 2480 E F1(exec)2.5 E F0 -.2(bu)2.5 G(iltin command.).2 E(An interacti)5 E .3
2474 ➡ 2481 -.15(ve s)-.25 H(hell does not e).15 E(xit if)-.15 E F1(exec)2.5 E F0
2475
-
No equivalent source code line in the reference code can be identified.
--.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 240 Q F0 .717
2476
-
No equivalent source code line in the reference code can be identified.
-(If set, aliases are e)184 252 R .717(xpanded as described abo)-.15 F
2482
-
+-.1(fa)2.5 G(ils.).1 E F1(expand_aliases)144 276 Q F0 .717
2483
-
+(If set, aliases are e)184 288 R .717(xpanded as described abo)-.15 F
2477 ➡ 2484 1.017 -.15(ve u)-.15 H(nder).15 E/F2 9/Times-Bold@0 SF(ALIASES)3.217 E
2478 ➡ 2485 /F3 9/Times-Roman@0 SF(.)A F0 .716(This option is enabled)5.217 F
2479
-
No equivalent source code line in the reference code can be identified.
-(by def)184 264 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.)
2480
-
No equivalent source code line in the reference code can be identified.
-.15 E F1(extdeb)144 276 Q(ug)-.2 E F0 .671(If set at shell in)184 288 R
2486
-
+(by def)184 300 Q(ault for interacti)-.1 E .3 -.15(ve s)-.25 H(hells.)
2487
-
+.15 E F1(extdeb)144 312 Q(ug)-.2 E F0 .671(If set at shell in)184 324 R
2481 ➡ 2488 -.2(vo)-.4 G .671(cation, arrange to e).2 F -.15(xe)-.15 G .671
2482 ➡ 2489 (cute the deb).15 F .672(ugger pro\214le before the shell starts,)-.2 F
2483
-
No equivalent source code line in the reference code can be identified.
-.221(identical to the)184 300 R F1<adad646562>2.721 E(ugger)-.2 E F0
2490
-
+.221(identical to the)184 336 R F1<adad646562>2.721 E(ugger)-.2 E F0
2484 ➡ 2491 2.721(option. If)2.721 F .221(set after in)2.721 F -.2(vo)-.4 G .221
2485
-
No equivalent source code line in the reference code can be identified.
-(cation, beha).2 F .22(vior intended for use by)-.2 F(deb)184 312 Q
2486
-
No equivalent source code line in the reference code can be identified.
-(uggers is enabled:)-.2 E F1(1.)184 324 Q F0(The)220 324 Q F1<ad46>4.25
2492
-
+(cation, beha).2 F .22(vior intended for use by)-.2 F(deb)184 348 Q
2493
-
+(uggers is enabled:)-.2 E F1(1.)184 360 Q F0(The)220 360 Q F1<ad46>4.25
2487 ➡ 2494 E F0 1.75(option to the)4.25 F F1(declar)4.251 E(e)-.18 E F0 -.2(bu)
2488 ➡ 2495 4.251 G 1.751(iltin displays the source \214le name and line).2 F
2489
-
No equivalent source code line in the reference code can be identified.
-(number corresponding to each function name supplied as an ar)220 336 Q
2490
-
No equivalent source code line in the reference code can be identified.
-(gument.)-.18 E F1(2.)184 348 Q F0 1.667(If the command run by the)220
2491
-
No equivalent source code line in the reference code can be identified.
-348 R F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167 F
2492
-
No equivalent source code line in the reference code can be identified.
-1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220 360
2493
-
No equivalent source code line in the reference code can be identified.
-Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 372 Q F0 .84
2494
-
No equivalent source code line in the reference code can be identified.
-(If the command run by the)220 372 R F1(DEB)3.34 E(UG)-.1 E F0 .841
2496
-
+(number corresponding to each function name supplied as an ar)220 372 Q
2497
-
+(gument.)-.18 E F1(2.)184 384 Q F0 1.667(If the command run by the)220
2498
-
+384 R F1(DEB)4.167 E(UG)-.1 E F0 1.667(trap returns a non-zero v)4.167 F
2499
-
+1.667(alue, the ne)-.25 F(xt)-.15 E(command is skipped and not e)220 396
2500
-
+Q -.15(xe)-.15 G(cuted.).15 E F1(3.)184 408 Q F0 .84
2501
-
+(If the command run by the)220 408 R F1(DEB)3.34 E(UG)-.1 E F0 .841
2495 ➡ 2502 (trap returns a v)3.341 F .841(alue of 2, and the shell is)-.25 F -.15
2496
-
No equivalent source code line in the reference code can be identified.
-(exe)220 384 S .488
2503
-
+(exe)220 420 S .488
2497 ➡ 2504 (cuting in a subroutine \(a shell function or a shell script e).15 F
2498 ➡ 2505 -.15(xe)-.15 G .488(cuted by the).15 F F1(.)2.988 E F0(or)2.988 E F1
2499
-
No equivalent source code line in the reference code can be identified.
-(sour)220 396 Q(ce)-.18 E F0 -.2(bu)2.5 G
2506
-
+(sour)220 432 Q(ce)-.18 E F0 -.2(bu)2.5 G
2500 ➡ 2507 (iltins\), the shell simulates a call to).2 E F1 -.18(re)2.5 G(tur).18 E
2501
-
No equivalent source code line in the reference code can be identified.
-(n)-.15 E F0(.)A F1(4.)184 408 Q F2 -.27(BA)220 408 S(SH_ARGC).27 E F0
2508
-
+(n)-.15 E F0(.)A F1(4.)184 444 Q F2 -.27(BA)220 444 S(SH_ARGC).27 E F0
2502 ➡ 2509 (and)3.153 E F2 -.27(BA)3.403 G(SH_ARGV).27 E F0 .904
2503
-
No equivalent source code line in the reference code can be identified.
-(are updated as described in their descriptions)3.154 F(abo)220 420 Q
2504
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.15 G(.).15 E F1(5.)184 432 Q F0 1.637(Function tracing is ena\
2505
-
No equivalent source code line in the reference code can be identified.
-bled: command substitution, shell functions, and sub-)220 432 R
2506
-
No equivalent source code line in the reference code can be identified.
-(shells in)220 444 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1
2510
-
+(are updated as described in their descriptions)3.154 F(abo)220 456 Q
2511
-
+-.15(ve)-.15 G(.).15 E F1(5.)184 468 Q F0 1.637(Function tracing is ena\
2512
-
+bled: command substitution, shell functions, and sub-)220 468 R
2513
-
+(shells in)220 480 Q -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1
2507 ➡ 2514 (\()2.5 E/F4 10/Times-Italic@0 SF(command)2.5 E F1(\))2.5 E F0
2508 ➡ 2515 (inherit the)2.5 E F1(DEB)2.5 E(UG)-.1 E F0(and)2.5 E F1(RETURN)2.5 E F0
2509
-
No equivalent source code line in the reference code can be identified.
-(traps.)2.5 E F1(6.)184 456 Q F0 1.082(Error tracing is enabled: comman\
2510
-
No equivalent source code line in the reference code can be identified.
-d substitution, shell functions, and subshells)220 456 R(in)220 468 Q
2516
-
+(traps.)2.5 E F1(6.)184 492 Q F0 1.082(Error tracing is enabled: comman\
2517
-
+d substitution, shell functions, and subshells)220 492 R(in)220 504 Q
2511 ➡ 2518 -.2(vo)-.4 G -.1(ke).2 G 2.5(dw).1 G(ith)-2.5 E F1(\()2.5 E F4(command)
2512 ➡ 2519 2.5 E F1(\))2.5 E F0(inherit the)2.5 E F1(ERR)2.5 E F0(trap.)2.5 E F1
2513
-
No equivalent source code line in the reference code can be identified.
-(extglob)144 480 Q F0 .4(If set, the e)184 480 R .4
2520
-
+(extglob)144 516 Q F0 .4(If set, the e)184 516 R .4
2514 ➡ 2521 (xtended pattern matching features described abo)-.15 F .7 -.15(ve u)
2515
-
No equivalent source code line in the reference code can be identified.
--.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 492 Q
2516
-
No equivalent source code line in the reference code can be identified.
-F0(are enabled.)2.5 E F1(extquote)144 504 Q F0 2.473(If set,)184 516 R
2522
-
+-.15 H(nder).15 E F1 -.1(Pa)2.9 G .4(thname Expan-).1 F(sion)184 528 Q
2523
-
+F0(are enabled.)2.5 E F1(extquote)144 540 Q F0 2.473(If set,)184 552 R
2517 ➡ 2524 F1($)4.973 E F0<08>A F4(string)A F0 4.973<0861>C(nd)-4.973 E F1($)4.973
2518 ➡ 2525 E F0(")A F4(string)A F0 4.973("q)C 2.473(uoting is performed within)
2519 ➡ 2526 -4.973 F F1(${)4.973 E F4(par)A(ameter)-.15 E F1(})A F0 -.15(ex)4.973 G
2520
-
No equivalent source code line in the reference code can be identified.
-(pansions).15 E(enclosed in double quotes.)184 528 Q
2521
-
No equivalent source code line in the reference code can be identified.
-(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 540 Q F0
2522
-
No equivalent source code line in the reference code can be identified.
-1.425(If set, patterns which f)184 540 R 1.425
2527
-
+(pansions).15 E(enclosed in double quotes.)184 564 Q
2528
-
+(This option is enabled by def)5 E(ault.)-.1 E F1(failglob)144 576 Q F0
2529
-
+1.425(If set, patterns which f)184 576 R 1.425
2523 ➡ 2530 (ail to match \214lenames during pathname e)-.1 F 1.424
2524
-
No equivalent source code line in the reference code can be identified.
-(xpansion result in an)-.15 F -.15(ex)184 552 S(pansion error).15 E(.)
2525
-
No equivalent source code line in the reference code can be identified.
--.55 E F1 -.25(fo)144 564 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0
2526
-
No equivalent source code line in the reference code can be identified.
-.936(If set, the suf)184 576 R<8c78>-.25 E .936(es speci\214ed by the)
2531
-
+(xpansion result in an)-.15 F -.15(ex)184 588 S(pansion error).15 E(.)
2532
-
+-.55 E F1 -.25(fo)144 600 S -.18(rc).25 G(e_\214gnor).18 E(e)-.18 E F0
2533
-
+.936(If set, the suf)184 612 R<8c78>-.25 E .936(es speci\214ed by the)
2527 ➡ 2534 -.15 F F2(FIGNORE)3.436 E F0 .936(shell v)3.186 F .936(ariable cause w)
2528
-
No equivalent source code line in the reference code can be identified.
--.25 F .937(ords to be ignored)-.1 F .32(when performing w)184 588 R .32
2535
-
+-.25 F .937(ords to be ignored)-.1 F .32(when performing w)184 624 R .32
2529 ➡ 2536 (ord completion e)-.1 F -.15(ve)-.25 G 2.82(ni).15 G 2.82(ft)-2.82 G .32
2530 ➡ 2537 (he ignored w)-2.82 F .32(ords are the only possible com-)-.1 F 2.947
2531
-
No equivalent source code line in the reference code can be identified.
-(pletions. See)184 600 R F2 .447(SHELL V)2.947 F(ARIABLES)-1.215 E F0
2538
-
+(pletions. See)184 636 R F2 .447(SHELL V)2.947 F(ARIABLES)-1.215 E F0
2532 ➡ 2539 (abo)2.697 E .747 -.15(ve f)-.15 H .448(or a description of).15 F F2
2533 ➡ 2540 (FIGNORE)2.948 E F3(.)A F0 .448(This option is)4.948 F(enabled by def)
2534
-
No equivalent source code line in the reference code can be identified.
-184 612 Q(ault.)-.1 E F1(globasciiranges)144 624 Q F0 2.519
2535
-
No equivalent source code line in the reference code can be identified.
-(If set, range e)184 636 R 2.519
2541
-
+184 648 Q(ault.)-.1 E F1(globasciiranges)144 660 Q F0 2.519
2542
-
+(If set, range e)184 672 R 2.519
2536 ➡ 2543 (xpressions used in pattern matching brack)-.15 F 2.518(et e)-.1 F 2.518
2537 ➡ 2544 (xpressions \(see)-.15 F F2 -.09(Pa)5.018 G(tter).09 E(n)-.135 E
2538
-
No equivalent source code line in the reference code can be identified.
-(Matching)184 648 Q F0(abo)2.964 E -.15(ve)-.15 G 3.214(\)b).15 G(eha)
2545
-
+(Matching)184 684 Q F0(abo)2.964 E -.15(ve)-.15 G 3.214(\)b).15 G(eha)
2539 ➡ 2546 -3.214 E 1.014 -.15(ve a)-.2 H 3.214(si).15 G 3.214(fi)-3.214 G 3.214
2540 ➡ 2547 (nt)-3.214 G .714(he traditional C locale when performing comparisons.)
2541
-
No equivalent source code line in the reference code can be identified.
--3.214 F 1.02(That is, the current locale')184 660 R 3.52(sc)-.55 G 1.02
2548
-
+-3.214 F 1.02(That is, the current locale')184 696 R 3.52(sc)-.55 G 1.02
2542 ➡ 2549 (ollating sequence is not tak)-3.52 F 1.02(en into account, so)-.1 F F1
2543
-
No equivalent source code line in the reference code can be identified.
-(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 672 R F1(A)
2550
-
+(b)3.52 E F0 1.02(will not)3.52 F .956(collate between)184 708 R F1(A)
2544 ➡ 2551 3.456 E F0(and)3.456 E F1(B)3.456 E F0 3.457(,a)C .957(nd upper)-3.457 F
2545 ➡ 2552 .957(-case and lo)-.2 F(wer)-.25 E .957
2546
-
No equivalent source code line in the reference code can be identified.
-(-case ASCII characters will collate)-.2 F(together)184 684 Q(.)-.55 E
2547
-
No equivalent source code line in the reference code can be identified.
-F1(globstar)144 696 Q F0 .519(If set, the pattern)184 696 R F1(**)3.019
2548
-
No equivalent source code line in the reference code can be identified.
-E F0 .519(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .518
2549
-
No equivalent source code line in the reference code can be identified.
-(xt will match all \214les and zero)-.15 F .431
2550
-
No equivalent source code line in the reference code can be identified.
-(or more directories and subdirectories.)184 708 R .431
2551
-
No equivalent source code line in the reference code can be identified.
-(If the pattern is follo)5.431 F .432(wed by a)-.25 F F1(/)2.932 E F0
2552
-
No equivalent source code line in the reference code can be identified.
-2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184
2553
-
No equivalent source code line in the reference code can be identified.
-720 Q(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(19)198.725 E 0 Cg EP
2553
-
+(-case ASCII characters will collate)-.2 F(together)184 720 Q(.)-.55 E
2554
-
+(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(19)198.725 E 0 Cg EP
2554 ➡ 2555 %%Page: 20 20
2555 ➡ 2556 %%BeginPageSetup
2556 ➡ 2557 BP
2557 ➡ 2558 %%EndPageSetup
2558 ➡ 2559 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2559 ➡ 2560 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2560
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(gnu_errfmt)144 84 Q
2561
-
No equivalent source code line in the reference code can be identified.
-F0(If set, shell error messages are written in the standard GNU error m\
2562
-
No equivalent source code line in the reference code can be identified.
-essage format.)184 96 Q F1(histappend)144 108 Q F0 .676
2561
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(globstar)144 84 Q F0
2562
-
+.519(If set, the pattern)184 84 R F1(**)3.019 E F0 .519
2563
-
+(used in a pathname e)3.019 F .519(xpansion conte)-.15 F .518
2564
-
+(xt will match all \214les and zero)-.15 F .431
2565
-
+(or more directories and subdirectories.)184 96 R .431
2566
-
+(If the pattern is follo)5.431 F .432(wed by a)-.25 F F1(/)2.932 E F0
2567
-
+2.932(,o)C .432(nly directories)-2.932 F(and subdirectories match.)184
2568
-
+108 Q F1(gnu_errfmt)144 120 Q F0(If set, shell error messages are writt\
2569
-
+en in the standard GNU error message format.)184 132 Q F1(histappend)144
2570
-
+144 Q F0 .676
2563 ➡ 2571 (If set, the history list is appended to the \214le named by the v)184
2564
-
No equivalent source code line in the reference code can be identified.
-120 R .676(alue of the)-.25 F/F2 9/Times-Bold@0 SF(HISTFILE)3.176 E F0
2565
-
No equivalent source code line in the reference code can be identified.
--.25(va)2.926 G(ri-).25 E(able when the shell e)184 132 Q
2572
-
+156 R .676(alue of the)-.25 F/F2 9/Times-Bold@0 SF(HISTFILE)3.176 E F0
2573
-
+-.25(va)2.926 G(ri-).25 E(able when the shell e)184 168 Q
2566 ➡ 2574 (xits, rather than o)-.15 E -.15(ve)-.15 G(rwriting the \214le.).15 E F1
2567
-
No equivalent source code line in the reference code can be identified.
-(histr)144 144 Q(eedit)-.18 E F0 .575(If set, and)184 156 R F1 -.18(re)
2575
-
+(histr)144 180 Q(eedit)-.18 E F0 .575(If set, and)184 192 R F1 -.18(re)
2568 ➡ 2576 3.075 G(adline).18 E F0 .575(is being used, a user is gi)3.075 F -.15
2569 ➡ 2577 (ve)-.25 G 3.075(nt).15 G .576(he opportunity to re-edit a f)-3.075 F
2570
-
No equivalent source code line in the reference code can be identified.
-.576(ailed his-)-.1 F(tory substitution.)184 168 Q F1(histv)144 180 Q
2571
-
No equivalent source code line in the reference code can be identified.
-(erify)-.1 E F0 .403(If set, and)184 192 R F1 -.18(re)2.903 G(adline).18
2578
-
+.576(ailed his-)-.1 F(tory substitution.)184 204 Q F1(histv)144 216 Q
2579
-
+(erify)-.1 E F0 .403(If set, and)184 228 R F1 -.18(re)2.903 G(adline).18
2572 ➡ 2580 E F0 .403
2573 ➡ 2581 (is being used, the results of history substitution are not immediately)
2574
-
No equivalent source code line in the reference code can be identified.
-2.903 F .661(passed to the shell parser)184 204 R 5.661(.I)-.55 G .662
2582
-
+2.903 F .661(passed to the shell parser)184 240 R 5.661(.I)-.55 G .662
2575 ➡ 2583 (nstead, the resulting line is loaded into the)-5.661 F F1 -.18(re)3.162
2576
-
No equivalent source code line in the reference code can be identified.
-G(adline).18 E F0(editing)3.162 E -.2(bu)184 216 S -.25(ff).2 G(er).25 E
2584
-
+G(adline).18 E F0(editing)3.162 E -.2(bu)184 252 S -.25(ff).2 G(er).25 E
2577 ➡ 2585 2.5(,a)-.4 G(llo)-2.5 E(wing further modi\214cation.)-.25 E F1
2578
-
No equivalent source code line in the reference code can be identified.
-(hostcomplete)144 228 Q F0 1.182(If set, and)184 240 R F1 -.18(re)3.682
2586
-
+(hostcomplete)144 264 Q F0 1.182(If set, and)184 276 R F1 -.18(re)3.682
2579 ➡ 2587 G(adline).18 E F0 1.182(is being used,)3.682 F F1(bash)3.682 E F0 1.181
2580 ➡ 2588 (will attempt to perform hostname completion)3.681 F 1.38(when a w)184
2581
-
No equivalent source code line in the reference code can be identified.
-252 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381
2589
-
+288 R 1.38(ord containing a)-.1 F F1(@)3.881 E F0 1.381
2582 ➡ 2590 (is being completed \(see)3.881 F F1(Completing)3.881 E F0(under)3.881 E
2583
-
No equivalent source code line in the reference code can be identified.
-F2(READLINE)3.881 E F0(abo)184 264 Q -.15(ve)-.15 G 2.5(\). This).15 F
2584
-
No equivalent source code line in the reference code can be identified.
-(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 276 Q F0(If set,)
2585
-
No equivalent source code line in the reference code can be identified.
-184 288 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0
2591
-
+F2(READLINE)3.881 E F0(abo)184 300 Q -.15(ve)-.15 G 2.5(\). This).15 F
2592
-
+(is enabled by def)2.5 E(ault.)-.1 E F1(huponexit)144 312 Q F0(If set,)
2593
-
+184 324 Q F1(bash)2.5 E F0(will send)2.5 E F2(SIGHUP)2.5 E F0
2586 ➡ 2594 (to all jobs when an interacti)2.25 E .3 -.15(ve l)-.25 H(ogin shell e)
2587
-
No equivalent source code line in the reference code can be identified.
-.15 E(xits.)-.15 E F1(inherit_err)144 300 Q(exit)-.18 E F0 .22
2588
-
No equivalent source code line in the reference code can be identified.
-(If set, command substitution inherits the v)184 312 R .219(alue of the)
2595
-
+.15 E(xits.)-.15 E F1(inherit_err)144 336 Q(exit)-.18 E F0 .22
2596
-
+(If set, command substitution inherits the v)184 348 R .219(alue of the)
2589 ➡ 2597 -.25 F F1(err)2.719 E(exit)-.18 E F0 .219(option, instead of unsetting)
2590
-
No equivalent source code line in the reference code can be identified.
-2.719 F(it in the subshell en)184 324 Q 2.5(vironment. This)-.4 F
2598
-
+2.719 F(it in the subshell en)184 360 Q 2.5(vironment. This)-.4 F
2591 ➡ 2599 (option is enabled when)2.5 E/F3 10/Times-Italic@0 SF(posix mode)2.5 E
2592
-
No equivalent source code line in the reference code can be identified.
-F0(is enabled.)2.5 E F1(interacti)144 336 Q -.1(ve)-.1 G(_comments).1 E
2593
-
No equivalent source code line in the reference code can be identified.
-F0 .33(If set, allo)184 348 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33
2600
-
+F0(is enabled.)2.5 E F1(interacti)144 372 Q -.1(ve)-.1 G(_comments).1 E
2601
-
+F0 .33(If set, allo)184 384 R 2.83(waw)-.25 G .33(ord be)-2.93 F .33
2594 ➡ 2602 (ginning with)-.15 F F1(#)2.83 E F0 .33(to cause that w)2.83 F .33
2595 ➡ 2603 (ord and all remaining characters on)-.1 F .967
2596
-
No equivalent source code line in the reference code can be identified.
-(that line to be ignored in an interacti)184 360 R 1.267 -.15(ve s)-.25
2604
-
+(that line to be ignored in an interacti)184 396 R 1.267 -.15(ve s)-.25
2597 ➡ 2605 H .967(hell \(see).15 F F2(COMMENTS)3.467 E F0(abo)3.217 E -.15(ve)-.15
2598
-
No equivalent source code line in the reference code can be identified.
-G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 372 Q
2599
-
No equivalent source code line in the reference code can be identified.
-(ault.)-.1 E F1(lastpipe)144 384 Q F0 .066
2600
-
No equivalent source code line in the reference code can be identified.
-(If set, and job control is not acti)184 384 R -.15(ve)-.25 G 2.566(,t)
2606
-
+G 3.467(\). This).15 F .967(option is)3.467 F(enabled by def)184 408 Q
2607
-
+(ault.)-.1 E F1(lastpipe)144 420 Q F0 .066
2608
-
+(If set, and job control is not acti)184 420 R -.15(ve)-.25 G 2.566(,t)
2601 ➡ 2609 .15 G .066(he shell runs the last command of a pipeline not e)-2.566 F
2602 ➡ 2610 -.15(xe)-.15 G(-).15 E(cuted in the background in the current shell en)
2603
-
No equivalent source code line in the reference code can be identified.
-184 396 Q(vironment.)-.4 E F1(lithist)144 408 Q F0 .655(If set, and the)
2604
-
No equivalent source code line in the reference code can be identified.
-184 408 R F1(cmdhist)3.155 E F0 .654
2611
-
+184 432 Q(vironment.)-.4 E F1(lithist)144 444 Q F0 .655(If set, and the)
2612
-
+184 444 R F1(cmdhist)3.155 E F0 .654
2605 ➡ 2613 (option is enabled, multi-line commands are sa)3.154 F -.15(ve)-.2 G
2606 ➡ 2614 3.154(dt).15 G 3.154(ot)-3.154 G .654(he history)-3.154 F
2607
-
No equivalent source code line in the reference code can be identified.
-(with embedded ne)184 420 Q
2615
-
+(with embedded ne)184 456 Q
2608 ➡ 2616 (wlines rather than using semicolon separators where possible.)-.25 E F1
2609
-
No equivalent source code line in the reference code can be identified.
-(localv)144 432 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 444 R
2617
-
+(localv)144 468 Q(ar_inherit)-.1 E F0 .421(If set, local v)184 480 R
2610 ➡ 2618 .422(ariables inherit the v)-.25 F .422(alue and attrib)-.25 F .422
2611 ➡ 2619 (utes of a v)-.2 F .422(ariable of the same name that)-.25 F -.15(ex)184
2612
-
No equivalent source code line in the reference code can be identified.
-456 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673
2620
-
+492 S .174(ists at a pre).15 F .174(vious scope before an)-.25 F 2.673
2613 ➡ 2621 (yn)-.15 G .673 -.25(ew va)-2.673 H .173(lue is assigned.).25 F .173
2614
-
No equivalent source code line in the reference code can be identified.
-(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 468 Q
2615
-
No equivalent source code line in the reference code can be identified.
-F1(login_shell)144 480 Q F0 .486
2622
-
+(The nameref attrib)5.173 F .173(ute is not)-.2 F(inherited.)184 504 Q
2623
-
+F1(login_shell)144 516 Q F0 .486
2616 ➡ 2624 (The shell sets this option if it is started as a login shell \(see)184
2617
-
No equivalent source code line in the reference code can be identified.
-492 R F2(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo)2.737 E -.15(ve)
2618
-
No equivalent source code line in the reference code can be identified.
--.15 G 2.987(\). The).15 F -.25(va)184 504 S(lue may not be changed.).25
2619
-
No equivalent source code line in the reference code can be identified.
-E F1(mailwar)144 516 Q(n)-.15 E F0 .815(If set, and a \214le that)184
2620
-
No equivalent source code line in the reference code can be identified.
-528 R F1(bash)3.315 E F0 .814
2625
-
+528 R F2(INV)2.987 E(OCA)-.405 E(TION)-.855 E F0(abo)2.737 E -.15(ve)
2626
-
+-.15 G 2.987(\). The).15 F -.25(va)184 540 S(lue may not be changed.).25
2627
-
+E F1(mailwar)144 552 Q(n)-.15 E F0 .815(If set, and a \214le that)184
2628
-
+564 R F1(bash)3.315 E F0 .814
2621 ➡ 2629 (is checking for mail has been accessed since the last time it)3.315 F
2622
-
No equivalent source code line in the reference code can be identified.
--.1(wa)184 540 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
2630
-
+-.1(wa)184 576 S 2.5(sc).1 G(heck)-2.5 E(ed, the message `)-.1 E
2623 ➡ 2631 (`The mail in)-.74 E F3(mail\214le)2.5 E F0(has been read')2.5 E 2.5('i)
2624
-
No equivalent source code line in the reference code can be identified.
--.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 552
2625
-
No equivalent source code line in the reference code can be identified.
-Q F0 .324(If set, and)184 564 R F1 -.18(re)2.824 G(adline).18 E F0 .324
2632
-
+-.74 G 2.5(sd)-2.5 G(isplayed.)-2.5 E F1(no_empty_cmd_completion)144 588
2633
-
+Q F0 .324(If set, and)184 600 R F1 -.18(re)2.824 G(adline).18 E F0 .324
2626 ➡ 2634 (is being used,)2.824 F F1(bash)2.824 E F0 .324
2627 ➡ 2635 (will not attempt to search the)2.824 F F2 -.666(PA)2.825 G(TH)-.189 E
2628 ➡ 2636 F0 .325(for possible)2.575 F
2629
-
No equivalent source code line in the reference code can be identified.
-(completions when completion is attempted on an empty line.)184 576 Q F1
2630
-
No equivalent source code line in the reference code can be identified.
-(nocaseglob)144 588 Q F0 .437(If set,)184 600 R F1(bash)2.937 E F0 .436
2637
-
+(completions when completion is attempted on an empty line.)184 612 Q F1
2638
-
+(nocaseglob)144 624 Q F0 .437(If set,)184 636 R F1(bash)2.937 E F0 .436
2631 ➡ 2639 (matches \214lenames in a case\255insensiti)2.937 F .736 -.15(ve f)-.25
2632
-
No equivalent source code line in the reference code can be identified.
-H .436(ashion when performing pathname).05 F -.15(ex)184 612 S
2640
-
+H .436(ashion when performing pathname).05 F -.15(ex)184 648 S
2633 ➡ 2641 (pansion \(see).15 E F1 -.1(Pa)2.5 G(thname Expansion).1 E F0(abo)2.5 E
2634
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.15 G(\).).15 E F1(nocasematch)144 624 Q F0 1.193(If set,)184
2635
-
No equivalent source code line in the reference code can be identified.
-636 R F1(bash)3.693 E F0 1.194(matches patterns in a case\255insensiti)
2642
-
+-.15(ve)-.15 G(\).).15 E F1(nocasematch)144 660 Q F0 1.193(If set,)184
2643
-
+672 R F1(bash)3.693 E F0 1.194(matches patterns in a case\255insensiti)
2636 ➡ 2644 3.693 F 1.494 -.15(ve f)-.25 H 1.194(ashion when performing matching).05
2637
-
No equivalent source code line in the reference code can be identified.
-F .551(while e)184 648 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0
2645
-
+F .551(while e)184 684 R -.15(xe)-.15 G(cuting).15 E F1(case)3.051 E F0
2638 ➡ 2646 (or)3.051 E F1([[)3.051 E F0 .551
2639 ➡ 2647 (conditional commands, when performing pattern substitution)3.051 F -.1
2640
-
No equivalent source code line in the reference code can be identified.
-(wo)184 660 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\
2641
-
No equivalent source code line in the reference code can be identified.
-le completions as part of programmable com-)-.15 F(pletion.)184 672 Q F1
2642
-
No equivalent source code line in the reference code can be identified.
-(nullglob)144 684 Q F0 .855(If set,)184 696 R F1(bash)3.355 E F0(allo)
2643
-
No equivalent source code line in the reference code can be identified.
-3.355 E .855(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa)
2644
-
No equivalent source code line in the reference code can be identified.
-3.354 G .854(thname Expansion).1 F F0(abo)3.354 E -.15(ve)-.15 G 3.354
2645
-
No equivalent source code line in the reference code can be identified.
-(\)t).15 G(o)-3.354 E -.15(ex)184 708 S
2646
-
No equivalent source code line in the reference code can be identified.
-(pand to a null string, rather than themselv).15 E(es.)-.15 E
2648
-
+(wo)184 696 S .622(rd e).1 F .623(xpansions, or when \214ltering possib\
2649
-
+le completions as part of programmable com-)-.15 F(pletion.)184 708 Q
2647 ➡ 2650 (GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(20)198.725 E 0 Cg EP
2648 ➡ 2651 %%Page: 21 21
2649 ➡ 2652 %%BeginPageSetup
@@ -2651,246 +2654,238 @@ BP
2651 ➡ 2654 %%EndPageSetup
2652 ➡ 2655 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2653 ➡ 2656 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2654
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(pr)144 84 Q(ogcomp)
2655
-
No equivalent source code line in the reference code can be identified.
--.18 E F0 .676(If set, the programmable completion f)184 96 R .677
2656
-
No equivalent source code line in the reference code can be identified.
-(acilities \(see)-.1 F F1(Pr)3.177 E .677(ogrammable Completion)-.18 F
2657
-
No equivalent source code line in the reference code can be identified.
-F0(abo)3.177 E -.15(ve)-.15 G(\)).15 E(are enabled.)184 108 Q
2658
-
No equivalent source code line in the reference code can be identified.
-(This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 120 Q(omptv)
2659
-
No equivalent source code line in the reference code can be identified.
--.18 E(ars)-.1 E F0 1.448(If set, prompt strings under)184 132 R 1.448
2657
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(nullglob)144 84 Q F0
2658
-
+.855(If set,)184 96 R F1(bash)3.355 E F0(allo)3.355 E .855
2659
-
+(ws patterns which match no \214les \(see)-.25 F F1 -.1(Pa)3.354 G .854
2660
-
+(thname Expansion).1 F F0(abo)3.354 E -.15(ve)-.15 G 3.354(\)t).15 G(o)
2661
-
+-3.354 E -.15(ex)184 108 S(pand to a null string, rather than themselv)
2662
-
+.15 E(es.)-.15 E F1(pr)144 120 Q(ogcomp)-.18 E F0 .676
2663
-
+(If set, the programmable completion f)184 132 R .677(acilities \(see)
2664
-
+-.1 F F1(Pr)3.177 E .677(ogrammable Completion)-.18 F F0(abo)3.177 E
2665
-
+-.15(ve)-.15 G(\)).15 E(are enabled.)184 144 Q
2666
-
+(This option is enabled by def)5 E(ault.)-.1 E F1(pr)144 156 Q(omptv)
2667
-
+-.18 E(ars)-.1 E F0 1.448(If set, prompt strings under)184 168 R 1.448
2660 ➡ 2668 (go parameter e)-.18 F 1.447(xpansion, command substitution, arithmetic)
2661
-
No equivalent source code line in the reference code can be identified.
--.15 F -.15(ex)184 144 S .17(pansion, and quote remo).15 F -.25(va)-.15
2669
-
+-.15 F -.15(ex)184 180 S .17(pansion, and quote remo).15 F -.25(va)-.15
2662 ➡ 2670 G 2.67(la).25 G .17(fter being e)-2.67 F .17(xpanded as described in)
2663 ➡ 2671 -.15 F/F2 9/Times-Bold@0 SF(PR)2.671 E(OMPTING)-.27 E F0(abo)2.421 E
2664
-
No equivalent source code line in the reference code can be identified.
--.15(ve)-.15 G(.).15 E(This option is enabled by def)184 156 Q(ault.)-.1
2665
-
No equivalent source code line in the reference code can be identified.
-E F1 -.18(re)144 168 S(stricted_shell).18 E F0 1.069
2672
-
+-.15(ve)-.15 G(.).15 E(This option is enabled by def)184 192 Q(ault.)-.1
2673
-
+E F1 -.18(re)144 204 S(stricted_shell).18 E F0 1.069
2666 ➡ 2674 (The shell sets this option if it is started in restricted mode \(see)
2667
-
No equivalent source code line in the reference code can be identified.
-184 180 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 192 Q 2.86
2675
-
+184 216 R F2 1.069(RESTRICTED SHELL)3.569 F F0(belo)184 228 Q 2.86
2668 ➡ 2676 (w\). The)-.25 F -.25(va)2.86 G .36(lue may not be changed.).25 F .36
2669 ➡ 2677 (This is not reset when the startup \214les are e)5.36 F -.15(xe)-.15 G
2670
-
No equivalent source code line in the reference code can be identified.
-(-).15 E(cuted, allo)184 204 Q(wing the startup \214les to disco)-.25 E
2678
-
+(-).15 E(cuted, allo)184 240 Q(wing the startup \214les to disco)-.25 E
2671 ➡ 2679 -.15(ve)-.15 G 2.5(rw).15 G(hether or not a shell is restricted.)-2.5 E
2672
-
No equivalent source code line in the reference code can be identified.
-F1(shift_v)144 216 Q(erbose)-.1 E F0 .502(If set, the)184 228 R F1
2680
-
+F1(shift_v)144 252 Q(erbose)-.1 E F0 .502(If set, the)184 264 R F1
2673 ➡ 2681 (shift)3.002 E F0 -.2(bu)3.002 G .501
2674 ➡ 2682 (iltin prints an error message when the shift count e).2 F .501
2675
-
No equivalent source code line in the reference code can be identified.
-(xceeds the number)-.15 F(of positional parameters.)184 240 Q F1(sour)
2676
-
No equivalent source code line in the reference code can be identified.
-144 252 Q(cepath)-.18 E F0 .77(If set, the)184 264 R F1(sour)3.27 E(ce)
2683
-
+(xceeds the number)-.15 F(of positional parameters.)184 276 Q F1(sour)
2684
-
+144 288 Q(cepath)-.18 E F0 .77(If set, the)184 300 R F1(sour)3.27 E(ce)
2677 ➡ 2685 -.18 E F0(\()3.27 E F1(.)A F0 3.27(\)b)C .77(uiltin uses the v)-3.47 F
2678 ➡ 2686 .771(alue of)-.25 F F2 -.666(PA)3.271 G(TH)-.189 E F0 .771
2679 ➡ 2687 (to \214nd the directory containing the)3.021 F
2680
-
No equivalent source code line in the reference code can be identified.
-(\214le supplied as an ar)184 276 Q 2.5(gument. This)-.18 F
2681
-
No equivalent source code line in the reference code can be identified.
-(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 288 Q F0
2682
-
No equivalent source code line in the reference code can be identified.
-(If set, the)184 300 Q F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E
2688
-
+(\214le supplied as an ar)184 312 Q 2.5(gument. This)-.18 F
2689
-
+(option is enabled by def)2.5 E(ault.)-.1 E F1(xpg_echo)144 324 Q F0
2690
-
+(If set, the)184 336 Q F1(echo)2.5 E F0 -.2(bu)2.5 G(iltin e).2 E
2683 ➡ 2691 (xpands backslash-escape sequences by def)-.15 E(ault.)-.1 E F1(suspend)
2684
-
No equivalent source code line in the reference code can be identified.
-108 316.8 Q F0([)2.5 E F1<ad66>A F0(])A 1.002(Suspend the e)144 328.8 R
2692
-
+108 352.8 Q F0([)2.5 E F1<ad66>A F0(])A 1.002(Suspend the e)144 364.8 R
2685 ➡ 2693 -.15(xe)-.15 G 1.002(cution of this shell until it recei).15 F -.15(ve)
2686 ➡ 2694 -.25 G 3.501(sa).15 G F2(SIGCONT)A F0 3.501(signal. A)3.251 F 1.001
2687
-
No equivalent source code line in the reference code can be identified.
-(login shell cannot be)3.501 F .022(suspended; the)144 340.8 R F1<ad66>
2695
-
+(login shell cannot be)3.501 F .022(suspended; the)144 376.8 R F1<ad66>
2688 ➡ 2696 2.522 E F0 .022(option can be used to o)2.522 F -.15(ve)-.15 G .022
2689 ➡ 2697 (rride this and force the suspension.).15 F .023(The return status is)
2690
-
No equivalent source code line in the reference code can be identified.
-5.023 F 2.5(0u)144 352.8 S(nless the shell is a login shell and)-2.5 E
2698
-
+5.023 F 2.5(0u)144 388.8 S(nless the shell is a login shell and)-2.5 E
2691 ➡ 2699 F1<ad66>2.5 E F0(is not supplied, or if job control is not enabled.)2.5
2692
-
No equivalent source code line in the reference code can be identified.
-E F1(test)108 369.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)
2693
-
No equivalent source code line in the reference code can be identified.
-108 381.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878
2694
-
No equivalent source code line in the reference code can be identified.
-(Return a status of 0 \(true\) or 1 \(f)144 381.6 R .877
2700
-
+E F1(test)108 405.6 Q/F3 10/Times-Italic@0 SF -.2(ex)2.5 G(pr).2 E F1([)
2701
-
+108 417.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(])2.5 E F0 .878
2702
-
+(Return a status of 0 \(true\) or 1 \(f)144 417.6 R .877
2695 ➡ 2703 (alse\) depending on the e)-.1 F -.25(va)-.25 G .877
2696
-
No equivalent source code line in the reference code can be identified.
-(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 393.6
2704
-
+(luation of the conditional e).25 F(xpression)-.15 E F3 -.2(ex)144 429.6
2697 ➡ 2705 S(pr).2 E F0 5.53(.E).73 G .53
2698 ➡ 2706 (ach operator and operand must be a separate ar)-5.53 F 3.03
2699 ➡ 2707 (gument. Expressions)-.18 F .53(are composed of the)3.03 F 3.08
2700
-
No equivalent source code line in the reference code can be identified.
-(primaries described abo)144 405.6 R 3.38 -.15(ve u)-.15 H(nder).15 E F2
2708
-
+(primaries described abo)144 441.6 R 3.38 -.15(ve u)-.15 H(nder).15 E F2
2701 ➡ 2709 (CONDITION)5.58 E 3.079(AL EXPRESSIONS)-.18 F/F4 9/Times-Roman@0 SF(.)A
2702 ➡ 2710 F1(test)7.579 E F0 3.079(does not accept an)5.579 F(y)-.15 E
2703
-
No equivalent source code line in the reference code can be identified.
-(options, nor does it accept and ignore an ar)144 417.6 Q(gument of)-.18
2711
-
+(options, nor does it accept and ignore an ar)144 453.6 Q(gument of)-.18
2704 ➡ 2712 E F1<adad>2.5 E F0(as signifying the end of options.)2.5 E .785
2705
-
No equivalent source code line in the reference code can be identified.
-(Expressions may be combined using the follo)144 435.6 R .786
2713
-
+(Expressions may be combined using the follo)144 471.6 R .786
2706 ➡ 2714 (wing operators, listed in decreasing order of prece-)-.25 F 3.412
2707
-
No equivalent source code line in the reference code can be identified.
-(dence. The)144 447.6 R -.25(eva)3.412 G .912
2715
-
+(dence. The)144 483.6 R -.25(eva)3.412 G .912
2708 ➡ 2716 (luation depends on the number of ar).25 F .911(guments; see belo)-.18 F
2709 ➡ 2717 4.711 -.65(w. O)-.25 H .911(perator precedence is).65 F
2710
-
No equivalent source code line in the reference code can be identified.
-(used when there are \214v)144 459.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G
2711
-
No equivalent source code line in the reference code can be identified.
-(ore ar)-2.5 E(guments.)-.18 E F1(!)144 471.6 Q F3 -.2(ex)2.5 G(pr).2 E
2712
-
No equivalent source code line in the reference code can be identified.
-F0 -.35(Tr)180 471.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23
2713
-
No equivalent source code line in the reference code can be identified.
-E(alse.)-.1 E F1(\()144 483.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0
2714
-
No equivalent source code line in the reference code can be identified.
-.26(Returns the v)180 483.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2
2718
-
+(used when there are \214v)144 495.6 Q 2.5(eo)-.15 G 2.5(rm)-2.5 G
2719
-
+(ore ar)-2.5 E(guments.)-.18 E F1(!)144 507.6 Q F3 -.2(ex)2.5 G(pr).2 E
2720
-
+F0 -.35(Tr)180 507.6 S(ue if).35 E F3 -.2(ex)2.5 G(pr).2 E F0(is f)3.23
2721
-
+E(alse.)-.1 E F1(\()144 519.6 Q F3 -.2(ex)2.5 G(pr).2 E F1(\))2.5 E F0
2722
-
+.26(Returns the v)180 519.6 R .26(alue of)-.25 F F3 -.2(ex)2.76 G(pr).2
2715 ➡ 2723 E F0 5.26(.T)C .26(his may be used to o)-5.26 F -.15(ve)-.15 G .26
2716
-
No equivalent source code line in the reference code can be identified.
-(rride the normal precedence of opera-).15 F(tors.)180 495.6 Q F3 -.2
2717
-
No equivalent source code line in the reference code can be identified.
-(ex)144 507.6 S(pr1).2 E F0<ad>2.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0
2718
-
No equivalent source code line in the reference code can be identified.
--.35(Tr)180 519.6 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5
2719
-
No equivalent source code line in the reference code can be identified.
-E F3 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 531.6 S
2724
-
+(rride the normal precedence of opera-).15 F(tors.)180 531.6 Q F3 -.2
2725
-
+(ex)144 543.6 S(pr1).2 E F0<ad>2.5 E F1(a)A F3 -.2(ex)2.5 G(pr2).2 E F0
2726
-
+-.35(Tr)180 555.6 S(ue if both).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(and)2.5
2727
-
+E F3 -.2(ex)2.5 G(pr2).2 E F0(are true.)2.52 E F3 -.2(ex)144 567.6 S
2720 ➡ 2728 (pr1).2 E F0<ad>2.5 E F1(o)A F3 -.2(ex)2.5 G(pr2).2 E F0 -.35(Tr)180
2721
-
No equivalent source code line in the reference code can be identified.
-543.6 S(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2
2722
-
No equivalent source code line in the reference code can be identified.
-(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 560.4 Q F0(and)2.5 E
2729
-
+579.6 S(ue if either).35 E F3 -.2(ex)2.5 G(pr1).2 E F0(or)2.5 E F3 -.2
2730
-
+(ex)2.5 G(pr2).2 E F0(is true.)2.52 E F1(test)144 596.4 Q F0(and)2.5 E
2723 ➡ 2731 F1([)2.5 E F0 -.25(eva)2.5 G(luate conditional e).25 E
2724 ➡ 2732 (xpressions using a set of rules based on the number of ar)-.15 E
2725
-
No equivalent source code line in the reference code can be identified.
-(guments.)-.18 E 2.5(0a)144 578.4 S -.18(rg)-2.5 G(uments).18 E(The e)
2726
-
No equivalent source code line in the reference code can be identified.
-180 590.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 602.4 S -.18
2727
-
No equivalent source code line in the reference code can be identified.
-(rg)-2.5 G(ument).18 E(The e)180 614.4 Q
2733
-
+(guments.)-.18 E 2.5(0a)144 614.4 S -.18(rg)-2.5 G(uments).18 E(The e)
2734
-
+180 626.4 Q(xpression is f)-.15 E(alse.)-.1 E 2.5(1a)144 638.4 S -.18
2735
-
+(rg)-2.5 G(ument).18 E(The e)180 650.4 Q
2728 ➡ 2736 (xpression is true if and only if the ar)-.15 E(gument is not null.)-.18
2729
-
No equivalent source code line in the reference code can be identified.
-E 2.5(2a)144 626.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)
2730
-
No equivalent source code line in the reference code can be identified.
-180 638.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87
2737
-
+E 2.5(2a)144 662.4 S -.18(rg)-2.5 G(uments).18 E .37(If the \214rst ar)
2738
-
+180 674.4 R .37(gument is)-.18 F F1(!)2.87 E F0 2.87(,t)C .37(he e)-2.87
2731 ➡ 2739 F .37(xpression is true if and only if the second ar)-.15 F .37
2732
-
No equivalent source code line in the reference code can be identified.
-(gument is null.)-.18 F .379(If the \214rst ar)180 650.4 R .38
2740
-
+(gument is null.)-.18 F .379(If the \214rst ar)180 686.4 R .38
2733 ➡ 2741 (gument is one of the unary conditional operators listed abo)-.18 F .68
2734
-
No equivalent source code line in the reference code can be identified.
--.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 662.4 Q .553
2742
-
+-.15(ve u)-.15 H(nder).15 E F2(CONDI-)2.88 E(TION)180 698.4 Q .553
2735 ➡ 2743 (AL EXPRESSIONS)-.18 F F4(,)A F0 .552(the e)2.802 F .552
2736 ➡ 2744 (xpression is true if the unary test is true.)-.15 F .552
2737
-
No equivalent source code line in the reference code can be identified.
-(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 674.4 Q
2745
-
+(If the \214rst ar)5.552 F(gu-)-.18 E(ment is not a v)180 710.4 Q
2738 ➡ 2746 (alid unary conditional operator)-.25 E 2.5(,t)-.4 G(he e)-2.5 E
2739
-
No equivalent source code line in the reference code can be identified.
-(xpression is f)-.15 E(alse.)-.1 E 2.5(3a)144 686.4 S -.18(rg)-2.5 G
2740
-
No equivalent source code line in the reference code can be identified.
-(uments).18 E .236(The follo)180 698.4 R .236
2741
-
No equivalent source code line in the reference code can be identified.
-(wing conditions are applied in the order listed.)-.25 F .236
2742
-
No equivalent source code line in the reference code can be identified.
-(If the second ar)5.236 F .236(gument is one of)-.18 F .855
2743
-
No equivalent source code line in the reference code can be identified.
-(the binary conditional operators listed abo)180 710.4 R 1.155 -.15
2744
-
No equivalent source code line in the reference code can be identified.
-(ve u)-.15 H(nder).15 E F2(CONDITION)3.355 E .855(AL EXPRESSIONS)-.18 F
2745
-
No equivalent source code line in the reference code can be identified.
-F4(,)A F0(the)3.104 E .578(result of the e)180 722.4 R .578(xpression i\
2746
-
No equivalent source code line in the reference code can be identified.
-s the result of the binary test using the \214rst and third ar)-.15 F
2747
-
No equivalent source code line in the reference code can be identified.
-(guments)-.18 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(21)198.725 E
2748
-
No equivalent source code line in the reference code can be identified.
-0 Cg EP
2747
-
+(xpression is f)-.15 E(alse.)-.1 E(GNU Bash 5.0)72 768 Q(2004 Apr 20)
2748
-
+149.565 E(21)198.725 E 0 Cg EP
2749 %%Page: 22 22
2750 %%BeginPageSetup
2751 BP
2752 %%EndPageSetup
2753 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2754 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2755
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E 1.333(as operands.)180 84 R(The)6.333 E/F1
2756
-
No equivalent source code line in the reference code can be identified.
-10/Times-Bold@0 SF<ad61>3.833 E F0(and)3.833 E F1<ad6f>3.832 E F0 1.332
2755
-
+E(UIL)-.1 E(TINS\(1\))-.92 E 2.5(3a)144 84 S -.18(rg)-2.5 G(uments).18 E
2756
-
+.236(The follo)180 96 R .236
2757
-
+(wing conditions are applied in the order listed.)-.25 F .236
2758
-
+(If the second ar)5.236 F .236(gument is one of)-.18 F .855
2759
-
+(the binary conditional operators listed abo)180 108 R 1.155 -.15(ve u)
2760
-
+-.15 H(nder).15 E/F1 9/Times-Bold@0 SF(CONDITION)3.355 E .855
2761
-
+(AL EXPRESSIONS)-.18 F/F2 9/Times-Roman@0 SF(,)A F0(the)3.104 E .578
2762
-
+(result of the e)180 120 R .578(xpression is the result of the binary t\
2763
-
+est using the \214rst and third ar)-.15 F(guments)-.18 E 1.333
2764
-
+(as operands.)180 132 R(The)6.333 E/F3 10/Times-Bold@0 SF<ad61>3.833 E
2765
-
+F0(and)3.833 E F3<ad6f>3.832 E F0 1.332
2757 ➡ 2766 (operators are considered binary operators when there are)3.832 F .558
2758
-
No equivalent source code line in the reference code can be identified.
-(three ar)180 96 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F
2759
-
No equivalent source code line in the reference code can be identified.
-.558(gument is)-.18 F F1(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558
2767
-
+(three ar)180 144 R 3.058(guments. If)-.18 F .558(the \214rst ar)3.058 F
2768
-
+.558(gument is)-.18 F F3(!)3.058 E F0 3.058(,t)C .558(he v)-3.058 F .558
2760 ➡ 2769 (alue is the ne)-.25 F -.05(ga)-.15 G .558(tion of the tw).05 F(o-ar)-.1
2761
-
No equivalent source code line in the reference code can be identified.
-E(gument)-.18 E .521(test using the second and third ar)180 108 R 3.021
2770
-
+E(gument)-.18 E .521(test using the second and third ar)180 156 R 3.021
2762 ➡ 2771 (guments. If)-.18 F .521(the \214rst ar)3.021 F .52(gument is e)-.18 F
2763
-
No equivalent source code line in the reference code can be identified.
-(xactly)-.15 E F1(\()3.02 E F0 .52(and the third)3.02 F(ar)180 120 Q
2764
-
No equivalent source code line in the reference code can be identified.
-.485(gument is e)-.18 F(xactly)-.15 E F1(\))2.985 E F0 2.985(,t)C .485
2772
-
+(xactly)-.15 E F3(\()3.02 E F0 .52(and the third)3.02 F(ar)180 168 Q
2773
-
+.485(gument is e)-.18 F(xactly)-.15 E F3(\))2.985 E F0 2.985(,t)C .485
2765 ➡ 2774 (he result is the one-ar)-2.985 F .485(gument test of the second ar)-.18
2766
-
No equivalent source code line in the reference code can be identified.
-F 2.985(gument. Other)-.18 F(-)-.2 E(wise, the e)180 132 Q
2767
-
No equivalent source code line in the reference code can be identified.
-(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 144 S -.18(rg)-2.5 G
2768
-
No equivalent source code line in the reference code can be identified.
-(uments).18 E .385(If the \214rst ar)180 156 R .385(gument is)-.18 F F1
2775
-
+F 2.985(gument. Other)-.18 F(-)-.2 E(wise, the e)180 180 Q
2776
-
+(xpression is f)-.15 E(alse.)-.1 E 2.5(4a)144 192 S -.18(rg)-2.5 G
2777
-
+(uments).18 E .385(If the \214rst ar)180 204 R .385(gument is)-.18 F F3
2769 ➡ 2778 (!)2.885 E F0 2.885(,t)C .385(he result is the ne)-2.885 F -.05(ga)-.15
2770 ➡ 2779 G .384(tion of the three-ar).05 F .384(gument e)-.18 F .384
2771
-
No equivalent source code line in the reference code can be identified.
-(xpression com-)-.15 F 1.647(posed of the remaining ar)180 168 R 4.147
2780
-
+(xpression com-)-.15 F 1.647(posed of the remaining ar)180 216 R 4.147
2772 ➡ 2781 (guments. Otherwise,)-.18 F 1.647(the e)4.147 F 1.648
2773 ➡ 2782 (xpression is parsed and e)-.15 F -.25(va)-.25 G(luated).25 E
2774
-
No equivalent source code line in the reference code can be identified.
-(according to precedence using the rules listed abo)180 180 Q -.15(ve)
2775
-
No equivalent source code line in the reference code can be identified.
--.15 G(.).15 E 2.5(5o)144 192 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)-.18
2776
-
No equivalent source code line in the reference code can be identified.
-E 1.635(The e)180 204 R 1.635(xpression is parsed and e)-.15 F -.25(va)
2783
-
+(according to precedence using the rules listed abo)180 228 Q -.15(ve)
2784
-
+-.15 G(.).15 E 2.5(5o)144 240 S 2.5(rm)-2.5 G(ore ar)-2.5 E(guments)-.18
2785
-
+E 1.635(The e)180 252 R 1.635(xpression is parsed and e)-.15 F -.25(va)
2777 ➡ 2786 -.25 G 1.635(luated according to precedence using the rules listed).25 F
2778
-
No equivalent source code line in the reference code can be identified.
-(abo)180 216 Q -.15(ve)-.15 G(.).15 E(When used with)144 234 Q F1(test)
2779
-
No equivalent source code line in the reference code can be identified.
-2.5 E F0(or)2.5 E F1([)2.5 E F0 2.5(,t)C(he)-2.5 E F1(<)2.5 E F0(and)2.5
2780
-
No equivalent source code line in the reference code can be identified.
-E F1(>)2.5 E F0(operators sort le)2.5 E
2781
-
No equivalent source code line in the reference code can be identified.
-(xicographically using ASCII ordering.)-.15 E F1(times)108 250.8 Q F0
2787
-
+(abo)180 264 Q -.15(ve)-.15 G(.).15 E(When used with)144 282 Q F3(test)
2788
-
+2.5 E F0(or)2.5 E F3([)2.5 E F0 2.5(,t)C(he)-2.5 E F3(<)2.5 E F0(and)2.5
2789
-
+E F3(>)2.5 E F0(operators sort le)2.5 E
2790
-
+(xicographically using ASCII ordering.)-.15 E F3(times)108 298.8 Q F0
2782 ➡ 2791 1.229(Print the accumulated user and system times for the shell and for\
2783
-
No equivalent source code line in the reference code can be identified.
- processes run from the shell.)144 250.8 R(The return status is 0.)144
2784
-
No equivalent source code line in the reference code can be identified.
-262.8 Q F1(trap)108 279.6 Q F0([)2.5 E F1(\255lp)A F0 2.5(][)C([)-2.5 E
2785
-
No equivalent source code line in the reference code can be identified.
-/F2 10/Times-Italic@0 SF(ar)A(g)-.37 E F0(])A F2(sigspec)2.5 E F0(...])
2786
-
No equivalent source code line in the reference code can be identified.
-2.5 E .703(The command)144 291.6 R F2(ar)3.533 E(g)-.37 E F0 .703
2792
-
+ processes run from the shell.)144 298.8 R(The return status is 0.)144
2793
-
+310.8 Q F3(trap)108 327.6 Q F0([)2.5 E F3(\255lp)A F0 2.5(][)C([)-2.5 E
2794
-
+/F4 10/Times-Italic@0 SF(ar)A(g)-.37 E F0(])A F4(sigspec)2.5 E F0(...])
2795
-
+2.5 E .703(The command)144 339.6 R F4(ar)3.533 E(g)-.37 E F0 .703
2787 ➡ 2796 (is to be read and e)3.423 F -.15(xe)-.15 G .702
2788 ➡ 2797 (cuted when the shell recei).15 F -.15(ve)-.25 G 3.202(ss).15 G
2789
-
No equivalent source code line in the reference code can be identified.
-(ignal\(s\))-3.202 E F2(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F2
2798
-
+(ignal\(s\))-3.202 E F4(sigspec)3.202 E F0 5.702(.I).31 G(f)-5.702 E F4
2790 ➡ 2799 (ar)3.532 E(g)-.37 E F0(is)3.422 E .608(absent \(and there is a single)
2791
-
No equivalent source code line in the reference code can be identified.
-144 303.6 R F2(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F1<ad>3.108 E
2800
-
+144 351.6 R F4(sigspec)3.108 E F0 3.108(\)o)C(r)-3.108 E F3<ad>3.108 E
2792 ➡ 2801 F0 3.108(,e)C .608
2793 ➡ 2802 (ach speci\214ed signal is reset to its original disposition)-3.108 F
2794
-
No equivalent source code line in the reference code can be identified.
-.659(\(the v)144 315.6 R .659(alue it had upon entrance to the shell\).)
2795
-
No equivalent source code line in the reference code can be identified.
--.25 F(If)5.658 E F2(ar)3.488 E(g)-.37 E F0 .658
2796
-
No equivalent source code line in the reference code can be identified.
-(is the null string the signal speci\214ed by each)3.378 F F2(sigspec)
2797
-
No equivalent source code line in the reference code can be identified.
-144.34 327.6 Q F0 .58(is ignored by the shell and by the commands it in)
2798
-
No equivalent source code line in the reference code can be identified.
-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
2799
-
No equivalent source code line in the reference code can be identified.
-F0 .581(is not present and)3.301 F F1<ad70>3.081 E F0(has)3.081 E 1.215
2800
-
No equivalent source code line in the reference code can be identified.
-(been supplied, then the trap commands associated with each)144 339.6 R
2801
-
No equivalent source code line in the reference code can be identified.
-F2(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214
2802
-
No equivalent source code line in the reference code can be identified.
-F(gu-)-.18 E .86(ments are supplied or if only)144 351.6 R F1<ad70>3.36
2803
-
No equivalent source code line in the reference code can be identified.
-E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F1(trap)3.36 E F0 .86
2803
-
+.659(\(the v)144 363.6 R .659(alue it had upon entrance to the shell\).)
2804
-
+-.25 F(If)5.658 E F4(ar)3.488 E(g)-.37 E F0 .658
2805
-
+(is the null string the signal speci\214ed by each)3.378 F F4(sigspec)
2806
-
+144.34 375.6 Q F0 .58(is ignored by the shell and by the commands it in)
2807
-
+3.39 F -.2(vo)-.4 G -.1(ke).2 G 3.081(s. If).1 F F4(ar)3.411 E(g)-.37 E
2808
-
+F0 .581(is not present and)3.301 F F3<ad70>3.081 E F0(has)3.081 E 1.215
2809
-
+(been supplied, then the trap commands associated with each)144 387.6 R
2810
-
+F4(sigspec)4.054 E F0 1.214(are displayed.)4.024 F 1.214(If no ar)6.214
2811
-
+F(gu-)-.18 E .86(ments are supplied or if only)144 399.6 R F3<ad70>3.36
2812
-
+E F0 .86(is gi)3.36 F -.15(ve)-.25 G(n,).15 E F3(trap)3.36 E F0 .86
2804 ➡ 2813 (prints the list of commands associated with each)3.36 F 2.83
2805
-
No equivalent source code line in the reference code can be identified.
-(signal. The)144 363.6 R F1<ad6c>2.83 E F0 .33(option causes the shell \
2814
-
+(signal. The)144 411.6 R F3<ad6c>2.83 E F0 .33(option causes the shell \
2806 ➡ 2815 to print a list of signal names and their corresponding num-)2.83 F 4.31
2807
-
No equivalent source code line in the reference code can be identified.
-(bers. Each)144 375.6 R F2(sigspec)4.65 E F0 1.811
2808
-
No equivalent source code line in the reference code can be identified.
-(is either a signal name de\214ned in <)4.62 F F2(signal.h)A F0 1.811
2816
-
+(bers. Each)144 423.6 R F4(sigspec)4.65 E F0 1.811
2817
-
+(is either a signal name de\214ned in <)4.62 F F4(signal.h)A F0 1.811
2809 ➡ 2818 (>, or a signal number)B 6.811(.S)-.55 G(ignal)-6.811 E
2810
-
No equivalent source code line in the reference code can be identified.
-(names are case insensiti)144 387.6 Q .3 -.15(ve a)-.25 H(nd the).15 E
2811
-
No equivalent source code line in the reference code can be identified.
-/F3 9/Times-Bold@0 SF(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649
2812
-
No equivalent source code line in the reference code can be identified.
-(If a)144 405.6 R F2(sigspec)4.489 E F0(is)4.459 E F3(EXIT)4.149 E F0
2813
-
No equivalent source code line in the reference code can be identified.
-1.649(\(0\) the command)3.899 F F2(ar)4.479 E(g)-.37 E F0 1.649(is e)
2814
-
No equivalent source code line in the reference code can be identified.
-4.369 F -.15(xe)-.15 G 1.649(cuted on e).15 F 1.648(xit from the shell.)
2815
-
No equivalent source code line in the reference code can be identified.
--.15 F 1.648(If a)6.648 F F2(sigspec)4.488 E F0(is)4.458 E F3(DEB)144
2816
-
No equivalent source code line in the reference code can be identified.
-417.6 Q(UG)-.09 E/F4 9/Times-Roman@0 SF(,)A F0 1.167(the command)3.417 F
2817
-
No equivalent source code line in the reference code can be identified.
-F2(ar)3.997 E(g)-.37 E F0 1.167(is e)3.887 F -.15(xe)-.15 G 1.167
2818
-
No equivalent source code line in the reference code can be identified.
-(cuted before e).15 F -.15(ve)-.25 G(ry).15 E F2 1.168(simple command)
2819
-
No equivalent source code line in the reference code can be identified.
-3.667 F F0(,)A F2(for)3.668 E F0(command,)3.668 E F2(case)3.668 E F0
2820
-
No equivalent source code line in the reference code can be identified.
-(com-)3.668 E(mand,)144 429.6 Q F2(select)2.647 E F0 .147(command, e)
2821
-
No equivalent source code line in the reference code can be identified.
-2.647 F -.15(ve)-.25 G .147(ry arithmetic).15 F F2(for)2.647 E F0 .146
2819
-
+(names are case insensiti)144 435.6 Q .3 -.15(ve a)-.25 H(nd the).15 E
2820
-
+F1(SIG)2.5 E F0(pre\214x is optional.)2.25 E 1.649(If a)144 453.6 R F4
2821
-
+(sigspec)4.489 E F0(is)4.459 E F1(EXIT)4.149 E F0 1.649
2822
-
+(\(0\) the command)3.899 F F4(ar)4.479 E(g)-.37 E F0 1.649(is e)4.369 F
2823
-
+-.15(xe)-.15 G 1.649(cuted on e).15 F 1.648(xit from the shell.)-.15 F
2824
-
+1.648(If a)6.648 F F4(sigspec)4.488 E F0(is)4.458 E F1(DEB)144 465.6 Q
2825
-
+(UG)-.09 E F2(,)A F0 1.167(the command)3.417 F F4(ar)3.997 E(g)-.37 E F0
2826
-
+1.167(is e)3.887 F -.15(xe)-.15 G 1.167(cuted before e).15 F -.15(ve)
2827
-
+-.25 G(ry).15 E F4 1.168(simple command)3.667 F F0(,)A F4(for)3.668 E F0
2828
-
+(command,)3.668 E F4(case)3.668 E F0(com-)3.668 E(mand,)144 477.6 Q F4
2829
-
+(select)2.647 E F0 .147(command, e)2.647 F -.15(ve)-.25 G .147
2830
-
+(ry arithmetic).15 F F4(for)2.647 E F0 .146
2822 ➡ 2831 (command, and before the \214rst command e)2.647 F -.15(xe)-.15 G .146
2823
-
No equivalent source code line in the reference code can be identified.
-(cutes in a).15 F .145(shell function \(see)144 441.6 R F3 .145
2832
-
+(cutes in a).15 F .145(shell function \(see)144 489.6 R F1 .145
2824 ➡ 2833 (SHELL GRAMMAR)2.645 F F0(abo)2.395 E -.15(ve)-.15 G 2.646(\). Refer).15
2825
-
No equivalent source code line in the reference code can be identified.
-F .146(to the description of the)2.646 F F1(extdeb)2.646 E(ug)-.2 E F0
2826
-
No equivalent source code line in the reference code can be identified.
-.146(option to)2.646 F(the)144 453.6 Q F1(shopt)3.201 E F0 -.2(bu)3.201
2827
-
No equivalent source code line in the reference code can be identified.
-G .7(iltin for details of its ef).2 F .7(fect on the)-.25 F F1(DEB)3.2 E
2828
-
No equivalent source code line in the reference code can be identified.
-(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
2829
-
No equivalent source code line in the reference code can be identified.
-F3(RETURN)3.2 E F4(,)A F0 .7(the com-)2.95 F(mand)144 465.6 Q F2(ar)
2834
-
+F .146(to the description of the)2.646 F F3(extdeb)2.646 E(ug)-.2 E F0
2835
-
+.146(option to)2.646 F(the)144 501.6 Q F3(shopt)3.201 E F0 -.2(bu)3.201
2836
-
+G .7(iltin for details of its ef).2 F .7(fect on the)-.25 F F3(DEB)3.2 E
2837
-
+(UG)-.1 E F0 3.2(trap. If)3.2 F(a)3.2 E F4(sigspec)3.54 E F0(is)3.51 E
2838
-
+F1(RETURN)3.2 E F2(,)A F0 .7(the com-)2.95 F(mand)144 513.6 Q F4(ar)
2830 ➡ 2839 3.473 E(g)-.37 E F0 .643(is e)3.363 F -.15(xe)-.15 G .643
2831 ➡ 2840 (cuted each time a shell function or a script e).15 F -.15(xe)-.15 G
2832
-
No equivalent source code line in the reference code can be identified.
-.644(cuted with the).15 F F1(.)3.144 E F0(or)3.144 E F1(sour)3.144 E(ce)
2833
-
No equivalent source code line in the reference code can be identified.
--.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 477.6 Q -.15(xe)
2834
-
No equivalent source code line in the reference code can be identified.
--.15 G(cuting.).15 E .961(If a)144 495.6 R F2(sigspec)3.801 E F0(is)
2835
-
No equivalent source code line in the reference code can be identified.
-3.771 E F3(ERR)3.461 E F4(,)A F0 .961(the command)3.211 F F2(ar)3.791 E
2841
-
+.644(cuted with the).15 F F3(.)3.144 E F0(or)3.144 E F3(sour)3.144 E(ce)
2842
-
+-.18 E F0 -.2(bu)3.144 G(iltins).2 E(\214nishes e)144 525.6 Q -.15(xe)
2843
-
+-.15 G(cuting.).15 E .961(If a)144 543.6 R F4(sigspec)3.801 E F0(is)
2844
-
+3.771 E F1(ERR)3.461 E F2(,)A F0 .961(the command)3.211 F F4(ar)3.791 E
2836 ➡ 2845 (g)-.37 E F0 .961(is e)3.681 F -.15(xe)-.15 G .961(cuted whene).15 F
2837 ➡ 2846 -.15(ve)-.25 G 3.461(ra).15 G .96(pipeline \(which may consist of a)
2838 ➡ 2847 -.001 F .185(single simple command\), a list, or a compound command ret\
2839
-
No equivalent source code line in the reference code can be identified.
-urns a non\255zero e)144 507.6 R .185(xit status, subject to)-.15 F .452
2840
-
No equivalent source code line in the reference code can be identified.
-(the follo)144 519.6 R .452(wing conditions.)-.25 F(The)5.452 E F3(ERR)
2848
-
+urns a non\255zero e)144 555.6 R .185(xit status, subject to)-.15 F .452
2849
-
+(the follo)144 567.6 R .452(wing conditions.)-.25 F(The)5.452 E F1(ERR)
2841 ➡ 2850 2.952 E F0 .451(trap is not e)2.701 F -.15(xe)-.15 G .451
2842 ➡ 2851 (cuted if the f).15 F .451(ailed command is part of the com-)-.1 F .387
2843
-
No equivalent source code line in the reference code can be identified.
-(mand list immediately follo)144 531.6 R .387(wing a)-.25 F F1(while)
2844
-
No equivalent source code line in the reference code can be identified.
-2.887 E F0(or)2.887 E F1(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388
2845
-
No equivalent source code line in the reference code can be identified.
-(ord, part of the test in an)-.1 F F2(if)2.898 E F0 .388
2846
-
No equivalent source code line in the reference code can be identified.
-(statement, part)4.848 F .778(of a command e)144 543.6 R -.15(xe)-.15 G
2847
-
No equivalent source code line in the reference code can be identified.
-.778(cuted in a).15 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.278 E F0 .778
2852
-
+(mand list immediately follo)144 579.6 R .387(wing a)-.25 F F3(while)
2853
-
+2.887 E F0(or)2.887 E F3(until)2.888 E F0 -.1(ke)2.888 G(yw)-.05 E .388
2854
-
+(ord, part of the test in an)-.1 F F4(if)2.898 E F0 .388
2855
-
+(statement, part)4.848 F .778(of a command e)144 591.6 R -.15(xe)-.15 G
2856
-
+.778(cuted in a).15 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.278 E F0 .778
2848 ➡ 2857 (list e)3.278 F .778(xcept the command follo)-.15 F .778
2849
-
No equivalent source code line in the reference code can be identified.
-(wing the \214nal)-.25 F F1(&&)3.278 E F0(or)3.278 E F1(||)3.277 E F0
2850
-
No equivalent source code line in the reference code can be identified.
-3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 555.6 R
2858
-
+(wing the \214nal)-.25 F F3(&&)3.278 E F0(or)3.278 E F3(||)3.277 E F0
2859
-
+3.277(,a)C -.15(ny)-3.277 G 1.28(command in a pipeline b)144 603.6 R
2851 ➡ 2860 1.28(ut the last, or if the command')-.2 F 3.78(sr)-.55 G 1.28(eturn v)
2852 ➡ 2861 -3.78 F 1.28(alue is being in)-.25 F -.15(ve)-.4 G 1.28(rted using).15 F
2853
-
No equivalent source code line in the reference code can be identified.
-F1(!)3.78 E F0(.)A(These are the same conditions obe)144 567.6 Q
2854
-
No equivalent source code line in the reference code can be identified.
-(yed by the)-.15 E F1(err)2.5 E(exit)-.18 E F0(\()2.5 E F1<ad65>A F0 2.5
2862
-
+F3(!)3.78 E F0(.)A(These are the same conditions obe)144 615.6 Q
2863
-
+(yed by the)-.15 E F3(err)2.5 E(exit)-.18 E F0(\()2.5 E F3<ad65>A F0 2.5
2855 ➡ 2864 (\)o)C(ption.)-2.5 E 1.095
2856 ➡ 2865 (Signals ignored upon entry to the shell cannot be trapped or reset.)144
2857
-
No equivalent source code line in the reference code can be identified.
-585.6 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662
2858
-
No equivalent source code line in the reference code can be identified.
-(being ignored are reset to their original v)144 597.6 R .662
2866
-
+633.6 R -.35(Tr)6.095 G 1.095(apped signals that are not).35 F .662
2867
-
+(being ignored are reset to their original v)144 645.6 R .662
2859 ➡ 2868 (alues in a subshell or subshell en)-.25 F .662(vironment when one is)
2860
-
No equivalent source code line in the reference code can be identified.
--.4 F 2.5(created. The)144 609.6 R(return status is f)2.5 E(alse if an)
2861
-
No equivalent source code line in the reference code can be identified.
--.1 E(y)-.15 E F2(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4 G
2862
-
No equivalent source code line in the reference code can be identified.
-(lid; otherwise).25 E F1(trap)2.5 E F0(returns true.)2.5 E F1(type)108
2863
-
No equivalent source code line in the reference code can be identified.
-626.4 Q F0([)2.5 E F1(\255aftpP)A F0(])A F2(name)2.5 E F0([)2.5 E F2
2864
-
No equivalent source code line in the reference code can be identified.
-(name)A F0(...])2.5 E -.4(Wi)144 638.4 S .174
2865
-
No equivalent source code line in the reference code can be identified.
-(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F2(name)
2869
-
+-.4 F 2.5(created. The)144 657.6 R(return status is f)2.5 E(alse if an)
2870
-
+-.1 E(y)-.15 E F4(sigspec)2.84 E F0(is in)2.81 E -.25(va)-.4 G
2871
-
+(lid; otherwise).25 E F3(trap)2.5 E F0(returns true.)2.5 E F3(type)108
2872
-
+674.4 Q F0([)2.5 E F3(\255aftpP)A F0(])A F4(name)2.5 E F0([)2.5 E F4
2873
-
+(name)A F0(...])2.5 E -.4(Wi)144 686.4 S .174
2874
-
+(th no options, indicate ho).4 F 2.674(we)-.25 G(ach)-2.674 E F4(name)
2866 ➡ 2875 3.034 E F0 -.1(wo)2.854 G .173
2867 ➡ 2876 (uld be interpreted if used as a command name.).1 F .173(If the)5.173 F
2868
-
No equivalent source code line in the reference code can be identified.
-F1<ad74>144 650.4 Q F0 .842(option is used,)3.342 F F1(type)3.342 E F0
2869
-
No equivalent source code line in the reference code can be identified.
-.843(prints a string which is one of)3.343 F F2(alias)3.343 E F0(,).27 E
2870
-
No equivalent source code line in the reference code can be identified.
-F2 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F2(function)3.343 E F0
2871
-
No equivalent source code line in the reference code can be identified.
-(,).24 E F2 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F2
2872
-
No equivalent source code line in the reference code can be identified.
-(\214le)5.253 E F0(if)3.523 E F2(name)144.36 662.4 Q F0 .087
2877
-
+F3<ad74>144 698.4 Q F0 .842(option is used,)3.342 F F3(type)3.342 E F0
2878
-
+.843(prints a string which is one of)3.343 F F4(alias)3.343 E F0(,).27 E
2879
-
+F4 -.1(ke)3.343 G(ywor)-.2 E(d)-.37 E F0(,).77 E F4(function)3.343 E F0
2880
-
+(,).24 E F4 -.2(bu)3.343 G(iltin).2 E F0 3.343(,o).24 G(r)-3.343 E F4
2881
-
+(\214le)5.253 E F0(if)3.523 E F4(name)144.36 710.4 Q F0 .087
2873 ➡ 2882 (is an alias, shell reserv)2.767 F .087(ed w)-.15 F .087
2874 ➡ 2883 (ord, function, b)-.1 F .086(uiltin, or disk \214le, respecti)-.2 F -.15
2875
-
No equivalent source code line in the reference code can be identified.
-(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F2
2884
-
+(ve)-.25 G(ly).15 E 5.086(.I)-.65 G 2.586(ft)-5.086 G(he)-2.586 E F4
2876 ➡ 2885 (name)2.946 E F0 .086(is not)2.766 F .118
2877
-
No equivalent source code line in the reference code can be identified.
-(found, then nothing is printed, and an e)144 674.4 R .118
2886
-
+(found, then nothing is printed, and an e)144 722.4 R .118
2878 ➡ 2887 (xit status of f)-.15 F .118(alse is returned.)-.1 F .119(If the)5.119 F
2879
-
No equivalent source code line in the reference code can be identified.
-F1<ad70>2.619 E F0 .119(option is used,)2.619 F F1(type)2.619 E F0 .855
2880
-
No equivalent source code line in the reference code can be identified.
-(either returns the name of the disk \214le that w)144 686.4 R .855
2881
-
No equivalent source code line in the reference code can be identified.
-(ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F F2(name)3.715 E F0
2882
-
No equivalent source code line in the reference code can be identified.
-.855(were speci\214ed as a com-)3.535 F .64(mand name, or nothing if)144
2883
-
No equivalent source code line in the reference code can be identified.
-698.4 R/F5 10/Courier@0 SF .64(type -t name)3.14 F F0 -.1(wo)3.14 G .641
2884
-
No equivalent source code line in the reference code can be identified.
-(uld not return).1 F F2(\214le)3.141 E F0 5.641(.T).18 G(he)-5.641 E F1
2885
-
No equivalent source code line in the reference code can be identified.
-<ad50>3.141 E F0 .641(option forces a)3.141 F F3 -.666(PA)3.141 G(TH)
2886
-
No equivalent source code line in the reference code can be identified.
--.189 E F0 .113(search for each)144 710.4 R F2(name)2.613 E F0 2.613(,e)
2887
-
No equivalent source code line in the reference code can be identified.
-C -.15(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F5 .113(type -t name)2.613
2888
-
No equivalent source code line in the reference code can be identified.
-F F0 -.1(wo)2.613 G .113(uld not return).1 F F2(\214le)2.613 E F0 5.113
2889
-
No equivalent source code line in the reference code can be identified.
-(.I).18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F1<ad70>
2890
-
No equivalent source code line in the reference code can be identified.
-2.612 E F0(and)144 722.4 Q F1<ad50>3.23 E F0 .73(print the hashed v)3.23
2891
-
No equivalent source code line in the reference code can be identified.
-F .731
2892
-
No equivalent source code line in the reference code can be identified.
-(alue, which is not necessarily the \214le that appears \214rst in)-.25
2893
-
No equivalent source code line in the reference code can be identified.
-F F3 -.666(PA)3.231 G(TH)-.189 E F4(.)A F0 .731(If the)5.231 F
2888
-
+F3<ad70>2.619 E F0 .119(option is used,)2.619 F F3(type)2.619 E F0
2894 ➡ 2889 (GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(22)198.725 E 0 Cg EP
2895 ➡ 2890 %%Page: 23 23
2896 ➡ 2891 %%BeginPageSetup
@@ -2898,114 +2893,123 @@ BP
2898 ➡ 2893 %%EndPageSetup
2899 ➡ 2894 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
2900 ➡ 2895 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
2901
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF<ad61>144 84 Q F0
2902
-
No equivalent source code line in the reference code can be identified.
-1.749(option is used,)4.249 F F1(type)4.248 E F0 1.748
2903
-
No equivalent source code line in the reference code can be identified.
-(prints all of the places that contain an e)4.248 F -.15(xe)-.15 G 1.748
2904
-
No equivalent source code line in the reference code can be identified.
-(cutable named).15 F/F2 10/Times-Italic@0 SF(name)4.248 E F0 6.748(.T)
2896
-
+E(UIL)-.1 E(TINS\(1\))-.92 E .855
2897
-
+(either returns the name of the disk \214le that w)144 84 R .855
2898
-
+(ould be e)-.1 F -.15(xe)-.15 G .855(cuted if).15 F/F1 10/Times-Italic@0
2899
-
+SF(name)3.715 E F0 .855(were speci\214ed as a com-)3.535 F .64
2900
-
+(mand name, or nothing if)144 96 R/F2 10/Courier@0 SF .64(type -t name)
2901
-
+3.14 F F0 -.1(wo)3.14 G .641(uld not return).1 F F1(\214le)3.141 E F0
2902
-
+5.641(.T).18 G(he)-5.641 E/F3 10/Times-Bold@0 SF<ad50>3.141 E F0 .641
2903
-
+(option forces a)3.141 F/F4 9/Times-Bold@0 SF -.666(PA)3.141 G(TH)-.189
2904
-
+E F0 .113(search for each)144 108 R F1(name)2.613 E F0 2.613(,e)C -.15
2905
-
+(ve)-2.863 G 2.613(ni).15 G(f)-2.613 E F2 .113(type -t name)2.613 F F0
2906
-
+-.1(wo)2.613 G .113(uld not return).1 F F1(\214le)2.613 E F0 5.113(.I)
2907
-
+.18 G 2.613(fa)-5.113 G .112(command is hashed,)-.001 F F3<ad70>2.612 E
2908
-
+F0(and)144 120 Q F3<ad50>3.23 E F0 .73(print the hashed v)3.23 F .731
2909
-
+(alue, which is not necessarily the \214le that appears \214rst in)-.25
2910
-
+F F4 -.666(PA)3.231 G(TH)-.189 E/F5 9/Times-Roman@0 SF(.)A F0 .731
2911
-
+(If the)5.231 F F3<ad61>144 132 Q F0 1.749(option is used,)4.249 F F3
2912
-
+(type)4.248 E F0 1.748(prints all of the places that contain an e)4.248
2913
-
+F -.15(xe)-.15 G 1.748(cutable named).15 F F1(name)4.248 E F0 6.748(.T)
2905 ➡ 2914 .18 G(his)-6.748 E .744
2906
-
No equivalent source code line in the reference code can be identified.
-(includes aliases and functions, if and only if the)144 96 R F1<ad70>
2915
-
+(includes aliases and functions, if and only if the)144 144 R F3<ad70>
2907 ➡ 2916 3.244 E F0 .744(option is not also used.)3.244 F .744
2908 ➡ 2917 (The table of hashed)5.744 F 1.223(commands is not consulted when using)
2909
-
No equivalent source code line in the reference code can be identified.
-144 108 R F1<ad61>3.723 E F0 6.223(.T)C(he)-6.223 E F1<ad66>3.723 E F0
2918
-
+144 156 R F3<ad61>3.723 E F0 6.223(.T)C(he)-6.223 E F3<ad66>3.723 E F0
2910 ➡ 2919 1.223(option suppresses shell function lookup, as)3.723 F .325(with the)
2911
-
No equivalent source code line in the reference code can be identified.
-144 120 R F1(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F1(type)5.325
2920
-
+144 168 R F3(command)2.825 E F0 -.2(bu)2.825 G(iltin.).2 E F3(type)5.325
2912 ➡ 2921 E F0 .325(returns true if all of the ar)2.825 F .326
2913 ➡ 2922 (guments are found, f)-.18 F .326(alse if an)-.1 F 2.826(ya)-.15 G .326
2914
-
No equivalent source code line in the reference code can be identified.
-(re not)-2.826 F(found.)144 132 Q F1(ulimit)108 148.8 Q F0([)2.5 E F1
2915
-
No equivalent source code line in the reference code can be identified.
-(\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F2(limit)A F0(]])A(Pro)144
2916
-
No equivalent source code line in the reference code can be identified.
-160.8 Q .244(vides control o)-.15 F -.15(ve)-.15 G 2.744(rt).15 G .244
2923
-
+(re not)-2.826 F(found.)144 180 Q F3(ulimit)108 196.8 Q F0([)2.5 E F3
2924
-
+(\255HSabcde\214klmnpqrstuvxPT)A F0([)2.5 E F1(limit)A F0(]])A(Pro)144
2925
-
+208.8 Q .244(vides control o)-.15 F -.15(ve)-.15 G 2.744(rt).15 G .244
2917 ➡ 2926 (he resources a)-2.744 F -.25(va)-.2 G .244
2918 ➡ 2927 (ilable to the shell and to processes started by it, on systems).25 F
2919
-
No equivalent source code line in the reference code can be identified.
-.943(that allo)144 172.8 R 3.443(ws)-.25 G .943(uch control.)-3.443 F
2920
-
No equivalent source code line in the reference code can be identified.
-(The)5.943 E F1<ad48>3.443 E F0(and)3.443 E F1<ad53>3.444 E F0 .944
2928
-
+.943(that allo)144 220.8 R 3.443(ws)-.25 G .943(uch control.)-3.443 F
2929
-
+(The)5.943 E F3<ad48>3.443 E F0(and)3.443 E F3<ad53>3.444 E F0 .944
2921 ➡ 2930 (options specify that the hard or soft limit is set for the)3.444 F(gi)
2922
-
No equivalent source code line in the reference code can be identified.
-144 184.8 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208
2931
-
+144 232.8 Q -.15(ve)-.25 G 2.709(nr).15 G 2.709(esource. A)-2.709 F .208
2923 ➡ 2932 (hard limit cannot be increased by a non-root user once it is set; a so\
2924
-
No equivalent source code line in the reference code can be identified.
-ft limit may)2.709 F .425(be increased up to the v)144 196.8 R .425
2925
-
No equivalent source code line in the reference code can be identified.
-(alue of the hard limit.)-.25 F .426(If neither)5.425 F F1<ad48>2.926 E
2926
-
No equivalent source code line in the reference code can be identified.
-F0(nor)2.926 E F1<ad53>2.926 E F0 .426
2933
-
+ft limit may)2.709 F .425(be increased up to the v)144 244.8 R .425
2934
-
+(alue of the hard limit.)-.25 F .426(If neither)5.425 F F3<ad48>2.926 E
2935
-
+F0(nor)2.926 E F3<ad53>2.926 E F0 .426
2927 ➡ 2936 (is speci\214ed, both the soft and)2.926 F .139(hard limits are set.)144
2928
-
No equivalent source code line in the reference code can be identified.
-208.8 R .139(The v)5.139 F .139(alue of)-.25 F F2(limit)2.729 E F0 .139
2937
-
+256.8 R .139(The v)5.139 F .139(alue of)-.25 F F1(limit)2.729 E F0 .139
2929 ➡ 2938 (can be a number in the unit speci\214ed for the resource or one)3.319 F
2930
-
No equivalent source code line in the reference code can be identified.
-.741(of the special v)144 220.8 R(alues)-.25 E F1(hard)3.241 E F0(,)A F1
2931
-
No equivalent source code line in the reference code can be identified.
-(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F1(unlimited)3.241 E F0 3.241(,w)
2939
-
+.741(of the special v)144 268.8 R(alues)-.25 E F3(hard)3.241 E F0(,)A F3
2940
-
+(soft)3.241 E F0 3.241(,o)C(r)-3.241 E F3(unlimited)3.241 E F0 3.241(,w)
2932 ➡ 2941 C .741(hich stand for the current hard limit, the current)-3.241 F .78
2933
-
No equivalent source code line in the reference code can be identified.
-(soft limit, and no limit, respecti)144 232.8 R -.15(ve)-.25 G(ly).15 E
2934
-
No equivalent source code line in the reference code can be identified.
-5.78(.I)-.65 G(f)-5.78 E F2(limit)3.37 E F0 .78
2942
-
+(soft limit, and no limit, respecti)144 280.8 R -.15(ve)-.25 G(ly).15 E
2943
-
+5.78(.I)-.65 G(f)-5.78 E F1(limit)3.37 E F0 .78
2935 ➡ 2944 (is omitted, the current v)3.96 F .78(alue of the soft limit of the)-.25
2936
-
No equivalent source code line in the reference code can be identified.
-F .498(resource is printed, unless the)144 244.8 R F1<ad48>2.999 E F0
2945
-
+F .498(resource is printed, unless the)144 292.8 R F3<ad48>2.999 E F0
2937 ➡ 2946 .499(option is gi)2.999 F -.15(ve)-.25 G 2.999(n. When).15 F .499
2938 ➡ 2947 (more than one resource is speci\214ed, the)2.999 F
2939
-
No equivalent source code line in the reference code can be identified.
-(limit name and unit are printed before the v)144 256.8 Q 2.5
2940
-
No equivalent source code line in the reference code can be identified.
-(alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F1
2941
-
No equivalent source code line in the reference code can be identified.
-<ad61>144 268.8 Q F0(All current limits are reported)180 268.8 Q F1
2942
-
No equivalent source code line in the reference code can be identified.
-<ad62>144 280.8 Q F0(The maximum sock)180 280.8 Q(et b)-.1 E(uf)-.2 E
2943
-
No equivalent source code line in the reference code can be identified.
-(fer size)-.25 E F1<ad63>144 292.8 Q F0
2944
-
No equivalent source code line in the reference code can be identified.
-(The maximum size of core \214les created)180 292.8 Q F1<ad64>144 304.8
2945
-
No equivalent source code line in the reference code can be identified.
-Q F0(The maximum size of a process')180 304.8 Q 2.5(sd)-.55 G(ata se)
2946
-
No equivalent source code line in the reference code can be identified.
--2.5 E(gment)-.15 E F1<ad65>144 316.8 Q F0
2947
-
No equivalent source code line in the reference code can be identified.
-(The maximum scheduling priority \("nice"\))180 316.8 Q F1<ad66>144
2948
-
No equivalent source code line in the reference code can be identified.
-328.8 Q F0
2948
-
+(limit name and unit are printed before the v)144 304.8 Q 2.5
2949
-
+(alue. Other)-.25 F(options are interpreted as follo)2.5 E(ws:)-.25 E F3
2950
-
+<ad61>144 316.8 Q F0(All current limits are reported)180 316.8 Q F3
2951
-
+<ad62>144 328.8 Q F0(The maximum sock)180 328.8 Q(et b)-.1 E(uf)-.2 E
2952
-
+(fer size)-.25 E F3<ad63>144 340.8 Q F0
2953
-
+(The maximum size of core \214les created)180 340.8 Q F3<ad64>144 352.8
2954
-
+Q F0(The maximum size of a process')180 352.8 Q 2.5(sd)-.55 G(ata se)
2955
-
+-2.5 E(gment)-.15 E F3<ad65>144 364.8 Q F0
2956
-
+(The maximum scheduling priority \("nice"\))180 364.8 Q F3<ad66>144
2957
-
+376.8 Q F0
2949 ➡ 2958 (The maximum size of \214les written by the shell and its children)180
2950
-
No equivalent source code line in the reference code can be identified.
-328.8 Q F1<ad69>144 340.8 Q F0(The maximum number of pending signals)180
2951
-
No equivalent source code line in the reference code can be identified.
-340.8 Q F1<ad6b>144 352.8 Q F0
2952
-
No equivalent source code line in the reference code can be identified.
-(The maximum number of kqueues that may be allocated)180 352.8 Q F1
2953
-
No equivalent source code line in the reference code can be identified.
-<ad6c>144 364.8 Q F0(The maximum size that may be lock)180 364.8 Q
2954
-
No equivalent source code line in the reference code can be identified.
-(ed into memory)-.1 E F1<ad6d>144 376.8 Q F0
2955
-
No equivalent source code line in the reference code can be identified.
-(The maximum resident set size \(man)180 376.8 Q 2.5(ys)-.15 G
2956
-
No equivalent source code line in the reference code can be identified.
-(ystems do not honor this limit\))-2.5 E F1<ad6e>144 388.8 Q F0 .791(Th\
2959
-
+376.8 Q F3<ad69>144 388.8 Q F0(The maximum number of pending signals)180
2960
-
+388.8 Q F3<ad6b>144 400.8 Q F0
2961
-
+(The maximum number of kqueues that may be allocated)180 400.8 Q F3
2962
-
+<ad6c>144 412.8 Q F0(The maximum size that may be lock)180 412.8 Q
2963
-
+(ed into memory)-.1 E F3<ad6d>144 424.8 Q F0
2964
-
+(The maximum resident set size \(man)180 424.8 Q 2.5(ys)-.15 G
2965
-
+(ystems do not honor this limit\))-2.5 E F3<ad6e>144 436.8 Q F0 .791(Th\
2957 ➡ 2966 e maximum number of open \214le descriptors \(most systems do not allo)
2958
-
No equivalent source code line in the reference code can be identified.
-180 388.8 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F
2959
-
No equivalent source code line in the reference code can be identified.
-(be set\))180 400.8 Q F1<ad70>144 412.8 Q F0
2960
-
No equivalent source code line in the reference code can be identified.
-(The pipe size in 512-byte blocks \(this may not be set\))180 412.8 Q F1
2961
-
No equivalent source code line in the reference code can be identified.
-<ad71>144 424.8 Q F0
2962
-
No equivalent source code line in the reference code can be identified.
-(The maximum number of bytes in POSIX message queues)180 424.8 Q F1
2963
-
No equivalent source code line in the reference code can be identified.
-<ad72>144 436.8 Q F0(The maximum real-time scheduling priority)180 436.8
2964
-
No equivalent source code line in the reference code can be identified.
-Q F1<ad73>144 448.8 Q F0(The maximum stack size)180 448.8 Q F1<ad74>144
2965
-
No equivalent source code line in the reference code can be identified.
-460.8 Q F0(The maximum amount of cpu time in seconds)180 460.8 Q F1
2966
-
No equivalent source code line in the reference code can be identified.
-<ad75>144 472.8 Q F0(The maximum number of processes a)180 472.8 Q -.25
2967
-
No equivalent source code line in the reference code can be identified.
-(va)-.2 G(ilable to a single user).25 E F1<ad76>144 484.8 Q F0 .47
2968
-
No equivalent source code line in the reference code can be identified.
-(The maximum amount of virtual memory a)180 484.8 R -.25(va)-.2 G .47
2967
-
+180 436.8 R 3.29(wt)-.25 G .79(his v)-3.29 F .79(alue to)-.25 F
2968
-
+(be set\))180 448.8 Q F3<ad70>144 460.8 Q F0
2969
-
+(The pipe size in 512-byte blocks \(this may not be set\))180 460.8 Q F3
2970
-
+<ad71>144 472.8 Q F0
2971
-
+(The maximum number of bytes in POSIX message queues)180 472.8 Q F3
2972
-
+<ad72>144 484.8 Q F0(The maximum real-time scheduling priority)180 484.8
2973
-
+Q F3<ad73>144 496.8 Q F0(The maximum stack size)180 496.8 Q F3<ad74>144
2974
-
+508.8 Q F0(The maximum amount of cpu time in seconds)180 508.8 Q F3
2975
-
+<ad75>144 520.8 Q F0(The maximum number of processes a)180 520.8 Q -.25
2976
-
+(va)-.2 G(ilable to a single user).25 E F3<ad76>144 532.8 Q F0 .47
2977
-
+(The maximum amount of virtual memory a)180 532.8 R -.25(va)-.2 G .47
2969 ➡ 2978 (ilable to the shell and, on some systems, to).25 F(its children)180
2970
-
No equivalent source code line in the reference code can be identified.
-496.8 Q F1<ad78>144 508.8 Q F0(The maximum number of \214le locks)180
2971
-
No equivalent source code line in the reference code can be identified.
-508.8 Q F1<ad50>144 520.8 Q F0(The maximum number of pseudoterminals)180
2972
-
No equivalent source code line in the reference code can be identified.
-520.8 Q F1<ad54>144 532.8 Q F0(The maximum number of threads)180 532.8 Q
2973
-
No equivalent source code line in the reference code can be identified.
-(If)144 549.6 Q F2(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve)-.25 G
2974
-
No equivalent source code line in the reference code can be identified.
-.468(n, and the).15 F F1<ad61>2.968 E F0 .468(option is not used,)2.968
2975
-
No equivalent source code line in the reference code can be identified.
-F F2(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468
2979
-
+544.8 Q F3<ad78>144 556.8 Q F0(The maximum number of \214le locks)180
2980
-
+556.8 Q F3<ad50>144 568.8 Q F0(The maximum number of pseudoterminals)180
2981
-
+568.8 Q F3<ad54>144 580.8 Q F0(The maximum number of threads)180 580.8 Q
2982
-
+(If)144 597.6 Q F1(limit)3.058 E F0 .468(is gi)3.648 F -.15(ve)-.25 G
2983
-
+.468(n, and the).15 F F3<ad61>2.968 E F0 .468(option is not used,)2.968
2984
-
+F F1(limit)2.968 E F0 .468(is the ne)2.968 F 2.968(wv)-.25 G .468
2976 ➡ 2985 (alue of the speci\214ed resource.)-3.218 F(If)5.468 E .044
2977
-
No equivalent source code line in the reference code can be identified.
-(no option is gi)144 561.6 R -.15(ve)-.25 G .044(n, then).15 F F1<ad66>
2986
-
+(no option is gi)144 609.6 R -.15(ve)-.25 G .044(n, then).15 F F3<ad66>
2978 ➡ 2987 2.544 E F0 .045(is assumed.)2.545 F -1.11(Va)5.045 G .045
2979
-
No equivalent source code line in the reference code can be identified.
-(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F1
2988
-
+(lues are in 1024-byte increments, e)1.11 F .045(xcept for)-.15 F F3
2980 ➡ 2989 <ad74>2.545 E F0 2.545(,w)C .045(hich is)-2.545 F 1.589(in seconds;)144
2981
-
No equivalent source code line in the reference code can be identified.
-573.6 R F1<ad70>4.089 E F0 4.089(,w)C 1.589
2982
-
No equivalent source code line in the reference code can be identified.
-(hich is in units of 512-byte blocks;)-4.089 F F1<ad50>4.089 E F0(,)A F1
2983
-
No equivalent source code line in the reference code can be identified.
-<ad54>4.089 E F0(,)A F1<ad62>4.089 E F0(,)A F1<ad6b>4.089 E F0(,)A F1
2984
-
No equivalent source code line in the reference code can be identified.
-<ad6e>4.089 E F0 4.089(,a)C(nd)-4.089 E F1<ad75>4.089 E F0 4.088(,w)C
2985
-
No equivalent source code line in the reference code can be identified.
-1.588(hich are)-4.088 F 1.438(unscaled v)144 585.6 R 1.438
2986
-
No equivalent source code line in the reference code can be identified.
-(alues; and, when in Posix mode,)-.25 F F1<ad63>3.939 E F0(and)3.939 E
2987
-
No equivalent source code line in the reference code can be identified.
-F1<ad66>3.939 E F0 3.939(,w)C 1.439(hich are in 512-byte increments.)
2988
-
No equivalent source code line in the reference code can be identified.
--3.939 F(The)6.439 E .404(return status is 0 unless an in)144 597.6 R
2990
-
+621.6 R F3<ad70>4.089 E F0 4.089(,w)C 1.589
2991
-
+(hich is in units of 512-byte blocks;)-4.089 F F3<ad50>4.089 E F0(,)A F3
2992
-
+<ad54>4.089 E F0(,)A F3<ad62>4.089 E F0(,)A F3<ad6b>4.089 E F0(,)A F3
2993
-
+<ad6e>4.089 E F0 4.089(,a)C(nd)-4.089 E F3<ad75>4.089 E F0 4.088(,w)C
2994
-
+1.588(hich are)-4.088 F 1.438(unscaled v)144 633.6 R 1.438
2995
-
+(alues; and, when in Posix mode,)-.25 F F3<ad63>3.939 E F0(and)3.939 E
2996
-
+F3<ad66>3.939 E F0 3.939(,w)C 1.439(hich are in 512-byte increments.)
2997
-
+-3.939 F(The)6.439 E .404(return status is 0 unless an in)144 645.6 R
2989 ➡ 2998 -.25(va)-.4 G .404(lid option or ar).25 F .404
2990 ➡ 2999 (gument is supplied, or an error occurs while setting)-.18 F 2.5(an)144
2991
-
No equivalent source code line in the reference code can be identified.
-609.6 S .5 -.25(ew l)-2.5 H(imit.).25 E F1(umask)108 626.4 Q F0([)2.5 E
2992
-
No equivalent source code line in the reference code can be identified.
-F1<ad70>A F0 2.5(][)C F1<ad53>-2.5 E F0 2.5(][)C F2(mode)-2.5 E F0(])A
2993
-
No equivalent source code line in the reference code can be identified.
-.2(The user \214le-creation mask is set to)144 638.4 R F2(mode)2.7 E F0
2994
-
No equivalent source code line in the reference code can be identified.
-5.2(.I).18 G(f)-5.2 E F2(mode)3.08 E F0(be)2.88 E .2
3000
-
+657.6 S .5 -.25(ew l)-2.5 H(imit.).25 E F3(umask)108 674.4 Q F0([)2.5 E
3001
-
+F3<ad70>A F0 2.5(][)C F3<ad53>-2.5 E F0 2.5(][)C F1(mode)-2.5 E F0(])A
3002
-
+.2(The user \214le-creation mask is set to)144 686.4 R F1(mode)2.7 E F0
3003
-
+5.2(.I).18 G(f)-5.2 E F1(mode)3.08 E F0(be)2.88 E .2
2995 ➡ 3004 (gins with a digit, it is interpreted as an octal)-.15 F .066(number; o\
2996 ➡ 3005 therwise it is interpreted as a symbolic mode mask similar to that acce\
2997
-
No equivalent source code line in the reference code can be identified.
-pted by)144 650.4 R F2 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144
2998
-
No equivalent source code line in the reference code can be identified.
-662.4 Q F2(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382
2999
-
No equivalent source code line in the reference code can be identified.
-(alue of the mask is printed.)-.25 F(The)5.382 E F1<ad53>2.882 E F0 .382
3006
-
+pted by)144 698.4 R F1 -.15(ch)2.566 G(mod).15 E F0(\(1\).).77 E(If)144
3007
-
+710.4 Q F1(mode)3.262 E F0 .382(is omitted, the current v)3.062 F .382
3008
-
+(alue of the mask is printed.)-.25 F(The)5.382 E F3<ad53>2.882 E F0 .382
3000 ➡ 3009 (option causes the mask to be)2.882 F .547
3001
-
No equivalent source code line in the reference code can be identified.
-(printed in symbolic form; the def)144 674.4 R .547
3010
-
+(printed in symbolic form; the def)144 722.4 R .547
3002 ➡ 3011 (ault output is an octal number)-.1 F 5.547(.I)-.55 G 3.047(ft)-5.547 G
3003
-
No equivalent source code line in the reference code can be identified.
-(he)-3.047 E F1<ad70>3.047 E F0 .547(option is supplied, and)3.047 F F2
3004
-
No equivalent source code line in the reference code can be identified.
-(mode)144.38 686.4 Q F0 .551
3005
-
No equivalent source code line in the reference code can be identified.
-(is omitted, the output is in a form that may be reused as input.)3.231
3006
-
No equivalent source code line in the reference code can be identified.
-F .552(The return status is 0 if the)5.552 F(mode w)144 698.4 Q
3007
-
No equivalent source code line in the reference code can be identified.
-(as successfully changed or if no)-.1 E F2(mode)2.5 E F0(ar)2.5 E
3008
-
No equivalent source code line in the reference code can be identified.
-(gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E
3012
-
+(he)-3.047 E F3<ad70>3.047 E F0 .547(option is supplied, and)3.047 F
3009 ➡ 3013 (GNU Bash 5.0)72 768 Q(2004 Apr 20)149.565 E(23)198.725 E 0 Cg EP
3010 ➡ 3014 %%Page: 24 24
3011 ➡ 3015 %%BeginPageSetup
@@ -3013,72 +3017,77 @@ BP
3013 ➡ 3017 %%EndPageSetup
3014 ➡ 3018 /F0 10/Times-Roman@0 SF -.35(BA)72 48 S(SH_B).35 E(UIL)-.1 E 87.61
3015 ➡ 3019 (TINS\(1\) General)-.92 F(Commands Manual)2.5 E -.35(BA)90.11 G(SH_B).35
3016
-
No equivalent source code line in the reference code can be identified.
-E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Bold@0 SF(unalias)108 84 Q F0
3017
-
No equivalent source code line in the reference code can be identified.
-<5bad>2.5 E F1(a)A F0 2.5(][)C/F2 10/Times-Italic@0 SF(name)-2.5 E F0
3018
-
No equivalent source code line in the reference code can be identified.
-(...])2.5 E(Remo)144 96 Q 1.955 -.15(ve e)-.15 H(ach).15 E F2(name)4.155
3019
-
No equivalent source code line in the reference code can be identified.
-E F0 1.655(from the list of de\214ned aliases.)4.155 F(If)6.655 E F1
3020
-
No equivalent source code line in the reference code can be identified.
-<ad61>4.155 E F0 1.655(is supplied, all alias de\214nitions are)4.155 F
3021
-
No equivalent source code line in the reference code can be identified.
-(remo)144 108 Q -.15(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E
3022
-
No equivalent source code line in the reference code can be identified.
-(alue is true unless a supplied)-.25 E F2(name)2.86 E F0
3023
-
No equivalent source code line in the reference code can be identified.
-(is not a de\214ned alias.)2.68 E F1(unset)108 124.8 Q F0<5bad>2.5 E F1
3024
-
No equivalent source code line in the reference code can be identified.
-(fv)A F0 2.5(][)C<ad>-2.5 E F1(n)A F0 2.5(][)C F2(name)-2.5 E F0(...])
3025
-
No equivalent source code line in the reference code can be identified.
-2.5 E -.15(Fo)144 136.8 S 3.827(re).15 G(ach)-3.827 E F2(name)3.827 E F0
3020
-
+E(UIL)-.1 E(TINS\(1\))-.92 E/F1 10/Times-Italic@0 SF(mode)144.38 84 Q F0
3021
-
+.551(is omitted, the output is in a form that may be reused as input.)
3022
-
+3.231 F .552(The return status is 0 if the)5.552 F(mode w)144 96 Q
3023
-
+(as successfully changed or if no)-.1 E F1(mode)2.5 E F0(ar)2.5 E
3024
-
+(gument w)-.18 E(as supplied, and f)-.1 E(alse otherwise.)-.1 E/F2 10
3025
-
+/Times-Bold@0 SF(unalias)108 112.8 Q F0<5bad>2.5 E F2(a)A F0 2.5(][)C F1
3026
-
+(name)-2.5 E F0(...])2.5 E(Remo)144 124.8 Q 1.955 -.15(ve e)-.15 H(ach)
3027
-
+.15 E F1(name)4.155 E F0 1.655(from the list of de\214ned aliases.)4.155
3028
-
+F(If)6.655 E F2<ad61>4.155 E F0 1.655
3029
-
+(is supplied, all alias de\214nitions are)4.155 F(remo)144 136.8 Q -.15
3030
-
+(ve)-.15 G 2.5(d. The).15 F(return v)2.5 E
3031
-
+(alue is true unless a supplied)-.25 E F1(name)2.86 E F0
3032
-
+(is not a de\214ned alias.)2.68 E F2(unset)108 153.6 Q F0<5bad>2.5 E F2
3033
-
+(fv)A F0 2.5(][)C<ad>-2.5 E F2(n)A F0 2.5(][)C F1(name)-2.5 E F0(...])
3034
-
+2.5 E -.15(Fo)144 165.6 S 3.827(re).15 G(ach)-3.827 E F1(name)3.827 E F0
3026 ➡ 3035 3.827(,r).18 G(emo)-3.827 E 1.627 -.15(ve t)-.15 H 1.327
3027 ➡ 3036 (he corresponding v).15 F 1.327(ariable or function.)-.25 F 1.327
3028
-
No equivalent source code line in the reference code can be identified.
-(If the)6.327 F F1<ad76>3.828 E F0 1.328(option is gi)3.828 F -.15(ve)
3029
-
No equivalent source code line in the reference code can be identified.
--.25 G 1.328(n, each).15 F F2(name)144.36 148.8 Q F0 1.551
3037
-
+(If the)6.327 F F2<ad76>3.828 E F0 1.328(option is gi)3.828 F -.15(ve)
3038
-
+-.25 G 1.328(n, each).15 F F1(name)144.36 177.6 Q F0 1.551
3030 ➡ 3039 (refers to a shell v)4.231 F 1.551(ariable, and that v)-.25 F 1.551
3031 ➡ 3040 (ariable is remo)-.25 F -.15(ve)-.15 G 4.05(d. Read-only).15 F -.25(va)
3032
-
No equivalent source code line in the reference code can be identified.
-4.05 G 1.55(riables may not be).25 F 4.641(unset. If)144 160.8 R F1
3033
-
No equivalent source code line in the reference code can be identified.
-<ad66>4.641 E F0 2.141(is speci\214ed, each)4.641 F F2(name)5.001 E F0
3041
-
+4.05 G 1.55(riables may not be).25 F 4.641(unset. If)144 189.6 R F2
3042
-
+<ad66>4.641 E F0 2.141(is speci\214ed, each)4.641 F F1(name)5.001 E F0
3034 ➡ 3043 2.141(refers to a shell function, and the function de\214nition is)4.821
3035
-
No equivalent source code line in the reference code can be identified.
-F(remo)144 172.8 Q -.15(ve)-.15 G 2.538(d. If).15 F(the)2.537 E F1<ad6e>
3036
-
No equivalent source code line in the reference code can be identified.
-2.537 E F0 .037(option is supplied, and)2.537 F F2(name)2.537 E F0 .037
3037
-
No equivalent source code line in the reference code can be identified.
-(is a v)2.537 F .037(ariable with the)-.25 F F2(namer)2.537 E(ef)-.37 E
3038
-
No equivalent source code line in the reference code can be identified.
-F0(attrib)2.537 E(ute,)-.2 E F2(name)2.537 E F0(will)2.537 E .492
3039
-
No equivalent source code line in the reference code can be identified.
-(be unset rather than the v)144 184.8 R .492(ariable it references.)-.25
3040
-
No equivalent source code line in the reference code can be identified.
-F F1<ad6e>5.492 E F0 .492(has no ef)2.992 F .492(fect if the)-.25 F F1
3044
-
+F(remo)144 201.6 Q -.15(ve)-.15 G 2.538(d. If).15 F(the)2.537 E F2<ad6e>
3045
-
+2.537 E F0 .037(option is supplied, and)2.537 F F1(name)2.537 E F0 .037
3046
-
+(is a v)2.537 F .037(ariable with the)-.25 F F1(namer)2.537 E(ef)-.37 E
3047
-
+F0(attrib)2.537 E(ute,)-.2 E F1(name)2.537 E F0(will)2.537 E .492
3048
-
+(be unset rather than the v)144 213.6 R .492(ariable it references.)-.25
3049
-
+F F2<ad6e>5.492 E F0 .492(has no ef)2.992 F .492(fect if the)-.25 F F2
3041 ➡ 3050 <ad66>2.992 E F0 .492(option is supplied.)2.992 F .493(If no)5.493 F
3042
-
No equivalent source code line in the reference code can be identified.
-.221(options are supplied, each)144 196.8 R F2(name)2.721 E F0 .221
3051
-
+.221(options are supplied, each)144 225.6 R F1(name)2.721 E F0 .221
3043 ➡ 3052 (refers to a v)2.721 F .22(ariable; if there is no v)-.25 F .22
3044 ➡ 3053 (ariable by that name, an)-.25 F 2.72(yf)-.15 G(unc-)-2.72 E 1.188
3045
-
No equivalent source code line in the reference code can be identified.
-(tion with that name is unset.)144 208.8 R 1.189(Each unset v)6.189 F
3054
-
+(tion with that name is unset.)144 237.6 R 1.189(Each unset v)6.189 F
3046 ➡ 3055 1.189(ariable or function is remo)-.25 F -.15(ve)-.15 G 3.689(df).15 G
3047 ➡ 3056 1.189(rom the en)-3.689 F(vironment)-.4 E 3.206
3048
-
No equivalent source code line in the reference code can be identified.
-(passed to subsequent commands.)144 220.8 R 3.206(If an)8.206 F 5.706
3057
-
+(passed to subsequent commands.)144 249.6 R 3.206(If an)8.206 F 5.706
3049 ➡ 3058 (yo)-.15 G(f)-5.706 E/F3 9/Times-Bold@0 SF(COMP_W)5.706 E(ORDBREAKS)-.09
3050 ➡ 3059 E/F4 9/Times-Roman@0 SF(,)A F3(RANDOM)5.455 E F4(,)A F3(SECONDS)5.455 E
3051
-
No equivalent source code line in the reference code can be identified.
-F4(,)A F3(LINENO)144 232.8 Q F4(,)A F3(HISTCMD)4.347 E F4(,)A F3(FUNCN)
3060
-
+F4(,)A F3(LINENO)144 261.6 Q F4(,)A F3(HISTCMD)4.347 E F4(,)A F3(FUNCN)
3052 ➡ 3061 4.347 E(AME)-.18 E F4(,)A F3(GR)4.347 E(OUPS)-.27 E F4(,)A F0(or)4.348 E
3053 ➡ 3062 F3(DIRST)4.598 E -.495(AC)-.81 G(K).495 E F0 2.098(are unset, the)4.348
3054 ➡ 3063 F 4.598(yl)-.15 G 2.098(ose their special)-4.598 F(properties, e)144
3055
-
No equivalent source code line in the reference code can be identified.
-244.8 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15
3064
-
+273.6 Q -.15(ve)-.25 G 2.5(ni).15 G 2.5(ft)-2.5 G(he)-2.5 E 2.5(ya)-.15
3056 ➡ 3065 G(re subsequently reset.)-2.5 E(The e)5 E(xit status is true unless a)
3057
-
No equivalent source code line in the reference code can be identified.
--.15 E F2(name)2.86 E F0(is readonly)2.68 E(.)-.65 E F1(wait)108 261.6 Q
3058
-
No equivalent source code line in the reference code can be identified.
-F0([)2.5 E F1(\255fn)A F0 2.5(][)C F2(id ...)-2.5 E F0(])A -.8(Wa)144
3059
-
No equivalent source code line in the reference code can be identified.
-273.6 S .659(it for each speci\214ed child process and return its termi\
3060
-
No equivalent source code line in the reference code can be identified.
-nation status.).8 F(Each)5.659 E F2(id)3.169 E F0 .658(may be a process)
3061
-
No equivalent source code line in the reference code can be identified.
-3.928 F .008(ID or a job speci\214cation; if a job spec is gi)144 285.6
3066
-
+-.15 E F1(name)2.86 E F0(is readonly)2.68 E(.)-.65 E F2(wait)108 290.4 Q
3067
-
+F0([)2.5 E F2(\255fn)A F0 2.5(][)C F1(id ...)-2.5 E F0(])A -.8(Wa)144
3068
-
+302.4 S .659(it for each speci\214ed child process and return its termi\
3069
-
+nation status.).8 F(Each)5.659 E F1(id)3.169 E F0 .658(may be a process)
3070
-
+3.928 F .008(ID or a job speci\214cation; if a job spec is gi)144 314.4
3062 ➡ 3071 R -.15(ve)-.25 G .009(n, all processes in that job').15 F 2.509(sp)-.55
3063 ➡ 3072 G .009(ipeline are w)-2.509 F .009(aited for)-.1 F 5.009(.I)-.55 G(f)
3064
-
No equivalent source code line in the reference code can be identified.
--5.009 E F2(id)144.01 297.6 Q F0 .522(is not gi)3.792 F -.15(ve)-.25 G
3073
-
+-5.009 E F1(id)144.01 326.4 Q F0 .522(is not gi)3.792 F -.15(ve)-.25 G
3065 ➡ 3074 .521(n, all currently acti).15 F .821 -.15(ve c)-.25 H .521
3066 ➡ 3075 (hild processes are w).15 F .521(aited for)-.1 F 3.021(,a)-.4 G .521
3067
-
No equivalent source code line in the reference code can be identified.
-(nd the return status is zero.)-3.021 F(If)5.521 E(the)144 309.6 Q F1
3068
-
No equivalent source code line in the reference code can be identified.
-<ad6e>3.056 E F0 .556(option is supplied,)3.056 F F1(wait)3.057 E F0 -.1
3076
-
+(nd the return status is zero.)-3.021 F(If)5.521 E(the)144 338.4 Q F2
3077
-
+<ad6e>3.056 E F0 .556(option is supplied,)3.056 F F2(wait)3.057 E F0 -.1
3069 ➡ 3078 (wa)3.057 G .557(its for an).1 F 3.057(yj)-.15 G .557
3070 ➡ 3079 (ob to terminate and returns its e)-3.057 F .557(xit status.)-.15 F .557
3071
-
No equivalent source code line in the reference code can be identified.
-(If the)5.557 F F1<ad66>3.057 E F0 .587
3072
-
No equivalent source code line in the reference code can be identified.
-(option is supplied, and job control is enabled,)144 321.6 R F1(wait)
3073
-
No equivalent source code line in the reference code can be identified.
-3.086 E F0(forces)3.086 E F2(id)3.086 E F0 .586
3080
-
+(If the)5.557 F F2<ad66>3.057 E F0 .587
3081
-
+(option is supplied, and job control is enabled,)144 350.4 R F2(wait)
3082
-
+3.086 E F0(forces)3.086 E F1(id)3.086 E F0 .586
3074 ➡ 3083 (to terminate before returning its sta-)3.086 F .755
3075
-
No equivalent source code line in the reference code can be identified.
-(tus, instead of returning when it changes status.)144 333.6 R(If)5.756
3076
-
No equivalent source code line in the reference code can be identified.
-E F2(id)3.266 E F0 .756(speci\214es a non-e)4.026 F .756
3077
-
No equivalent source code line in the reference code can be identified.
-(xistent process or job, the)-.15 F .365(return status is 127.)144 345.6
3084
-
+(tus, instead of returning when it changes status.)144 362.4 R(If)5.756
3085
-
+E F1(id)3.266 E F0 .756(speci\214es a non-e)4.026 F .756
3086
-
+(xistent process or job, the)-.15 F .365(return status is 127.)144 374.4
3078 ➡ 3087 R .365(Otherwise, the return status is the e)5.365 F .365
3079 ➡ 3088 (xit status of the last process or job w)-.15 F(aited)-.1 E(for)144
3080
-
No equivalent source code line in the reference code can be identified.
-357.6 Q(.)-.55 E/F5 10.95/Times-Bold@0 SF(SEE ALSO)72 374.4 Q F0
3081
-
No equivalent source code line in the reference code can be identified.
-(bash\(1\), sh\(1\))108 386.4 Q(GNU Bash 5.0)72 768 Q(2004 Apr 20)
3089
-
+386.4 Q(.)-.55 E/F5 10.95/Times-Bold@0 SF(SEE ALSO)72 403.2 Q F0
3090
-
+(bash\(1\), sh\(1\))108 415.2 Q(GNU Bash 5.0)72 768 Q(2004 Apr 20)
3082 ➡ 3091 149.565 E(24)198.725 E 0 Cg EP
3083 ➡ 3092 %%Trailer
3084 ➡ 3093 end

Modified File: doc/rbash.ps

LineTestsDifference Output
diff --git a/doc/rbash.ps b/doc/rbash.ps
index 67c13cd6..9c4c5fd0 100644
--- a/doc/rbash.ps
+++ b/doc/rbash.ps
@@ -1,6 +1,6 @@
1 %!PS-Adobe-3.0
2 %%Creator: groff version 1.22.3
3
-
No equivalent source code line in the reference code can be identified.
-%%CreationDate: Thu Mar 15 14:13:34 2018
3
-
+%%CreationDate: Mon Mar 19 09:43:23 2018
4 %%DocumentNeededResources: font Times-Roman
5 %%+ font Times-Bold
6 %%DocumentSuppliedResources: procset grops 1.22 3

Modified File: examples/INDEX.html

LineTestsDifference Output
diff --git a/examples/INDEX.html b/examples/INDEX.html
index bd06b256..bcca1f9e 100644
--- a/examples/INDEX.html
+++ b/examples/INDEX.html
@@ -44,44 +44,28 @@
44 <td>ksh</td>
45 </tr>
46 <tr>
47
-
+ <td>./functions/autoload.v3</td>
48
-
+ <td>An updated ksh-compatible 'autoload'.</td>
49
-
+ <td>ksh</td>
50
-
+ </tr>
51
-
+ <tr>
47 ➡ 52 <td>./functions/basename</td>
48 ➡ 53 <td>A replacement for basename(1).</td>
49 ➡ 54 <td>basename</td>
50 ➡ 55 </tr>
51 ➡ 56 <tr>
52
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/basename2</td>
53
-
No equivalent source code line in the reference code can be identified.
- <td>Fast basename(1) and dirname(1) functions for BASH/SH.</td>
54
-
No equivalent source code line in the reference code can be identified.
- <td>basename, dirname</td>
55
-
No equivalent source code line in the reference code can be identified.
- </tr>
56
-
No equivalent source code line in the reference code can be identified.
- <tr>
57
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/coproc.bash</td>
58
-
No equivalent source code line in the reference code can be identified.
- <td>Start, control, and end coprocesses.</td>
59
-
No equivalent source code line in the reference code can be identified.
- </tr>
60
-
No equivalent source code line in the reference code can be identified.
- <tr>
61
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/coshell.bash</td>
62
-
No equivalent source code line in the reference code can be identified.
- <td>Control shell coprocesses (see coprocess.bash).</td>
63
-
No equivalent source code line in the reference code can be identified.
- </tr>
64
-
No equivalent source code line in the reference code can be identified.
- <tr>
65
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/coshell.README</td>
66
-
No equivalent source code line in the reference code can be identified.
- <td>README for coshell and coproc.</td>
67
-
No equivalent source code line in the reference code can be identified.
- </tr>
68
-
No equivalent source code line in the reference code can be identified.
- <tr>
69 ➡ 57 <td>./functions/csh-compat</td>
70 ➡ 58 <td>A C-shell compatibility package.</td>
71 ➡ 59 <td>csh</td>
72 ➡ 60 </tr>
73 ➡ 61 <tr>
74
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/dirfuncs</td>
75
-
No equivalent source code line in the reference code can be identified.
- <td>Directory manipulation functions from the book 'The Korn Shell'.</td>
76
-
No equivalent source code line in the reference code can be identified.
- </tr>
77
-
No equivalent source code line in the reference code can be identified.
- <tr>
78 ➡ 62 <td>./functions/dirname</td>
79 ➡ 63 <td>A replacement for dirname(1).</td>
80 ➡ 64 <td>dirname</td>
81 ➡ 65 </tr>
82 ➡ 66 <tr>
83
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/emptydir</td>
84
-
No equivalent source code line in the reference code can be identified.
- <td>Find out if a directory is empty.</td>
67
-
+ <td>./functions/dirstack</td>
68
-
+ <td>Directory stack functions.</td>
85 ➡ 69 </tr>
86 ➡ 70 <tr>
87 ➡ 71 <td>./functions/exitstat</td>
@@ -101,18 +85,6 @@
101 ➡ 85 <td>stty.bash</td>
102 ➡ 86 </tr>
103 ➡ 87 <tr>
104
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/func</td>
105
-
No equivalent source code line in the reference code can be identified.
- <td>Print out definitions for functions named by arguments.</td>
106
-
No equivalent source code line in the reference code can be identified.
- </tr>
107
-
No equivalent source code line in the reference code can be identified.
- <tr>
108
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/gethtml</td>
109
-
No equivalent source code line in the reference code can be identified.
- <td>Get a web page from a remote server (wget(1) in bash!).</td>
110
-
No equivalent source code line in the reference code can be identified.
- </tr>
111
-
No equivalent source code line in the reference code can be identified.
- <tr>
112
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/getoptx.bash</td>
113
-
No equivalent source code line in the reference code can be identified.
- <td>getopt function that parses long-named options.</td>
114
-
No equivalent source code line in the reference code can be identified.
- </tr>
115
-
No equivalent source code line in the reference code can be identified.
- <tr>
116 ➡ 88 <td>./functions/inetaddr</td>
117 ➡ 89 <td>Internet address conversion (inet2hex & hex2inet).</td>
118 ➡ 90 </tr>
@@ -122,10 +94,6 @@
122 ➡ 94 <td>inpath</td>
123 ➡ 95 </tr>
124 ➡ 96 <tr>
125
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/isnum.bash</td>
126
-
No equivalent source code line in the reference code can be identified.
- <td>Test user input on numeric or character value.</td>
127
-
No equivalent source code line in the reference code can be identified.
- </tr>
128
-
No equivalent source code line in the reference code can be identified.
- <tr>
129 ➡ 97 <td>./functions/isnum2</td>
130 ➡ 98 <td>Test user input on numeric values, with floating point.</td>
131 ➡ 99 </tr>
@@ -134,18 +102,6 @@
134 ➡ 102 <td>Test user input for valid IP Addresses.</td>
135 ➡ 103 </tr>
136 ➡ 104 <tr>
137
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/jdate.bash</td>
138
-
No equivalent source code line in the reference code can be identified.
- <td>Julian date conversion.</td>
139
-
No equivalent source code line in the reference code can be identified.
- </tr>
140
-
No equivalent source code line in the reference code can be identified.
- <tr>
141
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/jj.bash</td>
142
-
No equivalent source code line in the reference code can be identified.
- <td>Look for running jobs.</td>
143
-
No equivalent source code line in the reference code can be identified.
- </tr>
144
-
No equivalent source code line in the reference code can be identified.
- <tr>
145
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/keep</td>
146
-
No equivalent source code line in the reference code can be identified.
- <td>Try to keep some programs in the foreground and running.</td>
147
-
No equivalent source code line in the reference code can be identified.
- </tr>
148
-
No equivalent source code line in the reference code can be identified.
- <tr>
149 ➡ 105 <td>./functions/ksh-cd</td>
150 ➡ 106 <td>ksh-like 'cd': cd [-LP] [dir [change]].</td>
151 ➡ 107 <td>ksh</td>
@@ -165,47 +121,14 @@
165 ➡ 121 <td>Replace the 'login' and 'newgrp' builtins in old Bourne shells.</td>
166 ➡ 122 </tr>
167 ➡ 123 <tr>
168
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/lowercase</td>
169
-
No equivalent source code line in the reference code can be identified.
- <td>Rename files to lower case.</td>
170
-
No equivalent source code line in the reference code can be identified.
- <td>rename lower</td>
171
-
No equivalent source code line in the reference code can be identified.
- </tr>
172
-
No equivalent source code line in the reference code can be identified.
- <tr>
173
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/manpage</td>
174
-
No equivalent source code line in the reference code can be identified.
- <td>Find and print a manual page.</td>
175
-
No equivalent source code line in the reference code can be identified.
- <td>fman</td>
176
-
No equivalent source code line in the reference code can be identified.
- </tr>
177
-
No equivalent source code line in the reference code can be identified.
- <tr>
178
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/mhfold</td>
179
-
No equivalent source code line in the reference code can be identified.
- <td>Print MH folders, useful only because folders(1) doesn't print mod date/times.</td>
180
-
No equivalent source code line in the reference code can be identified.
- </tr>
181
-
No equivalent source code line in the reference code can be identified.
- <tr>
182 ➡ 124 <td>./functions/notify.bash</td>
183 ➡ 125 <td>Notify when jobs change status.</td>
184 ➡ 126 </tr>
185 ➡ 127 <tr>
186
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/pathfuncs</td>
187
-
No equivalent source code line in the reference code can be identified.
- <td>Path related functions (no_path, add_path, pre-path, del_path).</td>
188
-
No equivalent source code line in the reference code can be identified.
- <td>path</td>
189
-
No equivalent source code line in the reference code can be identified.
- </tr>
190
-
No equivalent source code line in the reference code can be identified.
- <tr>
191 ➡ 128 <td>./functions/README</td>
192 ➡ 129 <td>README</td>
193 ➡ 130 </tr>
194 ➡ 131 <tr>
195
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/recurse</td>
196
-
No equivalent source code line in the reference code can be identified.
- <td>Recursive directory traverser.</td>
197
-
No equivalent source code line in the reference code can be identified.
- </tr>
198
-
No equivalent source code line in the reference code can be identified.
- <tr>
199
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/repeat2</td>
200
-
No equivalent source code line in the reference code can be identified.
- <td>A clone of C shell builtin 'repeat'.</td>
201
-
No equivalent source code line in the reference code can be identified.
- <td>repeat, csh</td>
202
-
No equivalent source code line in the reference code can be identified.
- </tr>
203
-
No equivalent source code line in the reference code can be identified.
- <tr>
204
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/repeat3</td>
205
-
No equivalent source code line in the reference code can be identified.
- <td>A clone of C shell builtin 'repeat'.</td>
206
-
No equivalent source code line in the reference code can be identified.
- <td>repeat, csh</td>
207
-
No equivalent source code line in the reference code can be identified.
- </tr>
208
-
No equivalent source code line in the reference code can be identified.
- <tr>
209 ➡ 132 <td>./functions/seq</td>
210 ➡ 133 <td>Generate a sequence from m to n, m defaults to 1.</td>
211 ➡ 134 </tr>
@@ -238,10 +161,6 @@
238 ➡ 161 <td>ksh</td>
239 ➡ 162 </tr>
240 ➡ 163 <tr>
241
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/term</td>
242
-
No equivalent source code line in the reference code can be identified.
- <td>A shell function to set the terminal type interactively or not.</td>
243
-
No equivalent source code line in the reference code can be identified.
- </tr>
244
-
No equivalent source code line in the reference code can be identified.
- <tr>
245 ➡ 164 <td>./functions/whatis</td>
246 ➡ 165 <td>An implementation of the 10th Edition Unix sh builtin 'whatis(1)' command.</td>
247 ➡ 166 </tr>
@@ -254,17 +173,6 @@
254 ➡ 173 <td>An emulation of 'which(1)' as it appears in FreeBSD.</td>
255 ➡ 174 </tr>
256 ➡ 175 <tr>
257
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/xalias.bash</td>
258
-
No equivalent source code line in the reference code can be identified.
- <td>Convert csh alias commands to bash functions.</td>
259
-
No equivalent source code line in the reference code can be identified.
- <td>csh, aliasconv</td>
260
-
No equivalent source code line in the reference code can be identified.
- </tr>
261
-
No equivalent source code line in the reference code can be identified.
- <tr>
262
-
No equivalent source code line in the reference code can be identified.
- <td>./functions/xfind.bash</td>
263
-
No equivalent source code line in the reference code can be identified.
- <td>A 'find(1)' clone.</td>
264
-
No equivalent source code line in the reference code can be identified.
- </tr>
265
-
No equivalent source code line in the reference code can be identified.
- <tr>
266
-
No equivalent source code line in the reference code can be identified.
- </tr>
267
-
No equivalent source code line in the reference code can be identified.
- <tr>
268 ➡ 176 <td>./loadables/</td>
269 ➡ 177 <td>Example loadable replacements</td>
270 ➡ 178 </tr>
@@ -279,25 +187,17 @@
279 ➡ 187 <td>cat, readline pager</td>
280 ➡ 188 </tr>
281 ➡ 189 <tr>
282
-
No equivalent source code line in the reference code can be identified.
- <td>./loadables/cut.c</td>
283
-
No equivalent source code line in the reference code can be identified.
- <td>cut(1) replacement.</td>
284
-
No equivalent source code line in the reference code can be identified.
- </tr>
285
-
No equivalent source code line in the reference code can be identified.
- <tr>
286 ➡ 190 <td>./loadables/dirname.c</td>
287 ➡ 191 <td>Return directory portion of pathname.</td>
288 ➡ 192 <td>dirname</td>
289 ➡ 193 </tr>
290 ➡ 194 <tr>
291
-
No equivalent source code line in the reference code can be identified.
- <td>./loadables/finfo.c</td>
292
-
No equivalent source code line in the reference code can be identified.
- <td>Print file info.</td>
195
-
+ <td>./loadables/fdflags.c</td>
196
-
+ <td>Display or modify file descriptor flags</td>
293 ➡ 197 </tr>
294 ➡ 198 <tr>
295
-
No equivalent source code line in the reference code can be identified.
- <td>./loadables/getconf.c</td>
296
-
No equivalent source code line in the reference code can be identified.
- <td>POSIX.2 getconf utility.</td>
297
-
No equivalent source code line in the reference code can be identified.
- </tr>
298
-
No equivalent source code line in the reference code can be identified.
- <tr>
299
-
No equivalent source code line in the reference code can be identified.
- <td>./loadables/getconf.h</td>
300
-
No equivalent source code line in the reference code can be identified.
- <td>Replacement definitions for ones the system doesn't provide.</td>
199
-
+ <td>./loadables/finfo.c</td>
200
-
+ <td>Print file info.</td>
301 ➡ 201 </tr>
302 ➡ 202 <tr>
303 ➡ 203 <td>./loadables/head.c</td>
@@ -324,10 +224,18 @@
324 ➡ 224 <td>Simple makefile for the sample loadable builtins.</td>
325 ➡ 225 </tr>
326 ➡ 226 <tr>
227
-
+ <td>./loadables/Makefile.inc.in</td>
228
-
+ <td>Sample makefile to use for loadable builtin development.</td>
229
-
+ </tr>
230
-
+ <tr>
327 ➡ 231 <td>./loadables/mkdir.c</td>
328 ➡ 232 <td>Make directories.</td>
329 ➡ 233 </tr>
330 ➡ 234 <tr>
235
-
+ <td>./loadables/mypid.c</td>
236
-
+ <td>Demonstrate how a loadable builtin can create and delete shell variables.</td>
237
-
+ </tr>
238
-
+ <tr>
331 ➡ 239 <td>./loadables/necho.c</td>
332 ➡ 240 <td>echo without options or argument interpretation.</td>
333 ➡ 241 </tr>
@@ -356,14 +264,26 @@
356 ➡ 264 <td>Canonicalize pathnames, resolving symlinks.</td>
357 ➡ 265 </tr>
358 ➡ 266 <tr>
267
-
+ <td>./loadables/rm.c</td>
268
-
+ <td>Remove file.</td>
269
-
+ </tr>
270
-
+ <tr>
359 ➡ 271 <td>./loadables/rmdir.c</td>
360 ➡ 272 <td>Remove directory.</td>
361 ➡ 273 </tr>
362 ➡ 274 <tr>
275
-
+ <td>./loadables/setpgid.c</td>
276
-
+ <td>Set a child process's process group.
277
-
+ </tr>
278
-
+ <tr>
363 ➡ 279 <td>./loadables/sleep.c</td>
364 ➡ 280 <td>sleep for fractions of a second.</td>
365 ➡ 281 </tr>
366 ➡ 282 <tr>
283
-
+ <td>./loadables/stat.c</td>
284
-
+ <td>Load an associative array with stat information about a file.</td>
285
-
+ </tr>
286
-
+ <tr>
367 ➡ 287 <td>./loadables/strftime.c</td>
368 ➡ 288 <td>Loadable builtin interface to strftime(3).</td>
369 ➡ 289 </tr>
@@ -431,221 +351,12 @@
431 ➡ 351 <td>README</td>
432 ➡ 352 </tr>
433 ➡ 353 <tr>
434
-
No equivalent source code line in the reference code can be identified.
- <td>./misc/suncmd.termcap</td>
435
-
No equivalent source code line in the reference code can be identified.
- <td>SunView TERMCAP string.</td>
436
-
No equivalent source code line in the reference code can be identified.
- </tr>
437
-
No equivalent source code line in the reference code can be identified.
- <tr>
438
-
No equivalent source code line in the reference code can be identified.
- </tr>
439
-
No equivalent source code line in the reference code can be identified.
- <tr>
440
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah</td>
441
-
No equivalent source code line in the reference code can be identified.
- <td>Noah Friedman's collection of scripts (updated to bash v2 syntax by Chet Ramey)</td>
442
-
No equivalent source code line in the reference code can be identified.
- </tr>
443
-
No equivalent source code line in the reference code can be identified.
- <tr>
444
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/aref.bash</td>
445
-
No equivalent source code line in the reference code can be identified.
- <td>Pseudo-arrays and substring indexing examples.</td>
446
-
No equivalent source code line in the reference code can be identified.
- </tr>
447
-
No equivalent source code line in the reference code can be identified.
- <tr>
448
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/bash.sub.bash</td>
449
-
No equivalent source code line in the reference code can be identified.
- <td>Library functions used by require.bash.</td>
450
-
No equivalent source code line in the reference code can be identified.
- </tr>
451
-
No equivalent source code line in the reference code can be identified.
- <tr>
452
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/bash_version.bash</td>
453
-
No equivalent source code line in the reference code can be identified.
- <td>A function to slice up $BASH_VERSION.</td>
454
-
No equivalent source code line in the reference code can be identified.
- </tr>
455
-
No equivalent source code line in the reference code can be identified.
- <tr>
456
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/meta.bash</td>
457
-
No equivalent source code line in the reference code can be identified.
- <td>Enable and disable eight-bit readline input.</td>
458
-
No equivalent source code line in the reference code can be identified.
- </tr>
459
-
No equivalent source code line in the reference code can be identified.
- <tr>
460
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/mktmp.bash</td>
461
-
No equivalent source code line in the reference code can be identified.
- <td>Make a temporary file with a unique name.</td>
462
-
No equivalent source code line in the reference code can be identified.
- </tr>
463
-
No equivalent source code line in the reference code can be identified.
- <tr>
464
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/number.bash</td>
465
-
No equivalent source code line in the reference code can be identified.
- <td>A fun hack to translate numerals into English.</td>
466
-
No equivalent source code line in the reference code can be identified.
- </tr>
467
-
No equivalent source code line in the reference code can be identified.
- <tr>
468
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/PERMISSION</td>
469
-
No equivalent source code line in the reference code can be identified.
- <td>Permissions to use the scripts in this directory.</td>
470
-
No equivalent source code line in the reference code can be identified.
- </tr>
471
-
No equivalent source code line in the reference code can be identified.
- <tr>
472
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/prompt.bash</td>
473
-
No equivalent source code line in the reference code can be identified.
- <td>A way to set PS1 to some predefined strings.</td>
474
-
No equivalent source code line in the reference code can be identified.
- </tr>
475
-
No equivalent source code line in the reference code can be identified.
- <tr>
476
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/README</td>
477
-
No equivalent source code line in the reference code can be identified.
- <td>README</td>
478
-
No equivalent source code line in the reference code can be identified.
- </tr>
479
-
No equivalent source code line in the reference code can be identified.
- <tr>
480
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/remap_keys.bash</td>
481
-
No equivalent source code line in the reference code can be identified.
- <td>A front end to 'bind' to redo readline bindings.</td>
482
-
No equivalent source code line in the reference code can be identified.
- </tr>
483
-
No equivalent source code line in the reference code can be identified.
- <tr>
484
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/require.bash</td>
485
-
No equivalent source code line in the reference code can be identified.
- <td>Lisp-like require/provide library functions for bash.</td>
486
-
No equivalent source code line in the reference code can be identified.
- </tr>
487
-
No equivalent source code line in the reference code can be identified.
- <tr>
488
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/send_mail.bash</td>
489
-
No equivalent source code line in the reference code can be identified.
- <td>Replacement SMTP client written in bash.</td>
490
-
No equivalent source code line in the reference code can be identified.
- </tr>
491
-
No equivalent source code line in the reference code can be identified.
- <tr>
492
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/shcat.bash</td>
493
-
No equivalent source code line in the reference code can be identified.
- <td>Bash replacement for 'cat(1)'.</td>
494
-
No equivalent source code line in the reference code can be identified.
- <td>cat</td>
495
-
No equivalent source code line in the reference code can be identified.
- </tr>
496
-
No equivalent source code line in the reference code can be identified.
- <tr>
497
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/source.bash</td>
498
-
No equivalent source code line in the reference code can be identified.
- <td>Replacement for source that uses current directory.</td>
499
-
No equivalent source code line in the reference code can be identified.
- </tr>
500
-
No equivalent source code line in the reference code can be identified.
- <tr>
501
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/string.bash</td>
502
-
No equivalent source code line in the reference code can be identified.
- <td>The string(3) functions at the shell level.</td>
503
-
No equivalent source code line in the reference code can be identified.
- </tr>
504
-
No equivalent source code line in the reference code can be identified.
- <tr>
505
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/stty.bash</td>
506
-
No equivalent source code line in the reference code can be identified.
- <td>Front-end to stty(1) that changes readline bindings too.</td>
507
-
No equivalent source code line in the reference code can be identified.
- <td>fstty</td>
508
-
No equivalent source code line in the reference code can be identified.
- </tr>
509
-
No equivalent source code line in the reference code can be identified.
- <tr>
510
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.noah/y_or_n_p.bash</td>
511
-
No equivalent source code line in the reference code can be identified.
- <td>Prompt for a yes/no/quit answer.</td>
512
-
No equivalent source code line in the reference code can be identified.
- <td>ask</td>
513
-
No equivalent source code line in the reference code can be identified.
- </tr>
514
-
No equivalent source code line in the reference code can be identified.
- <tr>
515
-
No equivalent source code line in the reference code can be identified.
- </tr>
516
-
No equivalent source code line in the reference code can be identified.
- <tr>
517
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2</td>
518
-
No equivalent source code line in the reference code can be identified.
- <td>John DuBois' ksh script collection (converted to bash v2 syntax by Chet Ramey).</td>
519
-
No equivalent source code line in the reference code can be identified.
- </tr>
520
-
No equivalent source code line in the reference code can be identified.
- <tr>
521
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/arc2tarz</td>
522
-
No equivalent source code line in the reference code can be identified.
- <td>Convert an "arc" archive to a compressed tar archive.</td>
523
-
No equivalent source code line in the reference code can be identified.
- </tr>
524
-
No equivalent source code line in the reference code can be identified.
- <tr>
525
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/bashrand</td>
526
-
No equivalent source code line in the reference code can be identified.
- <td>Random number generator with upper and lower bounds and optional seed.</td>
527
-
No equivalent source code line in the reference code can be identified.
- <td>random</td>
528
-
No equivalent source code line in the reference code can be identified.
- </tr>
529
-
No equivalent source code line in the reference code can be identified.
- <tr>
530
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/cal2day.bash</td>
531
-
No equivalent source code line in the reference code can be identified.
- <td>Convert a day number to a name.</td>
532
-
No equivalent source code line in the reference code can be identified.
- </tr>
533
-
No equivalent source code line in the reference code can be identified.
- <tr>
534
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/cdhist.bash</td>
535
-
No equivalent source code line in the reference code can be identified.
- <td>cd replacement with a directory stack added.</td>
536
-
No equivalent source code line in the reference code can be identified.
- </tr>
537
-
No equivalent source code line in the reference code can be identified.
- <tr>
538
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/corename</td>
539
-
No equivalent source code line in the reference code can be identified.
- <td>Tell what produced a core file.</td>
540
-
No equivalent source code line in the reference code can be identified.
- </tr>
541
-
No equivalent source code line in the reference code can be identified.
- <tr>
542
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/fman</td>
543
-
No equivalent source code line in the reference code can be identified.
- <td>Fast man(1) replacement.</td>
544
-
No equivalent source code line in the reference code can be identified.
- <td>manpage</td>
545
-
No equivalent source code line in the reference code can be identified.
- </tr>
546
-
No equivalent source code line in the reference code can be identified.
- <tr>
547
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/frcp</td>
548
-
No equivalent source code line in the reference code can be identified.
- <td>Copy files using ftp(1) but with rcp-type command line syntax.</td>
549
-
No equivalent source code line in the reference code can be identified.
- </tr>
550
-
No equivalent source code line in the reference code can be identified.
- <tr>
551
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/lowercase</td>
552
-
No equivalent source code line in the reference code can be identified.
- <td>Change filenames to lower case.</td>
553
-
No equivalent source code line in the reference code can be identified.
- <td>rename lower</td>
554
-
No equivalent source code line in the reference code can be identified.
- </tr>
555
-
No equivalent source code line in the reference code can be identified.
- <tr>
556
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/ncp</td>
557
-
No equivalent source code line in the reference code can be identified.
- <td>A nicer front end for cp(1) (has -i, etc.).</td>
558
-
No equivalent source code line in the reference code can be identified.
- </tr>
559
-
No equivalent source code line in the reference code can be identified.
- <tr>
560
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/newext</td>
561
-
No equivalent source code line in the reference code can be identified.
- <td>Change the extension of a group of files.</td>
562
-
No equivalent source code line in the reference code can be identified.
- <td>rename</td>
563
-
No equivalent source code line in the reference code can be identified.
- </tr>
564
-
No equivalent source code line in the reference code can be identified.
- <tr>
565
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/nmv</td>
566
-
No equivalent source code line in the reference code can be identified.
- <td>A nicer front end for mv(1) (has -i, etc.).</td>
567
-
No equivalent source code line in the reference code can be identified.
- <td>rename</td>
568
-
No equivalent source code line in the reference code can be identified.
- </tr>
569
-
No equivalent source code line in the reference code can be identified.
- <tr>
570
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/pages</td>
571
-
No equivalent source code line in the reference code can be identified.
- <td>Print specified pages from files.</td>
572
-
No equivalent source code line in the reference code can be identified.
- </tr>
573
-
No equivalent source code line in the reference code can be identified.
- <tr>
574
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/PERMISSION</td>
575
-
No equivalent source code line in the reference code can be identified.
- <td>Permissions to use the scripts in this directory.</td>
576
-
No equivalent source code line in the reference code can be identified.
- </tr>
577
-
No equivalent source code line in the reference code can be identified.
- <tr>
578
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/pf</td>
579
-
No equivalent source code line in the reference code can be identified.
- <td>A pager front end that handles compressed files.</td>
580
-
No equivalent source code line in the reference code can be identified.
- </tr>
581
-
No equivalent source code line in the reference code can be identified.
- <tr>
582
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/pmtop</td>
583
-
No equivalent source code line in the reference code can be identified.
- <td>Poor man's 'top(1)' for SunOS 4.x and BSD/OS.</td>
584
-
No equivalent source code line in the reference code can be identified.
- </tr>
585
-
No equivalent source code line in the reference code can be identified.
- <tr>
586
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/README</td>
587
-
No equivalent source code line in the reference code can be identified.
- <td>README</td>
588
-
No equivalent source code line in the reference code can be identified.
- </tr>
589
-
No equivalent source code line in the reference code can be identified.
- <tr>
590
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/ren</td>
591
-
No equivalent source code line in the reference code can be identified.
- <td>Rename files by changing parts of filenames that match a pattern.</td>
592
-
No equivalent source code line in the reference code can be identified.
- <td>rename</td>
593
-
No equivalent source code line in the reference code can be identified.
- </tr>
594
-
No equivalent source code line in the reference code can be identified.
- <tr>
595
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/rename</td>
596
-
No equivalent source code line in the reference code can be identified.
- <td>Change the names of files that match a pattern.</td>
597
-
No equivalent source code line in the reference code can be identified.
- <td>rename</td>
598
-
No equivalent source code line in the reference code can be identified.
- </tr>
599
-
No equivalent source code line in the reference code can be identified.
- <tr>
600
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/repeat</td>
601
-
No equivalent source code line in the reference code can be identified.
- <td>Execute a command multiple times.</td>
602
-
No equivalent source code line in the reference code can be identified.
- <td>repeat</td>
603
-
No equivalent source code line in the reference code can be identified.
- </tr>
604
-
No equivalent source code line in the reference code can be identified.
- <tr>
605
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/shprof</td>
606
-
No equivalent source code line in the reference code can be identified.
- <td>Line profiler for bash scripts.</td>
607
-
No equivalent source code line in the reference code can be identified.
- </tr>
608
-
No equivalent source code line in the reference code can be identified.
- <tr>
609
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/untar</td>
610
-
No equivalent source code line in the reference code can be identified.
- <td>Unarchive a (possibly compressed) tarfile into a directory.</td>
611
-
No equivalent source code line in the reference code can be identified.
- </tr>
612
-
No equivalent source code line in the reference code can be identified.
- <tr>
613
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/uudec</td>
614
-
No equivalent source code line in the reference code can be identified.
- <td>Carefully uudecode(1) multiple files.</td>
615
-
No equivalent source code line in the reference code can be identified.
- </tr>
616
-
No equivalent source code line in the reference code can be identified.
- <tr>
617
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/uuenc</td>
618
-
No equivalent source code line in the reference code can be identified.
- <td>uuencode(1) multiple files.</td>
619
-
No equivalent source code line in the reference code can be identified.
- </tr>
620
-
No equivalent source code line in the reference code can be identified.
- <tr>
621
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/vtree</td>
622
-
No equivalent source code line in the reference code can be identified.
- <td>Print a visual display of a directory tree.</td>
623
-
No equivalent source code line in the reference code can be identified.
- <td>tree</td>
624
-
No equivalent source code line in the reference code can be identified.
- </tr>
625
-
No equivalent source code line in the reference code can be identified.
- <tr>
626
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts.v2/where</td>
627
-
No equivalent source code line in the reference code can be identified.
- <td>Show where commands that match a pattern are.</td>
628
-
No equivalent source code line in the reference code can be identified.
- </tr>
629
-
No equivalent source code line in the reference code can be identified.
- <tr>
630 ➡ 354 </tr>
631 ➡ 355 <tr>
632 ➡ 356 <td>./scripts</td>
633 ➡ 357 <td>Example scripts</td>
634 ➡ 358 </tr>
635 ➡ 359 <tr>
636
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/adventure.sh</td>
637
-
No equivalent source code line in the reference code can be identified.
- <td>Text adventure game in bash!</td>
638
-
No equivalent source code line in the reference code can be identified.
- </tr>
639
-
No equivalent source code line in the reference code can be identified.
- <tr>
640
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/bcsh.sh</td>
641
-
No equivalent source code line in the reference code can be identified.
- <td>Bourne shell cshell-emulator.</td>
642
-
No equivalent source code line in the reference code can be identified.
- <td>csh</td>
643
-
No equivalent source code line in the reference code can be identified.
- </tr>
644
-
No equivalent source code line in the reference code can be identified.
- <tr>
645
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/bash-hexdump.sh</td>
646
-
No equivalent source code line in the reference code can be identified.
- <td>hexdump(1) in bash</td>
647
-
No equivalent source code line in the reference code can be identified.
- <td>hexdump -C, hd</td>
648
-
No equivalent source code line in the reference code can be identified.
- <tr>
649 ➡ 360 <td>./scripts/cat.sh</td>
650 ➡ 361 <td>Readline-based pager.</td>
651 ➡ 362 <td>cat, readline pager</td>
@@ -655,65 +366,15 @@
655 ➡ 366 <td>Center - center a group of lines.</td>
656 ➡ 367 </tr>
657 ➡ 368 <tr>
658
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/dd-ex.sh</td>
659
-
No equivalent source code line in the reference code can be identified.
- <td>Line editor using only /bin/sh, /bin/dd and /bin/rm.</td>
660
-
No equivalent source code line in the reference code can be identified.
- </tr>
661
-
No equivalent source code line in the reference code can be identified.
- <tr>
662
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/fixfiles.bash</td>
663
-
No equivalent source code line in the reference code can be identified.
- <td>Recurse a tree and fix files containing various "bad" chars.</td>
664
-
No equivalent source code line in the reference code can be identified.
- </tr>
665
-
No equivalent source code line in the reference code can be identified.
- <tr>
666
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/hanoi.bash</td>
667
-
No equivalent source code line in the reference code can be identified.
- <td>The inevitable Towers of Hanoi in bash.</td>
668
-
No equivalent source code line in the reference code can be identified.
- </tr>
669
-
No equivalent source code line in the reference code can be identified.
- <tr>
670 ➡ 369 <td>./scripts/inpath</td>
671 ➡ 370 <td>Search $PATH for a file the same name as $1; return TRUE if found.</td>
672 ➡ 371 <td>inpath</td>
673 ➡ 372 </tr>
674 ➡ 373 <tr>
675
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/krand.bash</td>
676
-
No equivalent source code line in the reference code can be identified.
- <td>Produces a random number within integer limits.</td>
677
-
No equivalent source code line in the reference code can be identified.
- <td>random</td>
678
-
No equivalent source code line in the reference code can be identified.
- </tr>
679
-
No equivalent source code line in the reference code can be identified.
- <tr>
680
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/line-input.bash</td>
681
-
No equivalent source code line in the reference code can be identified.
- <td>Line input routine for GNU Bourne-Again Shell plus terminal-control primitives.</td>
682
-
No equivalent source code line in the reference code can be identified.
- </tr>
683
-
No equivalent source code line in the reference code can be identified.
- <tr>
684
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/nohup.bash</td>
685
-
No equivalent source code line in the reference code can be identified.
- <td>bash version of 'nohup' command.</td>
686
-
No equivalent source code line in the reference code can be identified.
- </tr>
687
-
No equivalent source code line in the reference code can be identified.
- <tr>
688
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/precedence</td>
689
-
No equivalent source code line in the reference code can be identified.
- <td>Test relative precedences for '&&' and '||' operators.</td>
690
-
No equivalent source code line in the reference code can be identified.
- </tr>
691
-
No equivalent source code line in the reference code can be identified.
- <tr>
692
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/randomcard.bash</td>
693
-
No equivalent source code line in the reference code can be identified.
- <td>Print a random card from a card deck.</td>
694
-
No equivalent source code line in the reference code can be identified.
- <td>random</td>
695
-
No equivalent source code line in the reference code can be identified.
- </tr>
696
-
No equivalent source code line in the reference code can be identified.
- <tr>
697 ➡ 374 <td>./scripts/README</td>
698 ➡ 375 <td>README</td>
699 ➡ 376 </tr>
700 ➡ 377 <tr>
701
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/scrollbar</td>
702
-
No equivalent source code line in the reference code can be identified.
- <td>Display scrolling text.</td>
703
-
No equivalent source code line in the reference code can be identified.
- </tr>
704
-
No equivalent source code line in the reference code can be identified.
- <tr>
705
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/scrollbar2</td>
706
-
No equivalent source code line in the reference code can be identified.
- <td>Display scrolling text.</td>
707
-
No equivalent source code line in the reference code can be identified.
- </tr>
708
-
No equivalent source code line in the reference code can be identified.
- <tr>
709
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/self-repro</td>
710
-
No equivalent source code line in the reference code can be identified.
- <td>A self-reproducing script (careful!)</td>
711
-
No equivalent source code line in the reference code can be identified.
- </tr>
712
-
No equivalent source code line in the reference code can be identified.
- <tr>
713
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/showperm.bash</td>
714
-
No equivalent source code line in the reference code can be identified.
- <td>Convert ls(1) symbolic permissions into octal mode.</td>
715
-
No equivalent source code line in the reference code can be identified.
- </tr>
716
-
No equivalent source code line in the reference code can be identified.
- <tr>
717 ➡ 378 <td>./scripts/shprompt</td>
718 ➡ 379 <td>Display a prompt and get an answer satisfying certain criteria.</td>
719 ➡ 380 <td>ask</td>
@@ -723,37 +384,6 @@
723 ➡ 384 <td>Display a 'spinning wheel' to show progress.</td>
724 ➡ 385 </tr>
725 ➡ 386 <tr>
726
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/timeout</td>
727
-
No equivalent source code line in the reference code can be identified.
- <td>Give rsh(1) a shorter timeout.</td>
728
-
No equivalent source code line in the reference code can be identified.
- </tr>
729
-
No equivalent source code line in the reference code can be identified.
- <tr>
730
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/timeout2</td>
731
-
No equivalent source code line in the reference code can be identified.
- <td>Execute a given command with a timeout.</td>
732
-
No equivalent source code line in the reference code can be identified.
- </tr>
733
-
No equivalent source code line in the reference code can be identified.
- <tr>
734
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/timeout3</td>
735
-
No equivalent source code line in the reference code can be identified.
- <td>Execute a given command with a timeout.</td>
736
-
No equivalent source code line in the reference code can be identified.
- </tr>
737
-
No equivalent source code line in the reference code can be identified.
- <tr>
738
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/vtree2</td>
739
-
No equivalent source code line in the reference code can be identified.
- <td>Display a tree printout of dir in 1k blocks.</td>
740
-
No equivalent source code line in the reference code can be identified.
- <td>tree</td>
741
-
No equivalent source code line in the reference code can be identified.
- </tr>
742
-
No equivalent source code line in the reference code can be identified.
- <tr>
743
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/vtree3</td>
744
-
No equivalent source code line in the reference code can be identified.
- <td>Display a graphical tree printout of dir.</td>
745
-
No equivalent source code line in the reference code can be identified.
- <td>tree</td>
746
-
No equivalent source code line in the reference code can be identified.
- </tr>
747
-
No equivalent source code line in the reference code can be identified.
- <tr>
748
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/vtree3a</td>
749
-
No equivalent source code line in the reference code can be identified.
- <td>Display a graphical tree printout of dir.</td>
750
-
No equivalent source code line in the reference code can be identified.
- <td>tree</td>
751
-
No equivalent source code line in the reference code can be identified.
- </tr>
752
-
No equivalent source code line in the reference code can be identified.
- <tr>
753
-
No equivalent source code line in the reference code can be identified.
- <td>./scripts/websrv.sh</td>
754
-
No equivalent source code line in the reference code can be identified.
- <td>A web server in bash!</td>
755
-
No equivalent source code line in the reference code can be identified.
- </tr>
756
-
No equivalent source code line in the reference code can be identified.
- <tr>
757 ➡ 387 <td>./scripts/xterm_title</td>
758 ➡ 388 <td>Print the contents of the xterm title bar.</td>
759 ➡ 389 </tr>
@@ -793,36 +423,4 @@
793 ➡ 423 </tr>
794 ➡ 424 <tr>
795 ➡ 425 </tr>
796
-
No equivalent source code line in the reference code can be identified.
- <tr>
797
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple</td>
798
-
No equivalent source code line in the reference code can be identified.
- <td>Example Start-up files for Mac OS X.</td>
799
-
No equivalent source code line in the reference code can be identified.
- </tr>
800
-
No equivalent source code line in the reference code can be identified.
- <tr>
801
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/aliases</td>
802
-
No equivalent source code line in the reference code can be identified.
- <td>Sample aliases for Mac OS X.</td>
803
-
No equivalent source code line in the reference code can be identified.
- </tr>
804
-
No equivalent source code line in the reference code can be identified.
- <tr>
805
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/bash.defaults</td>
806
-
No equivalent source code line in the reference code can be identified.
- <td>Sample User preferences file.</td>
807
-
No equivalent source code line in the reference code can be identified.
- </tr>
808
-
No equivalent source code line in the reference code can be identified.
- <tr>
809
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/environment</td>
810
-
No equivalent source code line in the reference code can be identified.
- <td>Sample Bourne Again Shell environment file.</td>
811
-
No equivalent source code line in the reference code can be identified.
- </tr>
812
-
No equivalent source code line in the reference code can be identified.
- <tr>
813
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/login</td>
814
-
No equivalent source code line in the reference code can be identified.
- <td>Sample login wrapper.</td>
815
-
No equivalent source code line in the reference code can be identified.
- </tr>
816
-
No equivalent source code line in the reference code can be identified.
- <tr>
817
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/logout</td>
818
-
No equivalent source code line in the reference code can be identified.
- <td>Sample logout wrapper.</td>
819
-
No equivalent source code line in the reference code can be identified.
- </tr>
820
-
No equivalent source code line in the reference code can be identified.
- <tr>
821
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/rc</td>
822
-
No equivalent source code line in the reference code can be identified.
- <td>Sample Bourne Again Shell config file.</td>
823
-
No equivalent source code line in the reference code can be identified.
- </tr>
824
-
No equivalent source code line in the reference code can be identified.
- <tr>
825
-
No equivalent source code line in the reference code can be identified.
- <td>./startup-files/apple/README</td>
826
-
No equivalent source code line in the reference code can be identified.
- <td>README</td>
827
-
No equivalent source code line in the reference code can be identified.
- </tr>
828 ➡ 426 </table>

Modified File: examples/INDEX.txt

LineTestsDifference Output
diff --git a/examples/INDEX.txt b/examples/INDEX.txt
index 4b5478ee..b47e2113 100644
--- a/examples/INDEX.txt
+++ b/examples/INDEX.txt
@@ -9,43 +9,25 @@ Path Description X-Ref
9 ./functions/autoload An almost ksh-compatible 'autoload' (no lazy load). ksh
10 ./functions/autoload.v2 An almost ksh-compatible 'autoload' (no lazy load). ksh
11 ./functions/autoload.v3 A more ksh-compatible 'autoload' (with lazy load). ksh
12
-
+./functions/autoload.v4 An updated ksh-compatible 'autoload'. ksh
12 ➡ 13 ./functions/basename A replacement for basename(1). basename
13
-
No equivalent source code line in the reference code can be identified.
-./functions/basename2 Fast basename(1) and dirname(1) functions for BASH/SH. basename, dirname
14
-
No equivalent source code line in the reference code can be identified.
-./functions/coproc.bash Start, control, and end coprocesses.
15
-
No equivalent source code line in the reference code can be identified.
-./functions/coshell.bash Control shell coprocesses (see coprocess.bash).
16
-
No equivalent source code line in the reference code can be identified.
-./functions/coshell.README README for coshell and coproc.
17 ➡ 14 ./functions/csh-compat A C-shell compatibility package. csh
18
-
No equivalent source code line in the reference code can be identified.
-./functions/dirfuncs Directory manipulation functions from the book 'The Korn Shell'.
19 ➡ 15 ./functions/dirname A replacement for dirname(1). dirname
20
-
No equivalent source code line in the reference code can be identified.
-./functions/emptydir Find out if a directory is empty.
16
-
+./functions/dirstack Directory stack functions.
21 ➡ 17 ./functions/exitstat Display the exit status of processes.
22 ➡ 18 ./functions/external Like 'command' but FORCES use of external command.
23 ➡ 19 ./functions/fact Recursive factorial function.
24 ➡ 20 ./functions/fstty Front end to sync TERM changes to both stty(1) and readline 'bind'. stty.bash
25
-
No equivalent source code line in the reference code can be identified.
-./functions/func Print out definitions for functions named by arguments.
26
-
No equivalent source code line in the reference code can be identified.
-./functions/gethtml Get a web page from a remote server (wget(1) in bash!).
27
-
No equivalent source code line in the reference code can be identified.
-./functions/getoptx.bash getopt function that parses long-named options.
28 ➡ 21 ./functions/inetaddr Internet address conversion (inet2hex & hex2inet).
29 ➡ 22 ./functions/inpath Return zero if the argument is in the path and executable. inpath
30
-
No equivalent source code line in the reference code can be identified.
-./functions/isnum.bash Test user input on numeric or character value.
31 ➡ 23 ./functions/isnum2 Test user input on numeric values, with floating point.
32 ➡ 24 ./functions/isvalidip Test user input for valid IP Addresses.
33
-
No equivalent source code line in the reference code can be identified.
-./functions/jdate.bash Julian date conversion.
34
-
No equivalent source code line in the reference code can be identified.
-./functions/jj.bash Look for running jobs.
35
-
No equivalent source code line in the reference code can be identified.
-./functions/keep Try to keep some programs in the foreground and running.
36 ➡ 25 ./functions/ksh-cd ksh-like 'cd': cd [-LP] [dir [change]]. ksh
37 ➡ 26 ./functions/ksh-compat-test ksh-like arithmetic test replacements. ksh
38 ➡ 27 ./functions/kshenv Functions and aliases to provide the beginnings of a ksh environment for bash. ksh
39 ➡ 28 ./functions/login Replace the 'login' and 'newgrp' builtins in old Bourne shells.
40
-
No equivalent source code line in the reference code can be identified.
-./functions/lowercase Rename files to lower case. rename lower
41
-
No equivalent source code line in the reference code can be identified.
-./functions/manpage Find and print a manual page. fman
42
-
No equivalent source code line in the reference code can be identified.
-./functions/mhfold Print MH folders, useful only because folders(1) doesn't print mod date/times.
43 ➡ 29 ./functions/notify.bash Notify when jobs change status.
44
-
No equivalent source code line in the reference code can be identified.
-./functions/pathfuncs Path related functions (no_path, add_path, pre-path, del_path). path
45 ➡ 30 ./functions/README README
46
-
No equivalent source code line in the reference code can be identified.
-./functions/recurse Recursive directory traverser.
47
-
No equivalent source code line in the reference code can be identified.
-./functions/repeat2 A clone of C shell builtin 'repeat'. repeat, csh
48
-
No equivalent source code line in the reference code can be identified.
-./functions/repeat3 A clone of C shell builtin 'repeat'. repeat, csh
49 ➡ 31 ./functions/seq Generate a sequence from m to n, m defaults to 1.
50 ➡ 32 ./functions/seq2 Generate a sequence from m to n, m defaults to 1.
51 ➡ 33 ./functions/shcat Readline-based pager. cat, readline pager
@@ -53,28 +35,25 @@ Path Description X-Ref
53 ➡ 35 ./functions/sort-pos-params Sort the positional parameters.
54 ➡ 36 ./functions/substr A function to emulate the ancient ksh builtin. ksh
55 ➡ 37 ./functions/substr2 A function to emulate the ancient ksh builtin. ksh
56
-
No equivalent source code line in the reference code can be identified.
-./functions/term A shell function to set the terminal type interactively or not.
57 ➡ 38 ./functions/whatis An implementation of the 10th Edition Unix sh builtin 'whatis(1)' command.
58 ➡ 39 ./functions/whence An almost-ksh compatible 'whence(1)' command.
59 ➡ 40 ./functions/which An emulation of 'which(1)' as it appears in FreeBSD.
60
-
No equivalent source code line in the reference code can be identified.
-./functions/xalias.bash Convert csh alias commands to bash functions. csh, aliasconv
61
-
No equivalent source code line in the reference code can be identified.
-./functions/xfind.bash A 'find(1)' clone.
62 ➡ 41
63 ➡ 42 ./loadables/ Example loadable replacements
64 ➡ 43 ./loadables/basename.c Return non-directory portion of pathname. basename
65 ➡ 44 ./loadables/cat.c cat(1) replacement with no options - the way cat was intended. cat, readline pager
66
-
No equivalent source code line in the reference code can be identified.
-./loadables/cut.c cut(1) replacement.
67 ➡ 45 ./loadables/dirname.c Return directory portion of pathname. dirname
46
-
+./loadables/fdflags.c Display or modify file descriptor flags
68 ➡ 47 ./loadables/finfo.c Print file info.
69
-
No equivalent source code line in the reference code can be identified.
-./loadables/getconf.c POSIX.2 getconf utility.
70
-
No equivalent source code line in the reference code can be identified.
-./loadables/getconf.h Replacement definitions for ones the system doesn't provide.
71 ➡ 48 ./loadables/head.c Copy first part of files.
72 ➡ 49 ./loadables/hello.c Obligatory "Hello World" / sample loadable.
73 ➡ 50 ./loadables/id.c POSIX.2 user identity.
74 ➡ 51 ./loadables/ln.c Make links.
75 ➡ 52 ./loadables/logname.c Print login name of current user.
76 ➡ 53 ./loadables/Makefile.in Simple makefile for the sample loadable builtins.
54
-
+./loadables/Makefile.inc.in Sample makefile to use for loadable builtin development.
77 ➡ 55 ./loadables/mkdir.c Make directories.
56
-
+./loadables/mypid.c Demonstrate how a loadable builtin can create and delete shell variables.
78 ➡ 57 ./loadables/necho.c echo without options or argument interpretation.
79 ➡ 58 ./loadables/pathchk.c Check pathnames for validity and portability.
80 ➡ 59 ./loadables/print.c Loadable ksh-93 style print builtin.
@@ -82,8 +61,11 @@ Path Description X-Ref
82 ➡ 61 ./loadables/push.c Anyone remember TOPS-20?
83 ➡ 62 ./loadables/README README
84 ➡ 63 ./loadables/realpath.c Canonicalize pathnames, resolving symlinks.
64
-
+./loadables/rm.c Remove file.
85 ➡ 65 ./loadables/rmdir.c Remove directory.
66
-
+./loadables/setpgid.c Set a child process's process group.
86 ➡ 67 ./loadables/sleep.c sleep for fractions of a second.
68
-
+./loadables/stat.c Load an associative array with stat information about a file.
87 ➡ 69 ./loadables/strftime.c Loadable builtin interface to strftime(3).
88 ➡ 70 ./loadables/sync.c Sync the disks by forcing pending filesystem writes to complete.
89 ➡ 71 ./loadables/tee.c Duplicate standard input.
@@ -101,83 +83,13 @@ Path Description X-Ref
101 ➡ 83 ./misc/aliasconv.sh Convert csh aliases to bash aliases and functions. csh, xalias
102 ➡ 84 ./misc/cshtobash Convert csh aliases, environment variables, and variables to bash equivalents. csh, xalias
103 ➡ 85 ./misc/README README
104
-
No equivalent source code line in the reference code can be identified.
-./misc/suncmd.termcap SunView TERMCAP string.
105
-
No equivalent source code line in the reference code can be identified.
-
106
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah Noah Friedman's collection of scripts (updated to bash v2 syntax by Chet Ramey)
107
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/aref.bash Pseudo-arrays and substring indexing examples.
108
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/bash.sub.bash Library functions used by require.bash.
109
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/bash_version.bash A function to slice up $BASH_VERSION.
110
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/meta.bash Enable and disable eight-bit readline input.
111
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/mktmp.bash Make a temporary file with a unique name.
112
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/number.bash A fun hack to translate numerals into English.
113
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/PERMISSION Permissions to use the scripts in this directory.
114
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/prompt.bash A way to set PS1 to some predefined strings.
115
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/README README
116
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/remap_keys.bash A front end to 'bind' to redo readline bindings.
117
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/require.bash Lisp-like require/provide library functions for bash.
118
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/send_mail.bash Replacement SMTP client written in bash.
119
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/shcat.bash Bash replacement for 'cat(1)'. cat
120
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/source.bash Replacement for source that uses current directory.
121
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/string.bash The string(3) functions at the shell level.
122
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/stty.bash Front-end to stty(1) that changes readline bindings too. fstty
123
-
No equivalent source code line in the reference code can be identified.
-./scripts.noah/y_or_n_p.bash Prompt for a yes/no/quit answer. ask
124
-
No equivalent source code line in the reference code can be identified.
-
125
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2 John DuBois' ksh script collection (converted to bash v2 syntax by Chet Ramey).
126
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/arc2tarz Convert an "arc" archive to a compressed tar archive.
127
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/bashrand Random number generator with upper and lower bounds and optional seed. random
128
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/cal2day.bash Convert a day number to a name.
129
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/cdhist.bash cd replacement with a directory stack added.
130
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/corename Tell what produced a core file.
131
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/fman Fast man(1) replacement. manpage
132
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/frcp Copy files using ftp(1) but with rcp-type command line syntax.
133
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/lowercase Change filenames to lower case. rename lower
134
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/ncp A nicer front end for cp(1) (has -i, etc.).
135
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/newext Change the extension of a group of files. rename
136
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/nmv A nicer front end for mv(1) (has -i, etc.). rename
137
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/pages Print specified pages from files.
138
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/PERMISSION Permissions to use the scripts in this directory.
139
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/pf A pager front end that handles compressed files.
140
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/pmtop Poor man's 'top(1)' for SunOS 4.x and BSD/OS.
141
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/README README
142
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/ren Rename files by changing parts of filenames that match a pattern. rename
143
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/rename Change the names of files that match a pattern. rename
144
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/repeat Execute a command multiple times. repeat
145
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/shprof Line profiler for bash scripts.
146
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/untar Unarchive a (possibly compressed) tarfile into a directory.
147
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/uudec Carefully uudecode(1) multiple files.
148
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/uuenc uuencode(1) multiple files.
149
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/vtree Print a visual display of a directory tree. tree
150
-
No equivalent source code line in the reference code can be identified.
-./scripts.v2/where Show where commands that match a pattern are.
151 ➡ 86
152 ➡ 87 ./scripts Example scripts
153
-
No equivalent source code line in the reference code can be identified.
-./scripts/adventure.sh Text adventure game in bash!
154
-
No equivalent source code line in the reference code can be identified.
-./scripts/bash-hexdump.sh hexdump(1) in bash
155
-
No equivalent source code line in the reference code can be identified.
-./scripts/bcsh.sh Bourne shell cshell-emulator. csh
156 ➡ 88 ./scripts/cat.sh Readline-based pager. cat, readline pager
157 ➡ 89 ./scripts/center Center - center a group of lines.
158
-
No equivalent source code line in the reference code can be identified.
-./scripts/dd-ex.sh Line editor using only /bin/sh, /bin/dd and /bin/rm.
159
-
No equivalent source code line in the reference code can be identified.
-./scripts/fixfiles.bash Recurse a tree and fix files containing various "bad" chars.
160
-
No equivalent source code line in the reference code can be identified.
-./scripts/hanoi.bash The inevitable Towers of Hanoi in bash.
161 ➡ 90 ./scripts/inpath Search $PATH for a file the same name as $1; return TRUE if found. inpath
162
-
No equivalent source code line in the reference code can be identified.
-./scripts/krand.bash Produces a random number within integer limits. random
163
-
No equivalent source code line in the reference code can be identified.
-./scripts/line-input.bash Line input routine for GNU Bourne-Again Shell plus terminal-control primitives.
164
-
No equivalent source code line in the reference code can be identified.
-./scripts/nohup.bash bash version of 'nohup' command.
165
-
No equivalent source code line in the reference code can be identified.
-./scripts/precedence Test relative precedences for '&&' and '||' operators.
166
-
No equivalent source code line in the reference code can be identified.
-./scripts/randomcard.bash Print a random card from a card deck. random
167
-
No equivalent source code line in the reference code can be identified.
-./scripts/README README
168
-
No equivalent source code line in the reference code can be identified.
-./scripts/scrollbar Display scrolling text.
169
-
No equivalent source code line in the reference code can be identified.
-./scripts/scrollbar2 Display scrolling text.
170
-
No equivalent source code line in the reference code can be identified.
-./scripts/self-repro A self-reproducing script (careful!)
171
-
No equivalent source code line in the reference code can be identified.
-./scripts/showperm.bash Convert ls(1) symbolic permissions into octal mode.
172 ➡ 91 ./scripts/shprompt Display a prompt and get an answer satisfying certain criteria. ask
173 ➡ 92 ./scripts/spin.bash Display a 'spinning wheel' to show progress.
174
-
No equivalent source code line in the reference code can be identified.
-./scripts/timeout Give rsh(1) a shorter timeout.
175
-
No equivalent source code line in the reference code can be identified.
-./scripts/timeout2 Execute a given command with a timeout.
176
-
No equivalent source code line in the reference code can be identified.
-./scripts/timeout3 Execute a given command with a timeout.
177
-
No equivalent source code line in the reference code can be identified.
-./scripts/vtree2 Display a tree printout of dir in 1k blocks. tree
178
-
No equivalent source code line in the reference code can be identified.
-./scripts/vtree3 Display a graphical tree printout of dir. tree
179
-
No equivalent source code line in the reference code can be identified.
-./scripts/vtree3a Display a graphical tree printout of dir. tree
180
-
No equivalent source code line in the reference code can be identified.
-./scripts/websrv.sh A web server in bash!
181 ➡ 93 ./scripts/xterm_title Print the contents of the xterm title bar.
182 ➡ 94 ./scripts/zprintf Emulate printf (obsolete since it's now a bash builtin).
183 ➡ 95
@@ -189,11 +101,3 @@ Path Description X-Ref
189 ➡ 101 ./startup-files/Bashrc.bfox Sample Bourne Again SHell init file (Fox).
190 ➡ 102 ./startup-files/README README
191 ➡ 103
192
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple Example Start-up files for Mac OS X.
193
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/aliases Sample aliases for Mac OS X.
194
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/bash.defaults Sample User preferences file.
195
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/environment Sample Bourne Again Shell environment file.
196
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/login Sample login wrapper.
197
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/logout Sample logout wrapper.
198
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/rc Sample Bourne Again Shell config file.
199
-
No equivalent source code line in the reference code can be identified.
-./startup-files/apple/README README

Modified File: lib/readline/bind.c

LineTestsDifference Output
diff --git a/lib/readline/bind.c b/lib/readline/bind.c
index ef3331b8..2e05b460 100644
--- a/lib/readline/bind.c
+++ b/lib/readline/bind.c
@@ -80,6 +80,8 @@ static void _rl_init_file_error (const char *, ...) __attribute__((__format__ (
80 static void _rl_init_file_error ();
81 #endif
82
83
-
+static rl_command_func_t *_rl_function_of_keyseq_internal PARAMS((const char *, size_t, Keymap, int *));
84
-
+
83 ➡ 85 static char *_rl_read_file PARAMS((char *, size_t *));
84 ➡ 86 static int _rl_read_init_file PARAMS((const char *, int));
85 ➡ 87 static int glean_key_from_name PARAMS((char *));
@@ -193,20 +195,18 @@ rl_bind_key_in_map (int key, rl_command_func_t *function, Keymap map)
193 ➡ 195 int
194 ➡ 196 rl_bind_key_if_unbound_in_map (int key, rl_command_func_t *default_func, Keymap kmap)
195 ➡ 197 {
196
0
- char keyseq[2];
198
0
+ char *keyseq;
197 ➡ 199
198
0
- keyseq[0] = (unsigned char)key;
199
0
- keyseq[1] = '\0';
200
0
+ keyseq = rl_untranslate_keyseq ((unsigned char)key);
200 ➡ 201 return (rl_bind_keyseq_if_unbound_in_map (keyseq, default_func, kmap));
201 ➡ 202 }
202 ➡ 203
203 ➡ 204 int
204 ➡ 205 rl_bind_key_if_unbound (int key, rl_command_func_t *default_func)
205 ➡ 206 {
206
0
- char keyseq[2];
207
0
+ char *keyseq;
207 ➡ 208
208
0
- keyseq[0] = (unsigned char)key;
209
0
- keyseq[1] = '\0';
209
0
+ keyseq = rl_untranslate_keyseq ((unsigned char)key);
210 return (rl_bind_keyseq_if_unbound_in_map (keyseq, default_func, _rl_keymap));
211 }
212
@@ -287,10 +287,21 @@ int
287 rl_bind_keyseq_if_unbound_in_map (const char *keyseq, rl_command_func_t *default_func, Keymap kmap)
288 {
289 rl_command_func_t *func;
290
0
+ char *keys;
291
0
+ int keys_len;
290 ➡ 292
291 ➡ 293 if (keyseq)
292 ➡ 294 {
293
0
- func = rl_function_of_keyseq (keyseq, kmap, (int *)NULL);
295
-
+ /* Handle key sequences that require translations and `raw' ones that
296
-
+ don't. This might be a problem with backslashes. */
297
0
+ keys = (char *)xmalloc (1 + (2 * strlen (keyseq)));
298
0
+ if (rl_translate_keyseq (keyseq, keys, &keys_len))
299
-
+ {
300
0
+ xfree (keys);
301
0
+ return -1;
302
0
+ }
303
0
+ func = rl_function_of_keyseq_len (keys, keys_len, kmap, (int *)NULL);
304
0
+ xfree (keys);
294 ➡ 305 #if defined (VI_MODE)
295 ➡ 306 if (!func || func == rl_do_lowercase_version || func == rl_vi_movement_mode)
296 ➡ 307 #else
@@ -373,7 +384,8 @@ rl_generic_bind (int type, const char *keyseq, char *data, Keymap map)
373 ➡ 384 unsigned char uc = keys[i];
374 ➡ 385 int ic;
375 ➡ 386
376
0
- prevkey = ic;
387
0
+ if (i > 0)
388
0
+ prevkey = ic;
377 ➡ 389
378 ➡ 390 ic = uc;
379 ➡ 391 if (ic < 0 || ic >= KEYMAP_SIZE)
@@ -760,15 +772,15 @@ rl_named_function (const char *string)
760 ➡ 772 used. TYPE, if non-NULL, is a pointer to an int which will receive the
761 ➡ 773 type of the object pointed to. One of ISFUNC (function), ISKMAP (keymap),
762 ➡ 774 or ISMACR (macro). */
763
-
No equivalent source code line in the reference code can be identified.
-rl_command_func_t *
764
-
No equivalent source code line in the reference code can be identified.
-rl_function_of_keyseq (const char *keyseq, Keymap map, int *type)
775
-
+static rl_command_func_t *
776
-
+_rl_function_of_keyseq_internal (const char *keyseq, size_t len, Keymap map, int *type)
765 ➡ 777 {
766 ➡ 778 register int i;
767 ➡ 779
768 ➡ 780 if (map == 0)
769 ➡ 781 map = _rl_keymap;
770 ➡ 782
771
0
- for (i = 0; keyseq && keyseq[i]; i++)
783
0
+ for (i = 0; keyseq && i < len; i++)
772 ➡ 784 {
773 ➡ 785 unsigned char ic = keyseq[i];
774 ➡ 786
@@ -820,6 +832,18 @@ rl_function_of_keyseq (const char *keyseq, Keymap map, int *type)
820 ➡ 832 return ((rl_command_func_t *) NULL);
821 ➡ 833 }
822 ➡ 834
835
-
+rl_command_func_t *
836
-
+rl_function_of_keyseq (const char *keyseq, Keymap map, int *type)
837
-
+{
838
0
+ return _rl_function_of_keyseq_internal (keyseq, strlen (keyseq), map, type);
839
-
+}
840
-
+
841
-
+rl_command_func_t *
842
-
+rl_function_of_keyseq_len (const char *keyseq, size_t len, Keymap map, int *type)
843
-
+{
844
0
+ return _rl_function_of_keyseq_internal (keyseq, len, map, type);
845
-
+}
846
-
+
823 ➡ 847 /* The last key bindings file read. */
824 ➡ 848 static char *last_readline_init_file = (char *)NULL;
825 ➡ 849

Modified File: lib/readline/doc/rltech.texi

LineTestsDifference Output
diff --git a/lib/readline/doc/rltech.texi b/lib/readline/doc/rltech.texi
index 5e57eaba..7d22b2cb 100644
--- a/lib/readline/doc/rltech.texi
+++ b/lib/readline/doc/rltech.texi
@@ -848,6 +848,12 @@ not @code{NULL}, the type of the object is returned in the @code{int} variable
848 it points to (one of @code{ISFUNC}, @code{ISKMAP}, or @code{ISMACR}).
849 @end deftypefun
850
851
-
+@deftypefun {rl_command_func_t *} rl_function_of_keyseq_len (const char *keyseq, size_t len Keymap map, int *type)
852
-
+Return the function invoked by @var{keyseq} of length @var{len}
853
-
+in keymap @var{map}. Equivalent to @code{rl_function_of_keyseq} with the
854
-
+addition of the @var{len} parameter.
855
-
+@end deftypefun
856
-
+
851 ➡ 857 @deftypefun {char **} rl_invoking_keyseqs (rl_command_func_t *function)
852 ➡ 858 Return an array of strings representing the key sequences used to
853 ➡ 859 invoke @var{function} in the current keymap.

Modified File: lib/readline/readline.h

LineTestsDifference Output
diff --git a/lib/readline/readline.h b/lib/readline/readline.h
index c847e937..2081b197 100644
--- a/lib/readline/readline.h
+++ b/lib/readline/readline.h
@@ -332,6 +332,7 @@ extern char *rl_untranslate_keyseq PARAMS((int));
332
333 extern rl_command_func_t *rl_named_function PARAMS((const char *));
334 extern rl_command_func_t *rl_function_of_keyseq PARAMS((const char *, Keymap, int *));
335
-
+extern rl_command_func_t *rl_function_of_keyseq_len PARAMS((const char *, size_t, Keymap, int *));
335 ➡ 336
336 ➡ 337 extern void rl_list_funmap_names PARAMS((void));
337 ➡ 338 extern char **rl_invoking_keyseqs_in_map PARAMS((rl_command_func_t *, Keymap));

Modified File: parse.y

LineTestsDifference Output
diff --git a/parse.y b/parse.y
index 29b59f81..274bb0e1 100644
--- a/parse.y
+++ b/parse.y
@@ -3036,7 +3036,15 @@ special_case_tokens (tokstr)
3036 expecting_in_token--;
3037 return (IN);
3038 }
3039
-
+ /* Posix grammar rule 6, third word in FOR: for i; do command-list; done */
3040
1
Executed by:
  • Self test
+ else if (expecting_in_token && (last_read_token == '\n' || last_read_token == ';') &&
3041
1
Executed by:
  • Self test
+ (tokstr[0] == 'd' && tokstr[1] == 'o' && tokstr[2] == '\0'))
3042
-
+ {
3043
1
Executed by:
  • Self test
+ expecting_in_token--;
3044
1
Executed by:
  • Self test
+ return (DO);
3045
-
+ }
3039 ➡ 3046
3047
-
+ /* for i do; command-list; done */
3040 ➡ 3048 if (last_read_token == WORD &&
3041 ➡ 3049 #if defined (SELECT_COMMAND)
3042 ➡ 3050 (token_before_that == FOR || token_before_that == SELECT) &&

Modified File: sig.c

LineTestsDifference Output
diff --git a/sig.c b/sig.c
index aaaa10ee..75ff9298 100644
--- a/sig.c
+++ b/sig.c
@@ -585,6 +585,8 @@ termsig_handler (sig)
585 run_exit_trap (); /* XXX - run exit trap possibly in signal context? */
586 set_signal_handler (sig, SIG_DFL);
587 kill (getpid (), sig);
588
-
+
589
0
+ exit (1); /* just in case the kill fails? */
588 ➡ 590 }
589 ➡ 591
590 ➡ 592 /* What we really do when SIGINT occurs. */

Modified File: tests/jobs4.sub

LineTestsDifference Output
diff --git a/tests/jobs4.sub b/tests/jobs4.sub
index 2eb4197a..898b449b 100644
--- a/tests/jobs4.sub
+++ b/tests/jobs4.sub
@@ -1,12 +1,12 @@
1 # test being able to use job control notation in jobs/kill/wait without
2 # job control active, as the SUS requires
3
4
-
No equivalent source code line in the reference code can be identified.
-sleep 5 &
4
-
+sleep 2 &
5
6
-
No equivalent source code line in the reference code can be identified.
-sleep 5 &
7
-
No equivalent source code line in the reference code can be identified.
-sleep 5 &
8
-
No equivalent source code line in the reference code can be identified.
-sleep 5 &
9
-
No equivalent source code line in the reference code can be identified.
-(sleep 5 ; exit 4) &
6
-
+sleep 2 &
7
-
+sleep 2 &
8
-
+sleep 2 &
9
-
+(sleep 2 ; exit 4) &
10
11 jobs
12

Generated by Squish Coco 4.1.2