]> git.ipfire.org Git - thirdparty/bash.git/blob - doc/bashref.texi
more changes to avoid expanding associative array subscripts twice; internal debuggin...
[thirdparty/bash.git] / doc / bashref.texi
1 \input texinfo.tex @c -*- texinfo -*-
2 @c %**start of header
3 @setfilename bashref.info
4 @settitle Bash Reference Manual
5
6 @include version.texi
7 @c %**end of header
8
9 @copying
10 This text is a brief description of the features that are present in
11 the Bash shell (version @value{VERSION}, @value{UPDATED}).
12
13 This is Edition @value{EDITION}, last updated @value{UPDATED},
14 of @cite{The GNU Bash Reference Manual},
15 for @code{Bash}, Version @value{VERSION}.
16
17 Copyright @copyright{} 1988--2021 Free Software Foundation, Inc.
18
19 @quotation
20 Permission is granted to copy, distribute and/or modify this document
21 under the terms of the GNU Free Documentation License, Version 1.3 or
22 any later version published by the Free Software Foundation; with no
23 Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
24 A copy of the license is included in the section entitled
25 ``GNU Free Documentation License''.
26 @end quotation
27 @end copying
28
29 @defcodeindex bt
30 @defcodeindex rw
31 @set BashFeatures
32
33 @dircategory Basics
34 @direntry
35 * Bash: (bash). The GNU Bourne-Again SHell.
36 @end direntry
37
38 @finalout
39
40 @titlepage
41 @title Bash Reference Manual
42 @subtitle Reference Documentation for Bash
43 @subtitle Edition @value{EDITION}, for @code{Bash} Version @value{VERSION}.
44 @subtitle @value{UPDATED-MONTH}
45 @author Chet Ramey, Case Western Reserve University
46 @author Brian Fox, Free Software Foundation
47
48 @page
49 @vskip 0pt plus 1filll
50 @insertcopying
51
52 @end titlepage
53
54 @contents
55
56 @ifnottex
57 @node Top, Introduction, (dir), (dir)
58 @top Bash Features
59
60 This text is a brief description of the features that are present in
61 the Bash shell (version @value{VERSION}, @value{UPDATED}).
62 The Bash home page is @url{http://www.gnu.org/software/bash/}.
63
64 This is Edition @value{EDITION}, last updated @value{UPDATED},
65 of @cite{The GNU Bash Reference Manual},
66 for @code{Bash}, Version @value{VERSION}.
67
68 Bash contains features that appear in other popular shells, and some
69 features that only appear in Bash. Some of the shells that Bash has
70 borrowed concepts from are the Bourne Shell (@file{sh}), the Korn Shell
71 (@file{ksh}), and the C-shell (@file{csh} and its successor,
72 @file{tcsh}). The following menu breaks the features up into
73 categories, noting which features were inspired by other shells and
74 which are specific to Bash.
75
76 This manual is meant as a brief introduction to features found in
77 Bash. The Bash manual page should be used as the definitive
78 reference on shell behavior.
79
80 @menu
81 * Introduction:: An introduction to the shell.
82 * Definitions:: Some definitions used in the rest of this
83 manual.
84 * Basic Shell Features:: The shell "building blocks".
85 * Shell Builtin Commands:: Commands that are a part of the shell.
86 * Shell Variables:: Variables used or set by Bash.
87 * Bash Features:: Features found only in Bash.
88 * Job Control:: What job control is and how Bash allows you
89 to use it.
90 * Command Line Editing:: Chapter describing the command line
91 editing features.
92 * Using History Interactively:: Command History Expansion
93 * Installing Bash:: How to build and install Bash on your system.
94 * Reporting Bugs:: How to report bugs in Bash.
95 * Major Differences From The Bourne Shell:: A terse list of the differences
96 between Bash and historical
97 versions of /bin/sh.
98 * GNU Free Documentation License:: Copying and sharing this documentation.
99 * Indexes:: Various indexes for this manual.
100 @end menu
101 @end ifnottex
102
103 @node Introduction
104 @chapter Introduction
105 @menu
106 * What is Bash?:: A short description of Bash.
107 * What is a shell?:: A brief introduction to shells.
108 @end menu
109
110 @node What is Bash?
111 @section What is Bash?
112
113 Bash is the shell, or command language interpreter,
114 for the @sc{gnu} operating system.
115 The name is an acronym for the @samp{Bourne-Again SHell},
116 a pun on Stephen Bourne, the author of the direct ancestor of
117 the current Unix shell @code{sh},
118 which appeared in the Seventh Edition Bell Labs Research version
119 of Unix.
120
121 Bash is largely compatible with @code{sh} and incorporates useful
122 features from the Korn shell @code{ksh} and the C shell @code{csh}.
123 It is intended to be a conformant implementation of the @sc{ieee}
124 @sc{posix} Shell and Tools portion of the @sc{ieee} @sc{posix}
125 specification (@sc{ieee} Standard 1003.1).
126 It offers functional improvements over @code{sh} for both interactive and
127 programming use.
128
129 While the @sc{gnu} operating system provides other shells, including
130 a version of @code{csh}, Bash is the default shell.
131 Like other @sc{gnu} software, Bash is quite portable. It currently runs
132 on nearly every version of Unix and a few other operating systems @minus{}
133 independently-supported ports exist for @sc{ms-dos}, @sc{os/2},
134 and Windows platforms.
135
136 @node What is a shell?
137 @section What is a shell?
138
139 At its base, a shell is simply a macro processor that executes
140 commands. The term macro processor means functionality where text
141 and symbols are expanded to create larger expressions.
142
143 A Unix shell is both a command interpreter and a programming
144 language. As a command interpreter, the shell provides the user
145 interface to the rich set of @sc{gnu} utilities. The programming
146 language features allow these utilities to be combined.
147 Files containing commands can be created, and become
148 commands themselves. These new commands have the same status as
149 system commands in directories such as @file{/bin}, allowing users
150 or groups to establish custom environments to automate their common
151 tasks.
152
153 Shells may be used interactively or non-interactively. In
154 interactive mode, they accept input typed from the keyboard.
155 When executing non-interactively, shells execute commands read
156 from a file.
157
158 A shell allows execution of @sc{gnu} commands, both synchronously and
159 asynchronously.
160 The shell waits for synchronous commands to complete before accepting
161 more input; asynchronous commands continue to execute in parallel
162 with the shell while it reads and executes additional commands.
163 The @dfn{redirection} constructs permit
164 fine-grained control of the input and output of those commands.
165 Moreover, the shell allows control over the contents of commands'
166 environments.
167
168 Shells also provide a small set of built-in
169 commands (@dfn{builtins}) implementing functionality impossible
170 or inconvenient to obtain via separate utilities.
171 For example, @code{cd}, @code{break}, @code{continue}, and
172 @code{exec} cannot be implemented outside of the shell because
173 they directly manipulate the shell itself.
174 The @code{history}, @code{getopts}, @code{kill}, or @code{pwd}
175 builtins, among others, could be implemented in separate utilities,
176 but they are more convenient to use as builtin commands.
177 All of the shell builtins are described in
178 subsequent sections.
179
180 While executing commands is essential, most of the power (and
181 complexity) of shells is due to their embedded programming
182 languages. Like any high-level language, the shell provides
183 variables, flow control constructs, quoting, and functions.
184
185 Shells offer features geared specifically for
186 interactive use rather than to augment the programming language.
187 These interactive features include job control, command line
188 editing, command history and aliases. Each of these features is
189 described in this manual.
190
191 @node Definitions
192 @chapter Definitions
193 These definitions are used throughout the remainder of this manual.
194
195 @table @code
196
197 @item POSIX
198 @cindex POSIX
199 A family of open system standards based on Unix. Bash
200 is primarily concerned with the Shell and Utilities portion of the
201 @sc{posix} 1003.1 standard.
202
203 @item blank
204 A space or tab character.
205
206 @item builtin
207 @cindex builtin
208 A command that is implemented internally by the shell itself, rather
209 than by an executable program somewhere in the file system.
210
211 @item control operator
212 @cindex control operator
213 A @code{token} that performs a control function. It is a @code{newline}
214 or one of the following:
215 @samp{||}, @samp{&&}, @samp{&}, @samp{;}, @samp{;;}, @samp{;&}, @samp{;;&},
216 @samp{|}, @samp{|&}, @samp{(}, or @samp{)}.
217
218 @item exit status
219 @cindex exit status
220 The value returned by a command to its caller. The value is restricted
221 to eight bits, so the maximum value is 255.
222
223 @item field
224 @cindex field
225 A unit of text that is the result of one of the shell expansions. After
226 expansion, when executing a command, the resulting fields are used as
227 the command name and arguments.
228
229 @item filename
230 @cindex filename
231 A string of characters used to identify a file.
232
233 @item job
234 @cindex job
235 A set of processes comprising a pipeline, and any processes descended
236 from it, that are all in the same process group.
237
238 @item job control
239 @cindex job control
240 A mechanism by which users can selectively stop (suspend) and restart
241 (resume) execution of processes.
242
243 @item metacharacter
244 @cindex metacharacter
245 A character that, when unquoted, separates words. A metacharacter is
246 a @code{space}, @code{tab}, @code{newline}, or one of the following characters:
247 @samp{|}, @samp{&}, @samp{;}, @samp{(}, @samp{)}, @samp{<}, or
248 @samp{>}.
249
250 @item name
251 @cindex name
252 @cindex identifier
253 A @code{word} consisting solely of letters, numbers, and underscores,
254 and beginning with a letter or underscore. @code{Name}s are used as
255 shell variable and function names.
256 Also referred to as an @code{identifier}.
257
258 @item operator
259 @cindex operator, shell
260 A @code{control operator} or a @code{redirection operator}.
261 @xref{Redirections}, for a list of redirection operators.
262 Operators contain at least one unquoted @code{metacharacter}.
263
264 @item process group
265 @cindex process group
266 A collection of related processes each having the same process
267 group @sc{id}.
268
269 @item process group ID
270 @cindex process group ID
271 A unique identifier that represents a @code{process group}
272 during its lifetime.
273
274 @item reserved word
275 @cindex reserved word
276 A @code{word} that has a special meaning to the shell. Most reserved
277 words introduce shell flow control constructs, such as @code{for} and
278 @code{while}.
279
280 @item return status
281 @cindex return status
282 A synonym for @code{exit status}.
283
284 @item signal
285 @cindex signal
286 A mechanism by which a process may be notified by the kernel
287 of an event occurring in the system.
288
289 @item special builtin
290 @cindex special builtin
291 A shell builtin command that has been classified as special by the
292 @sc{posix} standard.
293
294 @item token
295 @cindex token
296 A sequence of characters considered a single unit by the shell.
297 It is either a @code{word} or an @code{operator}.
298
299 @item word
300 @cindex word
301 A sequence of characters treated as a unit by the shell.
302 Words may not include unquoted @code{metacharacters}.
303 @end table
304
305 @node Basic Shell Features
306 @chapter Basic Shell Features
307 @cindex Bourne shell
308
309 Bash is an acronym for @samp{Bourne-Again SHell}.
310 The Bourne shell is
311 the traditional Unix shell originally written by Stephen Bourne.
312 All of the Bourne shell builtin commands are available in Bash,
313 The rules for evaluation and quoting are taken from the @sc{posix}
314 specification for the `standard' Unix shell.
315
316 This chapter briefly summarizes the shell's `building blocks':
317 commands, control structures, shell functions, shell @i{parameters},
318 shell expansions,
319 @i{redirections}, which are a way to direct input and output from
320 and to named files, and how the shell executes commands.
321
322 @menu
323 * Shell Syntax:: What your input means to the shell.
324 * Shell Commands:: The types of commands you can use.
325 * Shell Functions:: Grouping commands by name.
326 * Shell Parameters:: How the shell stores values.
327 * Shell Expansions:: How Bash expands parameters and the various
328 expansions available.
329 * Redirections:: A way to control where input and output go.
330 * Executing Commands:: What happens when you run a command.
331 * Shell Scripts:: Executing files of shell commands.
332 @end menu
333
334 @node Shell Syntax
335 @section Shell Syntax
336 @menu
337 * Shell Operation:: The basic operation of the shell.
338 * Quoting:: How to remove the special meaning from characters.
339 * Comments:: How to specify comments.
340 @end menu
341
342 When the shell reads input, it proceeds through a
343 sequence of operations. If the input indicates the beginning of a
344 comment, the shell ignores the comment symbol (@samp{#}), and the rest
345 of that line.
346
347 Otherwise, roughly speaking, the shell reads its input and
348 divides the input into words and operators, employing the quoting rules
349 to select which meanings to assign various words and characters.
350
351 The shell then parses these tokens into commands and other constructs,
352 removes the special meaning of certain words or characters, expands
353 others, redirects input and output as needed, executes the specified
354 command, waits for the command's exit status, and makes that exit status
355 available for further inspection or processing.
356
357 @node Shell Operation
358 @subsection Shell Operation
359
360 The following is a brief description of the shell's operation when it
361 reads and executes a command. Basically, the shell does the
362 following:
363
364 @enumerate
365 @item
366 Reads its input from a file (@pxref{Shell Scripts}), from a string
367 supplied as an argument to the @option{-c} invocation option
368 (@pxref{Invoking Bash}), or from the user's terminal.
369
370 @item
371 Breaks the input into words and operators, obeying the quoting rules
372 described in @ref{Quoting}. These tokens are separated by
373 @code{metacharacters}. Alias expansion is performed by this step
374 (@pxref{Aliases}).
375
376 @item
377 Parses the tokens into simple and compound commands
378 (@pxref{Shell Commands}).
379
380 @item
381 Performs the various shell expansions (@pxref{Shell Expansions}), breaking
382 the expanded tokens into lists of filenames (@pxref{Filename Expansion})
383 and commands and arguments.
384
385 @item
386 Performs any necessary redirections (@pxref{Redirections}) and removes
387 the redirection operators and their operands from the argument list.
388
389 @item
390 Executes the command (@pxref{Executing Commands}).
391
392 @item
393 Optionally waits for the command to complete and collects its exit
394 status (@pxref{Exit Status}).
395
396 @end enumerate
397
398 @node Quoting
399 @subsection Quoting
400 @cindex quoting
401 @menu
402 * Escape Character:: How to remove the special meaning from a single
403 character.
404 * Single Quotes:: How to inhibit all interpretation of a sequence
405 of characters.
406 * Double Quotes:: How to suppress most of the interpretation of a
407 sequence of characters.
408 * ANSI-C Quoting:: How to expand ANSI-C sequences in quoted strings.
409 * Locale Translation:: How to translate strings into different languages.
410 @end menu
411
412 Quoting is used to remove the special meaning of certain
413 characters or words to the shell. Quoting can be used to
414 disable special treatment for special characters, to prevent
415 reserved words from being recognized as such, and to prevent
416 parameter expansion.
417
418 Each of the shell metacharacters (@pxref{Definitions})
419 has special meaning to the shell and must be quoted if it is to
420 represent itself.
421 When the command history expansion facilities are being used
422 (@pxref{History Interaction}), the
423 @dfn{history expansion} character, usually @samp{!}, must be quoted
424 to prevent history expansion. @xref{Bash History Facilities}, for
425 more details concerning history expansion.
426
427 There are three quoting mechanisms: the
428 @dfn{escape character}, single quotes, and double quotes.
429
430 @node Escape Character
431 @subsubsection Escape Character
432 A non-quoted backslash @samp{\} is the Bash escape character.
433 It preserves the literal value of the next character that follows,
434 with the exception of @code{newline}. If a @code{\newline} pair
435 appears, and the backslash itself is not quoted, the @code{\newline}
436 is treated as a line continuation (that is, it is removed from
437 the input stream and effectively ignored).
438
439 @node Single Quotes
440 @subsubsection Single Quotes
441
442 Enclosing characters in single quotes (@samp{'}) preserves the literal value
443 of each character within the quotes. A single quote may not occur
444 between single quotes, even when preceded by a backslash.
445
446 @node Double Quotes
447 @subsubsection Double Quotes
448
449 Enclosing characters in double quotes (@samp{"}) preserves the literal value
450 of all characters within the quotes, with the exception of
451 @samp{$}, @samp{`}, @samp{\},
452 and, when history expansion is enabled, @samp{!}.
453 When the shell is in
454 @sc{posix} mode (@pxref{Bash POSIX Mode}),
455 the @samp{!} has no special meaning
456 within double quotes, even when history expansion is enabled.
457 The characters @samp{$} and @samp{`}
458 retain their special meaning within double quotes (@pxref{Shell Expansions}).
459 The backslash retains its special meaning only when followed by one of
460 the following characters:
461 @samp{$}, @samp{`}, @samp{"}, @samp{\}, or @code{newline}.
462 Within double quotes, backslashes that are followed by one of these
463 characters are removed. Backslashes preceding characters without a
464 special meaning are left unmodified.
465 A double quote may be quoted within double quotes by preceding it with
466 a backslash.
467 If enabled, history expansion will be performed unless an @samp{!}
468 appearing in double quotes is escaped using a backslash.
469 The backslash preceding the @samp{!} is not removed.
470
471 The special parameters @samp{*} and @samp{@@} have special meaning
472 when in double quotes (@pxref{Shell Parameter Expansion}).
473
474 @node ANSI-C Quoting
475 @subsubsection ANSI-C Quoting
476 @cindex quoting, ANSI
477
478 Character sequences of the form $'@var{string}' are treated as a special
479 kind of single quotes.
480 The sequence expands to @var{string}, with backslash-escaped characters
481 in @var{string} replaced as specified by the ANSI C standard.
482 Backslash escape sequences, if present, are decoded as follows:
483
484 @table @code
485 @item \a
486 alert (bell)
487 @item \b
488 backspace
489 @item \e
490 @itemx \E
491 an escape character (not ANSI C)
492 @item \f
493 form feed
494 @item \n
495 newline
496 @item \r
497 carriage return
498 @item \t
499 horizontal tab
500 @item \v
501 vertical tab
502 @item \\
503 backslash
504 @item \'
505 single quote
506 @item \"
507 double quote
508 @item \?
509 question mark
510 @item \@var{nnn}
511 the eight-bit character whose value is the octal value @var{nnn}
512 (one to three octal digits)
513 @item \x@var{HH}
514 the eight-bit character whose value is the hexadecimal value @var{HH}
515 (one or two hex digits)
516 @item \u@var{HHHH}
517 the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value
518 @var{HHHH} (one to four hex digits)
519 @item \U@var{HHHHHHHH}
520 the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value
521 @var{HHHHHHHH} (one to eight hex digits)
522 @item \c@var{x}
523 a control-@var{x} character
524 @end table
525
526 @noindent
527 The expanded result is single-quoted, as if the dollar sign had not
528 been present.
529
530 @node Locale Translation
531 @subsubsection Locale-Specific Translation
532 @cindex localization
533 @cindex internationalization
534 @cindex native languages
535 @cindex translation, native languages
536 @menu
537 * Creating Internationalized Scripts:: How to use translations and different
538 languages in your scripts.
539 @end menu
540
541 Prefixing a double-quoted string with a dollar sign (@samp{$}), such
542 as @verb{|$"hello, world"|},
543 will cause the string to be translated according to the current locale.
544 The @code{gettext} infrastructure performs the lookup and
545 translation, using the @code{LC_MESSAGES}, @code{TEXTDOMAINDIR},
546 and @code{TEXTDOMAIN} shell variables, as explained below.
547 See the gettext documentation for additional details not covered here.
548 If the current locale is @code{C} or @code{POSIX},
549 if there are no translations available,
550 of if the string is not translated,
551 the dollar sign is ignored.
552 Since this is a form of double quoting, the string remains double-quoted
553 by default, whether or not it is translated and replaced.
554 If the @code{noexpand_translation} option is enabled
555 using the @code{shopt} builtin (@pxref{The Shopt Builtin}),
556 translated strings are single-quoted instead of double-quoted.
557
558 The rest of this section is a brief overview of how you use gettext to
559 create translations for strings in a shell script named @var{scriptname}.
560 There are more details in the gettext documentation.
561
562 @node Creating Internationalized Scripts
563 @cindex internationalized scripts
564 @cindex string translations
565 Once you've marked the strings in your script
566 that you want to translate using $"...",
567 you create a gettext "template" file using the command
568
569 @example
570 bash --dump-po-strings @var{scriptname} > @var{domain}.pot
571 @end example
572
573 @noindent
574 The @var{domain} is your @dfn{message domain}.
575 It's just an arbitrary string that's used to identify the files gettext
576 needs, like a package or script name.
577 It needs to be unique among all
578 the message domains on systems where you install the translations, so
579 gettext knows which translations correspond to your script.
580 You'll use the template file to create translations for each target language.
581 The template file conventionally has the suffix @samp{.pot}.
582
583 You copy this template file to a separate file for each target language
584 you want to support (called "PO" files, which use the suffix @samp{.po}).
585 PO files use various naming conventions, but
586 when you are working to translate a template file into a particular
587 language, you first copy the template file to a file whose name is the
588 language you want to target, with the @samp{.po} suffix.
589 For instance, the Spanish translations of your strings would be
590 in a file named @samp{es.po}, and to get started using a message
591 domain named "example," you would run
592
593 @example
594 cp example.pot es.po
595 @end example
596
597 @noindent
598 Ultimately, PO files are often named @var{domain}.po and installed in
599 directories that contain multiple translation files for a particular language.
600
601 Whichever naming convention you choose, you will need to translate the
602 strings in the PO files into the appropriate languages.
603 This has to be done manually.
604
605 When you have the translations and PO files complete, you'll use the
606 gettext tools to produce what are called "MO" files, which are compiled
607 versions of the PO files the gettext tools use to look up translations
608 efficiently.
609 MO files are also called "message catalog" files.
610 You use the @command{msgfmt} program to do this.
611 For instance, if you had a file with Spanish translations, you could run
612
613 @example
614 msgfmt -o es.mo es.po
615 @end example
616
617 @noindent
618 to produce the corresponding MO file.
619
620 Once you have the MO files, you decide where to install them and use the
621 @code{TEXTDOMAINDIR} shell variable to tell the gettext tools where they are.
622 Make sure to use the same message domain to name the MO files
623 as you did for the PO files when you install them.
624
625 @vindex LANG
626 @vindex LC_MESSAGES
627 @vindex TEXTDOMAIN
628 @vindex TEXTDOMAINDIR
629 Your users will use the @env{LANG} or @env{LC_MESSAGES} shell variables to
630 select the desired language.
631
632 You set the @env{TEXTDOMAIN} variable to the script's message domain.
633 As above, you use the message domain to name your translation files.
634
635 You, or possibly your users, set the @env{TEXTDOMAINDIR} variable to the
636 name of a directory where the message catalog files are stored.
637 If you install the message files into the system's standard message catalog
638 directory, you don't need to worry about this variable.
639
640 The directory where the message catalog files are stored varies between
641 systems.
642 Some use the message catalog selected by the @env{LC_MESSAGES}
643 shell variable.
644 Others create the name of the message catalog from the value of the
645 @env{TEXTDOMAIN} shell variable, possibly adding the @samp{.mo} suffix.
646 If you use the @env{TEXTDOMAIN} variable, you may need to set the
647 @env{TEXTDOMAINDIR} variable to the location of the message catalog files,
648 as above.
649 It's common to use both variables in this fashion:
650 @env{$TEXTDOMAINDIR}/@env{$LC_MESSAGES}/LC_MESSAGES/@env{$TEXTDOMAIN}.mo.
651
652 If you used that last convention, and you wanted to store the message
653 catalog files with Spanish (es) and Esperanto (eo) translations into a
654 local directory you use for custom translation files, you could run
655
656 @example
657 TEXTDOMAIN=example
658 TEXTDOMAINDIR=/usr/local/share/locale
659
660 cp es.mo $@{TEXTDOMAINDIR@}/es/LC_MESSAGES/$@{TEXTDOMAIN@}.mo
661 cp eo.mo $@{TEXTDOMAINDIR@}/eo/LC_MESSAGES/$@{TEXTDOMAIN@}.mo
662 @end example
663
664 When all of this is done, and the message catalog files containing the
665 compiled translations are installed in the correct location,
666 your users will be able to see translated strings
667 in any of the supported languages by setting the @env{LANG} or
668 @env{LC_MESSAGES} environment variables before running your script.
669
670 @node Comments
671 @subsection Comments
672 @cindex comments, shell
673
674 In a non-interactive shell, or an interactive shell in which the
675 @code{interactive_comments} option to the @code{shopt}
676 builtin is enabled (@pxref{The Shopt Builtin}),
677 a word beginning with @samp{#}
678 causes that word and all remaining characters on that line to
679 be ignored. An interactive shell without the @code{interactive_comments}
680 option enabled does not allow comments. The @code{interactive_comments}
681 option is on by default in interactive shells.
682 @xref{Interactive Shells}, for a description of what makes
683 a shell interactive.
684
685 @node Shell Commands
686 @section Shell Commands
687 @cindex commands, shell
688
689 A simple shell command such as @code{echo a b c} consists of the command
690 itself followed by arguments, separated by spaces.
691
692 More complex shell commands are composed of simple commands arranged together
693 in a variety of ways: in a pipeline in which the output of one command
694 becomes the input of a second, in a loop or conditional construct, or in
695 some other grouping.
696
697 @menu
698 * Reserved Words:: Words that have special meaning to the shell.
699 * Simple Commands:: The most common type of command.
700 * Pipelines:: Connecting the input and output of several
701 commands.
702 * Lists:: How to execute commands sequentially.
703 * Compound Commands:: Shell commands for control flow.
704 * Coprocesses:: Two-way communication between commands.
705 * GNU Parallel:: Running commands in parallel.
706 @end menu
707
708 @node Reserved Words
709 @subsection Reserved Words
710 @cindex reserved words
711
712 Reserved words are words that have special meaning to the shell.
713 They are used to begin and end the shell's compound commands.
714
715 The following words are recognized as reserved when unquoted and
716 the first word of a command (see below for exceptions):
717
718 @multitable @columnfractions .1 .1 .1 .1 .12 .1
719 @item @code{if} @tab @code{then} @tab @code{elif}
720 @tab @code{else} @tab @code{fi} @tab @code{time}
721 @item @code{for} @tab @code{in} @tab @code{until}
722 @tab @code{while} @tab @code{do} @tab @code{done}
723 @item @code{case} @tab @code{esac} @tab @code{coproc}
724 @tab @code{select} @tab @code{function}
725 @item @code{@{} @tab @code{@}} @tab @code{[[} @tab @code{]]} @tab @code{!}
726 @end multitable
727
728 @noindent
729 @code{in} is recognized as a reserved word if it is the third word of a
730 @code{case} or @code{select} command.
731 @code{in} and @code{do} are recognized as reserved
732 words if they are the third word in a @code{for} command.
733
734 @node Simple Commands
735 @subsection Simple Commands
736 @cindex commands, simple
737
738 A simple command is the kind of command encountered most often.
739 It's just a sequence of words separated by @code{blank}s, terminated
740 by one of the shell's control operators (@pxref{Definitions}). The
741 first word generally specifies a command to be executed, with the
742 rest of the words being that command's arguments.
743
744 The return status (@pxref{Exit Status}) of a simple command is
745 its exit status as provided
746 by the @sc{posix} 1003.1 @code{waitpid} function, or 128+@var{n} if
747 the command was terminated by signal @var{n}.
748
749 @node Pipelines
750 @subsection Pipelines
751 @cindex pipeline
752 @cindex commands, pipelines
753
754 A @code{pipeline} is a sequence of one or more commands separated by
755 one of the control operators @samp{|} or @samp{|&}.
756
757 @rwindex time
758 @rwindex !
759 @cindex command timing
760 The format for a pipeline is
761 @example
762 [time [-p]] [!] @var{command1} [ | or |& @var{command2} ] @dots{}
763 @end example
764
765 @noindent
766 The output of each command in the pipeline is connected via a pipe
767 to the input of the next command.
768 That is, each command reads the previous command's output. This
769 connection is performed before any redirections specified by
770 @var{command1}.
771
772 If @samp{|&} is used, @var{command1}'s standard error, in addition to
773 its standard output, is connected to
774 @var{command2}'s standard input through the pipe;
775 it is shorthand for @code{2>&1 |}.
776 This implicit redirection of the standard error to the standard output is
777 performed after any redirections specified by @var{command1}.
778
779 The reserved word @code{time} causes timing statistics
780 to be printed for the pipeline once it finishes.
781 The statistics currently consist of elapsed (wall-clock) time and
782 user and system time consumed by the command's execution.
783 The @option{-p} option changes the output format to that specified
784 by @sc{posix}.
785 When the shell is in @sc{posix} mode (@pxref{Bash POSIX Mode}),
786 it does not recognize @code{time} as a reserved word if the next
787 token begins with a @samp{-}.
788 The @env{TIMEFORMAT} variable may be set to a format string that
789 specifies how the timing information should be displayed.
790 @xref{Bash Variables}, for a description of the available formats.
791 The use of @code{time} as a reserved word permits the timing of
792 shell builtins, shell functions, and pipelines. An external
793 @code{time} command cannot time these easily.
794
795 When the shell is in @sc{posix} mode (@pxref{Bash POSIX Mode}), @code{time}
796 may be followed by a newline. In this case, the shell displays the
797 total user and system time consumed by the shell and its children.
798 The @env{TIMEFORMAT} variable may be used to specify the format of
799 the time information.
800
801 If the pipeline is not executed asynchronously (@pxref{Lists}), the
802 shell waits for all commands in the pipeline to complete.
803
804 Each command in a pipeline is executed in its own @dfn{subshell}, which is a
805 separate process (@pxref{Command Execution Environment}).
806 If the @code{lastpipe} option is enabled using the @code{shopt} builtin
807 (@pxref{The Shopt Builtin}),
808 the last element of a pipeline may be run by the shell process
809 when job control is not active.
810
811 The exit
812 status of a pipeline is the exit status of the last command in the
813 pipeline, unless the @code{pipefail} option is enabled
814 (@pxref{The Set Builtin}).
815 If @code{pipefail} is enabled, the pipeline's return status is the
816 value of the last (rightmost) command to exit with a non-zero status,
817 or zero if all commands exit successfully.
818 If the reserved word @samp{!} precedes the pipeline, the
819 exit status is the logical negation of the exit status as described
820 above.
821 The shell waits for all commands in the pipeline to terminate before
822 returning a value.
823
824 @node Lists
825 @subsection Lists of Commands
826 @cindex commands, lists
827
828 A @code{list} is a sequence of one or more pipelines separated by one
829 of the operators @samp{;}, @samp{&}, @samp{&&}, or @samp{||},
830 and optionally terminated by one of @samp{;}, @samp{&}, or a
831 @code{newline}.
832
833 Of these list operators, @samp{&&} and @samp{||}
834 have equal precedence, followed by @samp{;} and @samp{&},
835 which have equal precedence.
836
837 A sequence of one or more newlines may appear in a @code{list}
838 to delimit commands, equivalent to a semicolon.
839
840 If a command is terminated by the control operator @samp{&},
841 the shell executes the command asynchronously in a subshell.
842 This is known as executing the command in the @dfn{background},
843 and these are referred to as @dfn{asynchronous} commands.
844 The shell does not wait for the command to finish, and the return
845 status is 0 (true).
846 When job control is not active (@pxref{Job Control}),
847 the standard input for asynchronous commands, in the absence of any
848 explicit redirections, is redirected from @code{/dev/null}.
849
850 Commands separated by a @samp{;} are executed sequentially; the shell
851 waits for each command to terminate in turn. The return status is the
852 exit status of the last command executed.
853
854 @sc{and} and @sc{or} lists are sequences of one or more pipelines
855 separated by the control operators @samp{&&} and @samp{||},
856 respectively. @sc{and} and @sc{or} lists are executed with left
857 associativity.
858
859 An @sc{and} list has the form
860 @example
861 @var{command1} && @var{command2}
862 @end example
863
864 @noindent
865 @var{command2} is executed if, and only if, @var{command1}
866 returns an exit status of zero (success).
867
868 An @sc{or} list has the form
869 @example
870 @var{command1} || @var{command2}
871 @end example
872
873 @noindent
874 @var{command2} is executed if, and only if, @var{command1}
875 returns a non-zero exit status.
876
877 The return status of
878 @sc{and} and @sc{or} lists is the exit status of the last command
879 executed in the list.
880
881 @node Compound Commands
882 @subsection Compound Commands
883 @cindex commands, compound
884
885 @menu
886 * Looping Constructs:: Shell commands for iterative action.
887 * Conditional Constructs:: Shell commands for conditional execution.
888 * Command Grouping:: Ways to group commands.
889 @end menu
890
891 Compound commands are the shell programming language constructs.
892 Each construct begins with a reserved word or control operator and is
893 terminated by a corresponding reserved word or operator.
894 Any redirections (@pxref{Redirections}) associated with a compound command
895 apply to all commands within that compound command unless explicitly overridden.
896
897 In most cases a list of commands in a compound command's description may be
898 separated from the rest of the command by one or more newlines, and may be
899 followed by a newline in place of a semicolon.
900
901 Bash provides looping constructs, conditional commands, and mechanisms
902 to group commands and execute them as a unit.
903
904 @node Looping Constructs
905 @subsubsection Looping Constructs
906 @cindex commands, looping
907
908 Bash supports the following looping constructs.
909
910 Note that wherever a @samp{;} appears in the description of a
911 command's syntax, it may be replaced with one or more newlines.
912
913 @table @code
914 @item until
915 @rwindex until
916 @rwindex do
917 @rwindex done
918 The syntax of the @code{until} command is:
919
920 @example
921 until @var{test-commands}; do @var{consequent-commands}; done
922 @end example
923
924 Execute @var{consequent-commands} as long as
925 @var{test-commands} has an exit status which is not zero.
926 The return status is the exit status of the last command executed
927 in @var{consequent-commands}, or zero if none was executed.
928
929 @item while
930 @rwindex while
931 The syntax of the @code{while} command is:
932
933 @example
934 while @var{test-commands}; do @var{consequent-commands}; done
935 @end example
936
937 Execute @var{consequent-commands} as long as
938 @var{test-commands} has an exit status of zero.
939 The return status is the exit status of the last command executed
940 in @var{consequent-commands}, or zero if none was executed.
941
942 @item for
943 @rwindex for
944 The syntax of the @code{for} command is:
945
946 @example
947 for @var{name} [ [in [@var{words} @dots{}] ] ; ] do @var{commands}; done
948 @end example
949
950 Expand @var{words} (@pxref{Shell Expansions}), and execute @var{commands}
951 once for each member
952 in the resultant list, with @var{name} bound to the current member.
953 If @samp{in @var{words}} is not present, the @code{for} command
954 executes the @var{commands} once for each positional parameter that is
955 set, as if @samp{in "$@@"} had been specified
956 (@pxref{Special Parameters}).
957
958 The return status is the exit status of the last command that executes.
959 If there are no items in the expansion of @var{words}, no commands are
960 executed, and the return status is zero.
961
962 An alternate form of the @code{for} command is also supported:
963
964 @example
965 for (( @var{expr1} ; @var{expr2} ; @var{expr3} )) ; do @var{commands} ; done
966 @end example
967
968 First, the arithmetic expression @var{expr1} is evaluated according
969 to the rules described below (@pxref{Shell Arithmetic}).
970 The arithmetic expression @var{expr2} is then evaluated repeatedly
971 until it evaluates to zero.
972 Each time @var{expr2} evaluates to a non-zero value, @var{commands} are
973 executed and the arithmetic expression @var{expr3} is evaluated.
974 If any expression is omitted, it behaves as if it evaluates to 1.
975 The return value is the exit status of the last command in @var{commands}
976 that is executed, or false if any of the expressions is invalid.
977 @end table
978
979 The @code{break} and @code{continue} builtins (@pxref{Bourne Shell Builtins})
980 may be used to control loop execution.
981
982 @node Conditional Constructs
983 @subsubsection Conditional Constructs
984 @cindex commands, conditional
985
986 @table @code
987 @item if
988 @rwindex if
989 @rwindex then
990 @rwindex else
991 @rwindex elif
992 @rwindex fi
993 The syntax of the @code{if} command is:
994
995 @example
996 if @var{test-commands}; then
997 @var{consequent-commands};
998 [elif @var{more-test-commands}; then
999 @var{more-consequents};]
1000 [else @var{alternate-consequents};]
1001 fi
1002 @end example
1003
1004 The @var{test-commands} list is executed, and if its return status is zero,
1005 the @var{consequent-commands} list is executed.
1006 If @var{test-commands} returns a non-zero status, each @code{elif} list
1007 is executed in turn, and if its exit status is zero,
1008 the corresponding @var{more-consequents} is executed and the
1009 command completes.
1010 If @samp{else @var{alternate-consequents}} is present, and
1011 the final command in the final @code{if} or @code{elif} clause
1012 has a non-zero exit status, then @var{alternate-consequents} is executed.
1013 The return status is the exit status of the last command executed, or
1014 zero if no condition tested true.
1015
1016 @item case
1017 @rwindex case
1018 @rwindex in
1019 @rwindex esac
1020 The syntax of the @code{case} command is:
1021
1022 @example
1023 case @var{word} in
1024 [ [(] @var{pattern} [| @var{pattern}]@dots{}) @var{command-list} ;;]@dots{}
1025 esac
1026 @end example
1027
1028 @code{case} will selectively execute the @var{command-list} corresponding to
1029 the first @var{pattern} that matches @var{word}.
1030 The match is performed according
1031 to the rules described below in @ref{Pattern Matching}.
1032 If the @code{nocasematch} shell option
1033 (see the description of @code{shopt} in @ref{The Shopt Builtin})
1034 is enabled, the match is performed without regard to the case
1035 of alphabetic characters.
1036 The @samp{|} is used to separate multiple patterns, and the @samp{)}
1037 operator terminates a pattern list.
1038 A list of patterns and an associated command-list is known
1039 as a @var{clause}.
1040
1041 Each clause must be terminated with @samp{;;}, @samp{;&}, or @samp{;;&}.
1042 The @var{word} undergoes tilde expansion, parameter expansion, command
1043 substitution, arithmetic expansion, and quote removal
1044 (@pxref{Shell Parameter Expansion})
1045 before matching is attempted.
1046 Each @var{pattern} undergoes tilde expansion, parameter expansion,
1047 command substitution, arithmetic expansion, process substitution, and
1048 quote removal.
1049
1050 There may be an arbitrary number of @code{case} clauses, each terminated
1051 by a @samp{;;}, @samp{;&}, or @samp{;;&}.
1052 The first pattern that matches determines the
1053 command-list that is executed.
1054 It's a common idiom to use @samp{*} as the final pattern to define the
1055 default case, since that pattern will always match.
1056
1057 Here is an example using @code{case} in a script that could be used to
1058 describe one interesting feature of an animal:
1059
1060 @example
1061 echo -n "Enter the name of an animal: "
1062 read ANIMAL
1063 echo -n "The $ANIMAL has "
1064 case $ANIMAL in
1065 horse | dog | cat) echo -n "four";;
1066 man | kangaroo ) echo -n "two";;
1067 *) echo -n "an unknown number of";;
1068 esac
1069 echo " legs."
1070 @end example
1071
1072 @noindent
1073
1074 If the @samp{;;} operator is used, no subsequent matches are attempted after
1075 the first pattern match.
1076 Using @samp{;&} in place of @samp{;;} causes execution to continue with
1077 the @var{command-list} associated with the next clause, if any.
1078 Using @samp{;;&} in place of @samp{;;} causes the shell to test the patterns
1079 in the next clause, if any, and execute any associated @var{command-list}
1080 on a successful match,
1081 continuing the case statement execution as if the pattern list had not matched.
1082
1083 The return status is zero if no @var{pattern} is matched. Otherwise, the
1084 return status is the exit status of the @var{command-list} executed.
1085
1086 @item select
1087 @rwindex select
1088
1089 The @code{select} construct allows the easy generation of menus.
1090 It has almost the same syntax as the @code{for} command:
1091
1092 @example
1093 select @var{name} [in @var{words} @dots{}]; do @var{commands}; done
1094 @end example
1095
1096 The list of words following @code{in} is expanded, generating a list
1097 of items. The set of expanded words is printed on the standard
1098 error output stream, each preceded by a number. If the
1099 @samp{in @var{words}} is omitted, the positional parameters are printed,
1100 as if @samp{in "$@@"} had been specified.
1101 The @env{PS3} prompt is then displayed and a line is read from the
1102 standard input.
1103 If the line consists of a number corresponding to one of the displayed
1104 words, then the value of @var{name} is set to that word.
1105 If the line is empty, the words and prompt are displayed again.
1106 If @code{EOF} is read, the @code{select} command completes.
1107 Any other value read causes @var{name} to be set to null.
1108 The line read is saved in the variable @env{REPLY}.
1109
1110 The @var{commands} are executed after each selection until a
1111 @code{break} command is executed, at which
1112 point the @code{select} command completes.
1113
1114 Here is an example that allows the user to pick a filename from the
1115 current directory, and displays the name and index of the file
1116 selected.
1117
1118 @example
1119 select fname in *;
1120 do
1121 echo you picked $fname \($REPLY\)
1122 break;
1123 done
1124 @end example
1125
1126 @item ((@dots{}))
1127 @example
1128 (( @var{expression} ))
1129 @end example
1130
1131 The arithmetic @var{expression} is evaluated according to the rules
1132 described below (@pxref{Shell Arithmetic}).
1133 The @var{expression} undergoes the same expansions
1134 as if it were within double quotes,
1135 but double quote characters in @var{expression} are not treated specially
1136 are removed.
1137 If the value of the expression is non-zero, the return status is 0;
1138 otherwise the return status is 1.
1139
1140
1141 @item [[@dots{}]]
1142 @rwindex [[
1143 @rwindex ]]
1144 @example
1145 [[ @var{expression} ]]
1146 @end example
1147
1148 Return a status of 0 or 1 depending on the evaluation of
1149 the conditional expression @var{expression}.
1150 Expressions are composed of the primaries described below in
1151 @ref{Bash Conditional Expressions}.
1152 The words between the @code{[[} and @code{]]} do not undergo word splitting
1153 and filename expansion.
1154 The shell performs tilde expansion, parameter and
1155 variable expansion, arithmetic expansion, command substitution, process
1156 substitution, and quote removal on those words
1157 (the expansions that would occur if the words were enclosed in double quotes).
1158 Conditional operators such as @samp{-f} must be unquoted to be recognized
1159 as primaries.
1160
1161 When used with @code{[[}, the @samp{<} and @samp{>} operators sort
1162 lexicographically using the current locale.
1163
1164 When the @samp{==} and @samp{!=} operators are used, the string to the
1165 right of the operator is considered a pattern and matched according
1166 to the rules described below in @ref{Pattern Matching},
1167 as if the @code{extglob} shell option were enabled.
1168 The @samp{=} operator is identical to @samp{==}.
1169 If the @code{nocasematch} shell option
1170 (see the description of @code{shopt} in @ref{The Shopt Builtin})
1171 is enabled, the match is performed without regard to the case
1172 of alphabetic characters.
1173 The return value is 0 if the string matches (@samp{==}) or does not
1174 match (@samp{!=}) the pattern, and 1 otherwise.
1175
1176 If you quote any part of the pattern,
1177 using any of the shell's quoting mechanisms,
1178 the quoted portion is matched literally.
1179 This means every character in the quoted portion matches itself,
1180 instead of having any special pattern matching meaning.
1181
1182 An additional binary operator, @samp{=~}, is available, with the same
1183 precedence as @samp{==} and @samp{!=}.
1184 When you use @samp{=~}, the string to the right of the operator is considered
1185 a @sc{posix} extended regular expression pattern and matched accordingly
1186 (using the @sc{posix} @code{regcomp} and @code{regexec} interfaces
1187 usually described in @i{regex}(3)).
1188 The return value is 0 if the string matches the pattern, and 1 if it does not.
1189 If the regular expression is syntactically incorrect, the conditional
1190 expression returns 2.
1191 If the @code{nocasematch} shell option
1192 (see the description of @code{shopt} in @ref{The Shopt Builtin})
1193 is enabled, the match is performed without regard to the case
1194 of alphabetic characters.
1195
1196 You can quote any part of the pattern
1197 to force the quoted portion to be matched literally
1198 instead of as a regular expression (see above).
1199 If the pattern is stored in a shell variable, quoting the variable
1200 expansion forces the entire pattern to be matched literally.
1201
1202 The pattern will match if it matches any part of the string.
1203 If you want to force the pattern to match the entire string,
1204 anchor the pattern using the @samp{^} and @samp{$} regular expression
1205 operators.
1206
1207 For example, the following will match a line
1208 (stored in the shell variable @code{line})
1209 if there is a sequence of characters anywhere in the value consisting of
1210 any number, including zero, of
1211 characters in the @code{space} character class,
1212 immediately followed by zero or one instances of @samp{a},
1213 then a @samp{b}:
1214
1215 @example
1216 [[ $line =~ [[:space:]]*(a)?b ]]
1217 @end example
1218
1219 @noindent
1220 That means values for @code{line} like
1221 @samp{aab}, @samp{ aaaaaab}, @samp{xaby}, and @samp{ ab}
1222 will all match,
1223 as will a line containing a @samp{b} anywhere in its value.
1224
1225 If you want to match a character that's special to the regular expression
1226 grammar (@samp{^$|[]()\.*+?}), it has to be quoted to remove its special
1227 meaning.
1228 This means that in the pattern @samp{xxx.txt}, the @samp{.} matches any
1229 character in the string (its usual regular expression meaning), but in the
1230 pattern @samp{"xxx.txt"}, it can only match a literal @samp{.}.
1231
1232 Likewise, if you want to include a character in your pattern that has a
1233 special meaning to the regular expression grammar, you must make sure it's
1234 not quoted.
1235 If you want to anchor a pattern at the beginning or end of the string,
1236 for instance, you cannot quote the @samp{^} or @samp{$}
1237 characters using any form of shell quoting.
1238
1239 If you want to match @samp{initial string} at the start of a line,
1240 the following will work:
1241 @example
1242 [[ $line =~ ^"initial string" ]]
1243 @end example
1244 @noindent
1245 but this will not:
1246 @example
1247 [[ $line =~ "^initial string" ]]
1248 @end example
1249 @noindent
1250 because in the second example the @samp{^} is quoted and doesn't have its
1251 usual special meaning.
1252
1253 It is sometimes difficult to specify a regular expression properly
1254 without using quotes, or to keep track of the quoting used by regular
1255 expressions while paying attention to
1256 shell quoting and the shell's quote removal.
1257 Storing the regular expression in a shell variable is often a useful
1258 way to avoid problems with quoting characters that are special to the
1259 shell.
1260 For example, the following is equivalent to the pattern used above:
1261
1262 @example
1263 pattern='[[:space:]]*(a)?b'
1264 [[ $line =~ $pattern ]]
1265 @end example
1266
1267 Shell programmers should take special care with backslashes, since
1268 backslashes are used by both the shell and regular expressions to remove
1269 the special meaning from the following character.
1270 This means that after the shell's word expansions complete
1271 (@pxref{Shell Expansions}),
1272 any backslashes remaining in parts of the pattern
1273 that were originally not quoted can remove the
1274 special meaning of pattern characters.
1275 If any part of the pattern is quoted, the shell does its best to ensure that
1276 the regular expression treats those remaining backslashes as literal,
1277 if they appeared in a quoted portion.
1278
1279 The following two sets of commands are @emph{not} equivalent:
1280
1281 @example
1282 pattern='\.'
1283
1284 [[ . =~ $pattern ]]
1285 [[ . =~ \. ]]
1286
1287 [[ . =~ "$pattern" ]]
1288 [[ . =~ '\.' ]]
1289 @end example
1290
1291 @noindent
1292 The first two matches will succeed, but the second two will not, because
1293 in the second two the backslash will be part of the pattern to be matched.
1294 In the first two examples, the pattern passed to the regular expression
1295 parser is @samp{\.}. The backslash removes the special meaning from
1296 @samp{.}, so the literal @samp{.} matches.
1297 In the second two examples, the pattern passed to the regular expression
1298 parser has the backslash quoted (e.g., @samp{\\\.}), which will not match
1299 the string, since it does not contain a backslash.
1300 If the string in the first examples were anything other than @samp{.}, say
1301 @samp{a}, the pattern would not match, because the quoted @samp{.} in the
1302 pattern loses its special meaning of matching any single character.
1303
1304 Bracket expressions in regular expressions can be sources of errors as well,
1305 since characters that are normally special in regular expressions
1306 lose their special meanings between brackets.
1307 However, you can use bracket expressions to match special pattern characters
1308 without quoting them, so they are sometimes useful for this purpose.
1309
1310 Though it might seem like a strange way to write it, the following pattern
1311 will match a @samp{.} in the string:
1312
1313 @example
1314 [[ . =~ [.] ]]
1315 @end example
1316
1317 The shell performs any word expansions before passing the pattern
1318 to the regular expression functions,
1319 so you can assume that the shell's quoting takes precedence.
1320 As noted above, the regular expression parser will interpret any
1321 unquoted backslashes remaining in the pattern after shell expansion
1322 according to its own rules.
1323 The intention is to avoid making shell programmers quote things twice
1324 as much as possible, so shell quoting should be sufficient to quote
1325 special pattern characters where that's necessary.
1326
1327 The array variable @code{BASH_REMATCH} records which parts of the string
1328 matched the pattern.
1329 The element of @code{BASH_REMATCH} with index 0 contains the portion of
1330 the string matching the entire regular expression.
1331 Substrings matched by parenthesized subexpressions within the regular
1332 expression are saved in the remaining @code{BASH_REMATCH} indices.
1333 The element of @code{BASH_REMATCH} with index @var{n} is the portion of the
1334 string matching the @var{n}th parenthesized subexpression.
1335
1336 Expressions may be combined using the following operators, listed
1337 in decreasing order of precedence:
1338
1339 @table @code
1340 @item ( @var{expression} )
1341 Returns the value of @var{expression}.
1342 This may be used to override the normal precedence of operators.
1343
1344 @item ! @var{expression}
1345 True if @var{expression} is false.
1346
1347 @item @var{expression1} && @var{expression2}
1348 True if both @var{expression1} and @var{expression2} are true.
1349
1350 @item @var{expression1} || @var{expression2}
1351 True if either @var{expression1} or @var{expression2} is true.
1352 @end table
1353
1354 @noindent
1355 The @code{&&} and @code{||} operators do not evaluate @var{expression2} if the
1356 value of @var{expression1} is sufficient to determine the return
1357 value of the entire conditional expression.
1358 @end table
1359
1360 @node Command Grouping
1361 @subsubsection Grouping Commands
1362 @cindex commands, grouping
1363
1364 Bash provides two ways to group a list of commands to be executed
1365 as a unit. When commands are grouped, redirections may be applied
1366 to the entire command list. For example, the output of all the
1367 commands in the list may be redirected to a single stream.
1368
1369 @table @code
1370 @item ()
1371 @example
1372 ( @var{list} )
1373 @end example
1374
1375 Placing a list of commands between parentheses forces the shell to create
1376 a subshell (@pxref{Command Execution Environment}), and each
1377 of the commands in @var{list} is executed in that subshell environment.
1378 Since the @var{list} is executed in a subshell, variable assignments do not
1379 remain in effect after the subshell completes.
1380
1381 @item @{@}
1382 @rwindex @{
1383 @rwindex @}
1384 @example
1385 @{ @var{list}; @}
1386 @end example
1387
1388 Placing a list of commands between curly braces causes the list to
1389 be executed in the current shell context. No subshell is created.
1390 The semicolon (or newline) following @var{list} is required.
1391 @end table
1392
1393 In addition to the creation of a subshell, there is a subtle difference
1394 between these two constructs due to historical reasons. The braces
1395 are reserved words, so they must be separated from the @var{list}
1396 by @code{blank}s or other shell metacharacters.
1397 The parentheses are operators, and are
1398 recognized as separate tokens by the shell even if they are not separated
1399 from the @var{list} by whitespace.
1400
1401 The exit status of both of these constructs is the exit status of
1402 @var{list}.
1403
1404 @node Coprocesses
1405 @subsection Coprocesses
1406 @cindex coprocess
1407
1408 A @code{coprocess} is a shell command preceded by the @code{coproc}
1409 reserved word.
1410 A coprocess is executed asynchronously in a subshell, as if the command
1411 had been terminated with the @samp{&} control operator, with a two-way pipe
1412 established between the executing shell and the coprocess.
1413
1414 The syntax for a coprocess is:
1415
1416 @example
1417 coproc [@var{NAME}] @var{command} [@var{redirections}]
1418 @end example
1419
1420 @noindent
1421 This creates a coprocess named @var{NAME}.
1422 @var{command} may be either a simple command (@pxref{Simple Commands})
1423 or a compound command (@pxref{Compound Commands}).
1424 @var{NAME} is a shell variable name.
1425 If @var{NAME} is not supplied, the default name is @code{COPROC}.
1426
1427 The recommended form to use for a coprocess is
1428
1429 @example
1430 coproc @var{NAME} @{ @var{command}; @}
1431 @end example
1432
1433 @noindent
1434 This form is recommended because simple commands result in the coprocess
1435 always being named @code{COPROC}, and it is simpler to use and more complete
1436 than the other compound commands.
1437
1438 There are other forms of coprocesses:
1439
1440 @example
1441 coproc @var{NAME} @var{compound-command}
1442 coproc @var{compound-command}
1443 coproc @var{simple-command}
1444 @end example
1445
1446 @noindent
1447 If @var{command} is a compound command, @var{NAME} is optional. The
1448 word following @code{coproc} determines whether that word is interpreted
1449 as a variable name: it is interpreted as @var{NAME} if it is not a
1450 reserved word that introduces a compound command.
1451 If @var{command} is a simple command, @var{NAME} is not allowed; this
1452 is to avoid confusion between @var{NAME} and the first word of the simple
1453 command.
1454
1455 When the coprocess is executed, the shell creates an array variable
1456 (@pxref{Arrays})
1457 named @var{NAME} in the context of the executing shell.
1458 The standard output of @var{command}
1459 is connected via a pipe to a file descriptor in the executing shell,
1460 and that file descriptor is assigned to @var{NAME}[0].
1461 The standard input of @var{command}
1462 is connected via a pipe to a file descriptor in the executing shell,
1463 and that file descriptor is assigned to @var{NAME}[1].
1464 This pipe is established before any redirections specified by the
1465 command (@pxref{Redirections}).
1466 The file descriptors can be utilized as arguments to shell commands
1467 and redirections using standard word expansions.
1468 Other than those created to execute command and process substitutions,
1469 the file descriptors are not available in subshells.
1470
1471 The process ID of the shell spawned to execute the coprocess is
1472 available as the value of the variable @env{@var{NAME}_PID}.
1473 The @code{wait}
1474 builtin command may be used to wait for the coprocess to terminate.
1475
1476 Since the coprocess is created as an asynchronous command,
1477 the @code{coproc} command always returns success.
1478 The return status of a coprocess is the exit status of @var{command}.
1479
1480 @node GNU Parallel
1481 @subsection GNU Parallel
1482
1483 There are ways to run commands in parallel that are not built into Bash.
1484 GNU Parallel is a tool to do just that.
1485
1486 GNU Parallel, as its name suggests, can be used to build and run commands
1487 in parallel. You may run the same command with different arguments, whether
1488 they are filenames, usernames, hostnames, or lines read from files. GNU
1489 Parallel provides shorthand references to many of the most common operations
1490 (input lines, various portions of the input line, different ways to specify
1491 the input source, and so on). Parallel can replace @code{xargs} or feed
1492 commands from its input sources to several different instances of Bash.
1493
1494 For a complete description, refer to the GNU Parallel documentation, which
1495 is available at
1496 @url{https://www.gnu.org/software/parallel/parallel_tutorial.html}.
1497
1498 @node Shell Functions
1499 @section Shell Functions
1500 @cindex shell function
1501 @cindex functions, shell
1502
1503 Shell functions are a way to group commands for later execution
1504 using a single name for the group. They are executed just like
1505 a "regular" command.
1506 When the name of a shell function is used as a simple command name,
1507 the list of commands associated with that function name is executed.
1508 Shell functions are executed in the current
1509 shell context; no new process is created to interpret them.
1510
1511 Functions are declared using this syntax:
1512 @rwindex function
1513 @example
1514 @var{fname} () @var{compound-command} [ @var{redirections} ]
1515 @end example
1516
1517 or
1518
1519 @example
1520 function @var{fname} [()] @var{compound-command} [ @var{redirections} ]
1521 @end example
1522
1523 This defines a shell function named @var{fname}. The reserved
1524 word @code{function} is optional.
1525 If the @code{function} reserved
1526 word is supplied, the parentheses are optional.
1527 The @dfn{body} of the function is the compound command
1528 @var{compound-command} (@pxref{Compound Commands}).
1529 That command is usually a @var{list} enclosed between @{ and @}, but
1530 may be any compound command listed above.
1531 If the @code{function} reserved word is used, but the
1532 parentheses are not supplied, the braces are recommended.
1533 @var{compound-command} is executed whenever @var{fname} is specified as the
1534 name of a simple command.
1535 When the shell is in @sc{posix} mode (@pxref{Bash POSIX Mode}),
1536 @var{fname} must be a valid shell name and
1537 may not be the same as one of the special builtins
1538 (@pxref{Special Builtins}).
1539 In default mode, a function name can be any unquoted shell word that does
1540 not contain @samp{$}.
1541 Any redirections (@pxref{Redirections}) associated with the shell function
1542 are performed when the function is executed.
1543 A function definition may be deleted using the @option{-f} option to the
1544 @code{unset} builtin (@pxref{Bourne Shell Builtins}).
1545
1546 The exit status of a function definition is zero unless a syntax error
1547 occurs or a readonly function with the same name already exists.
1548 When executed, the exit status of a function is the exit status of the
1549 last command executed in the body.
1550
1551 Note that for historical reasons, in the most common usage the curly braces
1552 that surround the body of the function must be separated from the body by
1553 @code{blank}s or newlines.
1554 This is because the braces are reserved words and are only recognized
1555 as such when they are separated from the command list
1556 by whitespace or another shell metacharacter.
1557 Also, when using the braces, the @var{list} must be terminated by a semicolon,
1558 a @samp{&}, or a newline.
1559
1560 When a function is executed, the arguments to the
1561 function become the positional parameters
1562 during its execution (@pxref{Positional Parameters}).
1563 The special parameter @samp{#} that expands to the number of
1564 positional parameters is updated to reflect the change.
1565 Special parameter @code{0} is unchanged.
1566 The first element of the @env{FUNCNAME} variable is set to the
1567 name of the function while the function is executing.
1568
1569 All other aspects of the shell execution
1570 environment are identical between a function and its caller
1571 with these exceptions:
1572 the @env{DEBUG} and @env{RETURN} traps
1573 are not inherited unless the function has been given the
1574 @code{trace} attribute using the @code{declare} builtin or
1575 the @code{-o functrace} option has been enabled with
1576 the @code{set} builtin,
1577 (in which case all functions inherit the @env{DEBUG} and @env{RETURN} traps),
1578 and the @env{ERR} trap is not inherited unless the @code{-o errtrace}
1579 shell option has been enabled.
1580 @xref{Bourne Shell Builtins}, for the description of the
1581 @code{trap} builtin.
1582
1583 The @env{FUNCNEST} variable, if set to a numeric value greater
1584 than 0, defines a maximum function nesting level. Function
1585 invocations that exceed the limit cause the entire command to
1586 abort.
1587
1588 If the builtin command @code{return}
1589 is executed in a function, the function completes and
1590 execution resumes with the next command after the function
1591 call.
1592 Any command associated with the @code{RETURN} trap is executed
1593 before execution resumes.
1594 When a function completes, the values of the
1595 positional parameters and the special parameter @samp{#}
1596 are restored to the values they had prior to the function's
1597 execution. If a numeric argument is given to @code{return},
1598 that is the function's return status; otherwise the function's
1599 return status is the exit status of the last command executed
1600 before the @code{return}.
1601
1602 Variables local to the function may be declared with the
1603 @code{local} builtin. These variables are visible only to
1604 the function and the commands it invokes. This is particularly
1605 important when a shell function calls other functions.
1606
1607 Local variables "shadow" variables with the same name declared at
1608 previous scopes. For instance, a local variable declared in a function
1609 hides a global variable of the same name: references and assignments
1610 refer to the local variable, leaving the global variable unmodified.
1611 When the function returns, the global variable is once again visible.
1612
1613 The shell uses @dfn{dynamic scoping} to control a variable's visibility
1614 within functions.
1615 With dynamic scoping, visible variables and their values
1616 are a result of the sequence of function calls that caused execution
1617 to reach the current function.
1618 The value of a variable that a function sees depends
1619 on its value within its caller, if any, whether that caller is
1620 the "global" scope or another shell function.
1621 This is also the value that a local variable
1622 declaration "shadows", and the value that is restored when the function
1623 returns.
1624
1625 For example, if a variable @env{var} is declared as local in function
1626 @code{func1}, and @code{func1} calls another function @code{func2},
1627 references to @env{var} made from within @code{func2} will resolve to the
1628 local variable @env{var} from @code{func1}, shadowing any global variable
1629 named @env{var}.
1630
1631 The following script demonstrates this behavior.
1632 When executed, the script displays
1633
1634 @example
1635 In func2, var = func1 local
1636 @end example
1637
1638 @example
1639 func1()
1640 @{
1641 local var='func1 local'
1642 func2
1643 @}
1644
1645 func2()
1646 @{
1647 echo "In func2, var = $var"
1648 @}
1649
1650 var=global
1651 func1
1652 @end example
1653
1654 The @code{unset} builtin also acts using the same dynamic scope: if a
1655 variable is local to the current scope, @code{unset} will unset it;
1656 otherwise the unset will refer to the variable found in any calling scope
1657 as described above.
1658 If a variable at the current local scope is unset, it will remain so
1659 until it is reset in that scope or until the function returns.
1660 Once the function returns, any instance of the variable at a previous
1661 scope will become visible.
1662 If the unset acts on a variable at a previous scope, any instance of a
1663 variable with that name that had been shadowed will become visible.
1664
1665 Function names and definitions may be listed with the
1666 @option{-f} option to the @code{declare} (@code{typeset})
1667 builtin command (@pxref{Bash Builtins}).
1668 The @option{-F} option to @code{declare} or @code{typeset}
1669 will list the function names only
1670 (and optionally the source file and line number, if the @code{extdebug}
1671 shell option is enabled).
1672 Functions may be exported so that child shell processes
1673 (those created when executing a separate shell invocation)
1674 automatically have them defined with the
1675 @option{-f} option to the @code{export} builtin
1676 (@pxref{Bourne Shell Builtins}).
1677
1678 Functions may be recursive.
1679 The @code{FUNCNEST} variable may be used to limit the depth of the
1680 function call stack and restrict the number of function invocations.
1681 By default, no limit is placed on the number of recursive calls.
1682
1683 @node Shell Parameters
1684 @section Shell Parameters
1685 @cindex parameters
1686 @cindex variable, shell
1687 @cindex shell variable
1688
1689 @menu
1690 * Positional Parameters:: The shell's command-line arguments.
1691 * Special Parameters:: Parameters denoted by special characters.
1692 @end menu
1693
1694 A @dfn{parameter} is an entity that stores values.
1695 It can be a @code{name}, a number, or one of the special characters
1696 listed below.
1697 A @dfn{variable} is a parameter denoted by a @code{name}.
1698 A variable has a @code{value} and zero or more @code{attributes}.
1699 Attributes are assigned using the @code{declare} builtin command
1700 (see the description of the @code{declare} builtin in @ref{Bash Builtins}).
1701
1702 A parameter is set if it has been assigned a value. The null string is
1703 a valid value. Once a variable is set, it may be unset only by using
1704 the @code{unset} builtin command.
1705
1706 A variable may be assigned to by a statement of the form
1707 @example
1708 @var{name}=[@var{value}]
1709 @end example
1710 @noindent
1711 If @var{value}
1712 is not given, the variable is assigned the null string. All
1713 @var{value}s undergo tilde expansion, parameter and variable expansion,
1714 command substitution, arithmetic expansion, and quote
1715 removal (@pxref{Shell Parameter Expansion}).
1716 If the variable has its @code{integer}
1717 attribute set, then @var{value}
1718 is evaluated as an arithmetic expression even if the @code{$((@dots{}))}
1719 expansion is not used (@pxref{Arithmetic Expansion}).
1720 Word splitting and filename expansion are not performed.
1721 Assignment statements may also appear as arguments to the
1722 @code{alias},
1723 @code{declare}, @code{typeset}, @code{export}, @code{readonly},
1724 and @code{local} builtin commands (@dfn{declaration} commands).
1725 When in @sc{posix} mode (@pxref{Bash POSIX Mode}), these builtins may appear
1726 in a command after one or more instances of the @code{command} builtin
1727 and retain these assignment statement properties.
1728
1729 In the context where an assignment statement is assigning a value
1730 to a shell variable or array index (@pxref{Arrays}), the @samp{+=}
1731 operator can be used to
1732 append to or add to the variable's previous value.
1733 This includes arguments to builtin commands such as @code{declare} that
1734 accept assignment statements (declaration commands).
1735 When @samp{+=} is applied to a variable for which the @code{integer} attribute
1736 has been set, @var{value} is evaluated as an arithmetic expression and
1737 added to the variable's current value, which is also evaluated.
1738 When @samp{+=} is applied to an array variable using compound assignment
1739 (@pxref{Arrays}), the
1740 variable's value is not unset (as it is when using @samp{=}), and new
1741 values are appended to the array beginning at one greater than the array's
1742 maximum index (for indexed arrays), or added as additional key-value pairs
1743 in an associative array.
1744 When applied to a string-valued variable, @var{value} is expanded and
1745 appended to the variable's value.
1746
1747 A variable can be assigned the @code{nameref} attribute using the
1748 @option{-n} option to the @code{declare} or @code{local} builtin commands
1749 (@pxref{Bash Builtins})
1750 to create a @dfn{nameref}, or a reference to another variable.
1751 This allows variables to be manipulated indirectly.
1752 Whenever the nameref variable is referenced, assigned to, unset, or has
1753 its attributes modified (other than using or changing the nameref
1754 attribute itself), the
1755 operation is actually performed on the variable specified by the nameref
1756 variable's value.
1757 A nameref is commonly used within shell functions to refer to a variable
1758 whose name is passed as an argument to the function.
1759 For instance, if a variable name is passed to a shell function as its first
1760 argument, running
1761 @example
1762 declare -n ref=$1
1763 @end example
1764 @noindent
1765 inside the function creates a nameref variable @env{ref} whose value is
1766 the variable name passed as the first argument.
1767 References and assignments to @env{ref}, and changes to its attributes,
1768 are treated as references, assignments, and attribute modifications
1769 to the variable whose name was passed as @code{$1}.
1770
1771 If the control variable in a @code{for} loop has the nameref attribute,
1772 the list of words can be a list of shell variables, and a name reference
1773 will be established for each word in the list, in turn, when the loop is
1774 executed.
1775 Array variables cannot be given the nameref attribute.
1776 However, nameref variables can reference array variables and subscripted
1777 array variables.
1778 Namerefs can be unset using the @option{-n} option to the @code{unset} builtin
1779 (@pxref{Bourne Shell Builtins}).
1780 Otherwise, if @code{unset} is executed with the name of a nameref variable
1781 as an argument, the variable referenced by the nameref variable will be unset.
1782
1783 @node Positional Parameters
1784 @subsection Positional Parameters
1785 @cindex parameters, positional
1786
1787 A @dfn{positional parameter} is a parameter denoted by one or more
1788 digits, other than the single digit @code{0}. Positional parameters are
1789 assigned from the shell's arguments when it is invoked,
1790 and may be reassigned using the @code{set} builtin command.
1791 Positional parameter @code{N} may be referenced as @code{$@{N@}}, or
1792 as @code{$N} when @code{N} consists of a single digit.
1793 Positional parameters may not be assigned to with assignment statements.
1794 The @code{set} and @code{shift} builtins are used to set and
1795 unset them (@pxref{Shell Builtin Commands}).
1796 The positional parameters are
1797 temporarily replaced when a shell function is executed
1798 (@pxref{Shell Functions}).
1799
1800 When a positional parameter consisting of more than a single
1801 digit is expanded, it must be enclosed in braces.
1802
1803 @node Special Parameters
1804 @subsection Special Parameters
1805 @cindex parameters, special
1806
1807 The shell treats several parameters specially. These parameters may
1808 only be referenced; assignment to them is not allowed.
1809
1810 @vtable @code
1811
1812 @item *
1813 @vindex $*
1814 ($*) Expands to the positional parameters, starting from one.
1815 When the expansion is not within double quotes, each positional parameter
1816 expands to a separate word.
1817 In contexts where it is performed, those words
1818 are subject to further word splitting and filename expansion.
1819 When the expansion occurs within double quotes, it expands to a single word
1820 with the value of each parameter separated by the first character of the
1821 @env{IFS} special variable. That is, @code{"$*"} is equivalent
1822 to @code{"$1@var{c}$2@var{c}@dots{}"}, where @var{c}
1823 is the first character of the value of the @code{IFS}
1824 variable.
1825 If @env{IFS} is unset, the parameters are separated by spaces.
1826 If @env{IFS} is null, the parameters are joined without intervening
1827 separators.
1828
1829 @item @@
1830 @vindex $@@
1831 ($@@) Expands to the positional parameters, starting from one.
1832 In contexts where word splitting is performed, this expands each
1833 positional parameter to a separate word; if not within double
1834 quotes, these words are subject to word splitting.
1835 In contexts where word splitting is not performed,
1836 this expands to a single word
1837 with each positional parameter separated by a space.
1838 When the
1839 expansion occurs within double quotes, and word splitting is performed,
1840 each parameter expands to a
1841 separate word. That is, @code{"$@@"} is equivalent to
1842 @code{"$1" "$2" @dots{}}.
1843 If the double-quoted expansion occurs within a word, the expansion of
1844 the first parameter is joined with the beginning part of the original
1845 word, and the expansion of the last parameter is joined with the last
1846 part of the original word.
1847 When there are no positional parameters, @code{"$@@"} and
1848 @code{$@@}
1849 expand to nothing (i.e., they are removed).
1850
1851 @item #
1852 @vindex $#
1853 ($#) Expands to the number of positional parameters in decimal.
1854
1855 @item ?
1856 @vindex $?
1857 ($?) Expands to the exit status of the most recently executed foreground
1858 pipeline.
1859
1860 @item -
1861 @vindex $-
1862 ($-, a hyphen.) Expands to the current option flags as specified upon
1863 invocation, by the @code{set}
1864 builtin command, or those set by the shell itself
1865 (such as the @option{-i} option).
1866
1867 @item $
1868 @vindex $$
1869 ($$) Expands to the process @sc{id} of the shell. In a subshell, it
1870 expands to the process @sc{id} of the invoking shell, not the subshell.
1871
1872 @item !
1873 @vindex $!
1874 ($!) Expands to the process @sc{id} of the job most recently placed into the
1875 background, whether executed as an asynchronous command or using
1876 the @code{bg} builtin (@pxref{Job Control Builtins}).
1877
1878 @item 0
1879 @vindex $0
1880 ($0) Expands to the name of the shell or shell script. This is set at
1881 shell initialization. If Bash is invoked with a file of commands
1882 (@pxref{Shell Scripts}), @code{$0} is set to the name of that file.
1883 If Bash is started with the @option{-c} option (@pxref{Invoking Bash}),
1884 then @code{$0} is set to the first argument after the string to be
1885 executed, if one is present. Otherwise, it is set
1886 to the filename used to invoke Bash, as given by argument zero.
1887 @end vtable
1888
1889 @node Shell Expansions
1890 @section Shell Expansions
1891 @cindex expansion
1892
1893 Expansion is performed on the command line after it has been split into
1894 @code{token}s. There are seven kinds of expansion performed:
1895
1896 @itemize @bullet
1897 @item brace expansion
1898 @item tilde expansion
1899 @item parameter and variable expansion
1900 @item command substitution
1901 @item arithmetic expansion
1902 @item word splitting
1903 @item filename expansion
1904 @end itemize
1905
1906 @menu
1907 * Brace Expansion:: Expansion of expressions within braces.
1908 * Tilde Expansion:: Expansion of the ~ character.
1909 * Shell Parameter Expansion:: How Bash expands variables to their values.
1910 * Command Substitution:: Using the output of a command as an argument.
1911 * Arithmetic Expansion:: How to use arithmetic in shell expansions.
1912 * Process Substitution:: A way to write and read to and from a
1913 command.
1914 * Word Splitting:: How the results of expansion are split into separate
1915 arguments.
1916 * Filename Expansion:: A shorthand for specifying filenames matching patterns.
1917 * Quote Removal:: How and when quote characters are removed from
1918 words.
1919 @end menu
1920
1921 The order of expansions is:
1922 brace expansion;
1923 tilde expansion, parameter and variable expansion, arithmetic expansion,
1924 and command substitution (done in a left-to-right fashion);
1925 word splitting;
1926 and filename expansion.
1927
1928 On systems that can support it, there is an additional expansion
1929 available: @dfn{process substitution}.
1930 This is performed at the
1931 same time as tilde, parameter, variable, and arithmetic expansion and
1932 command substitution.
1933
1934 After these expansions are performed, quote characters present in the
1935 original word are removed unless they have been quoted themselves
1936 (@dfn{quote removal}).
1937
1938 Only brace expansion, word splitting, and filename expansion
1939 can increase the number of words of the expansion; other expansions
1940 expand a single word to a single word.
1941 The only exceptions to this are the expansions of
1942 @code{"$@@"} and @code{$*} (@pxref{Special Parameters}), and
1943 @code{"$@{@var{name}[@@]@}"} and @code{$@{@var{name}[*]@}}
1944 (@pxref{Arrays}).
1945
1946 After all expansions, @code{quote removal} (@pxref{Quote Removal})
1947 is performed.
1948
1949 @node Brace Expansion
1950 @subsection Brace Expansion
1951 @cindex brace expansion
1952 @cindex expansion, brace
1953
1954 Brace expansion is a mechanism by which arbitrary strings may be generated.
1955 This mechanism is similar to
1956 @dfn{filename expansion} (@pxref{Filename Expansion}),
1957 but the filenames generated need not exist.
1958 Patterns to be brace expanded take the form of an optional @var{preamble},
1959 followed by either a series of comma-separated strings or a sequence expression
1960 between a pair of braces,
1961 followed by an optional @var{postscript}.
1962 The preamble is prefixed to each string contained within the braces, and
1963 the postscript is then appended to each resulting string, expanding left
1964 to right.
1965
1966 Brace expansions may be nested.
1967 The results of each expanded string are not sorted; left to right order
1968 is preserved.
1969 For example,
1970 @example
1971 bash$ echo a@{d,c,b@}e
1972 ade ace abe
1973 @end example
1974
1975 A sequence expression takes the form @code{@{@var{x}..@var{y}[..@var{incr}]@}},
1976 where @var{x} and @var{y} are either integers or letters,
1977 and @var{incr}, an optional increment, is an integer.
1978 When integers are supplied, the expression expands to each number between
1979 @var{x} and @var{y}, inclusive.
1980 Supplied integers may be prefixed with @samp{0} to force each term to have the
1981 same width.
1982 When either @var{x} or @var{y} begins with a zero, the shell
1983 attempts to force all generated terms to contain the same number of digits,
1984 zero-padding where necessary.
1985 When letters are supplied, the expression expands to each character
1986 lexicographically between @var{x} and @var{y}, inclusive,
1987 using the default C locale.
1988 Note that both @var{x} and @var{y} must be of the same type
1989 (integer or letter).
1990 When the increment is supplied, it is used as the difference between
1991 each term. The default increment is 1 or -1 as appropriate.
1992
1993 Brace expansion is performed before any other expansions,
1994 and any characters special to other expansions are preserved
1995 in the result. It is strictly textual. Bash
1996 does not apply any syntactic interpretation to the context of the
1997 expansion or the text between the braces.
1998
1999 A correctly-formed brace expansion must contain unquoted opening
2000 and closing braces, and at least one unquoted comma or a valid
2001 sequence expression.
2002 Any incorrectly formed brace expansion is left unchanged.
2003
2004 A @{ or @samp{,} may be quoted with a backslash to prevent its
2005 being considered part of a brace expression.
2006 To avoid conflicts with parameter expansion, the string @samp{$@{}
2007 is not considered eligible for brace expansion,
2008 and inhibits brace expansion until the closing @samp{@}}.
2009
2010 This construct is typically used as shorthand when the common
2011 prefix of the strings to be generated is longer than in the
2012 above example:
2013 @example
2014 mkdir /usr/local/src/bash/@{old,new,dist,bugs@}
2015 @end example
2016 or
2017 @example
2018 chown root /usr/@{ucb/@{ex,edit@},lib/@{ex?.?*,how_ex@}@}
2019 @end example
2020
2021 @node Tilde Expansion
2022 @subsection Tilde Expansion
2023 @cindex tilde expansion
2024 @cindex expansion, tilde
2025
2026 If a word begins with an unquoted tilde character (@samp{~}), all of the
2027 characters up to the first unquoted slash (or all characters,
2028 if there is no unquoted slash) are considered a @dfn{tilde-prefix}.
2029 If none of the characters in the tilde-prefix are quoted, the
2030 characters in the tilde-prefix following the tilde are treated as a
2031 possible @dfn{login name}.
2032 If this login name is the null string, the tilde is replaced with the
2033 value of the @env{HOME} shell variable.
2034 If @env{HOME} is unset, the home directory of the user executing the
2035 shell is substituted instead.
2036 Otherwise, the tilde-prefix is replaced with the home directory
2037 associated with the specified login name.
2038
2039 If the tilde-prefix is @samp{~+}, the value of
2040 the shell variable @env{PWD} replaces the tilde-prefix.
2041 If the tilde-prefix is @samp{~-}, the value of the shell variable
2042 @env{OLDPWD}, if it is set, is substituted.
2043
2044 If the characters following the tilde in the tilde-prefix consist of a
2045 number @var{N}, optionally prefixed by a @samp{+} or a @samp{-},
2046 the tilde-prefix is replaced with the
2047 corresponding element from the directory stack, as it would be displayed
2048 by the @code{dirs} builtin invoked with the characters following tilde
2049 in the tilde-prefix as an argument (@pxref{The Directory Stack}).
2050 If the tilde-prefix, sans the tilde, consists of a number without a
2051 leading @samp{+} or @samp{-}, @samp{+} is assumed.
2052
2053 If the login name is invalid, or the tilde expansion fails, the word is
2054 left unchanged.
2055
2056 Each variable assignment is checked for unquoted tilde-prefixes immediately
2057 following a @samp{:} or the first @samp{=}.
2058 In these cases, tilde expansion is also performed.
2059 Consequently, one may use filenames with tildes in assignments to
2060 @env{PATH}, @env{MAILPATH}, and @env{CDPATH},
2061 and the shell assigns the expanded value.
2062
2063 The following table shows how Bash treats unquoted tilde-prefixes:
2064
2065 @table @code
2066 @item ~
2067 The value of @code{$HOME}
2068 @item ~/foo
2069 @file{$HOME/foo}
2070
2071 @item ~fred/foo
2072 The subdirectory @code{foo} of the home directory of the user
2073 @code{fred}
2074
2075 @item ~+/foo
2076 @file{$PWD/foo}
2077
2078 @item ~-/foo
2079 @file{$@{OLDPWD-'~-'@}/foo}
2080
2081 @item ~@var{N}
2082 The string that would be displayed by @samp{dirs +@var{N}}
2083
2084 @item ~+@var{N}
2085 The string that would be displayed by @samp{dirs +@var{N}}
2086
2087 @item ~-@var{N}
2088 The string that would be displayed by @samp{dirs -@var{N}}
2089 @end table
2090
2091 Bash also performs tilde expansion on words satisfying the conditions of
2092 variable assignments (@pxref{Shell Parameters})
2093 when they appear as arguments to simple commands.
2094 Bash does not do this, except for the declaration commands listed
2095 above, when in @sc{posix} mode.
2096
2097 @node Shell Parameter Expansion
2098 @subsection Shell Parameter Expansion
2099 @cindex parameter expansion
2100 @cindex expansion, parameter
2101
2102 The @samp{$} character introduces parameter expansion,
2103 command substitution, or arithmetic expansion. The parameter name
2104 or symbol to be expanded may be enclosed in braces, which
2105 are optional but serve to protect the variable to be expanded from
2106 characters immediately following it which could be
2107 interpreted as part of the name.
2108
2109 When braces are used, the matching ending brace is the first @samp{@}}
2110 not escaped by a backslash or within a quoted string, and not within an
2111 embedded arithmetic expansion, command substitution, or parameter
2112 expansion.
2113
2114 The basic form of parameter expansion is $@{@var{parameter}@}.
2115 The value of @var{parameter} is substituted.
2116 The @var{parameter} is a shell parameter as described above
2117 (@pxref{Shell Parameters}) or an array reference (@pxref{Arrays}).
2118 The braces are required when @var{parameter}
2119 is a positional parameter with more than one digit,
2120 or when @var{parameter} is followed by a character that is not to be
2121 interpreted as part of its name.
2122
2123 If the first character of @var{parameter} is an exclamation point (!),
2124 and @var{parameter} is not a nameref,
2125 it introduces a level of indirection.
2126 Bash uses the value formed by expanding the rest of
2127 @var{parameter} as the new @var{parameter}; this is then
2128 expanded and that value is used in the rest of the expansion, rather
2129 than the expansion of the original @var{parameter}.
2130 This is known as @code{indirect expansion}.
2131 The value is subject to tilde expansion,
2132 parameter expansion, command substitution, and arithmetic expansion.
2133 If @var{parameter} is a nameref, this expands to the name of the
2134 variable referenced by @var{parameter} instead of performing the
2135 complete indirect expansion.
2136 The exceptions to this are the expansions of $@{!@var{prefix}*@}
2137 and $@{!@var{name}[@@]@}
2138 described below.
2139 The exclamation point must immediately follow the left brace in order to
2140 introduce indirection.
2141
2142 In each of the cases below, @var{word} is subject to tilde expansion,
2143 parameter expansion, command substitution, and arithmetic expansion.
2144
2145 When not performing substring expansion, using the form described
2146 below (e.g., @samp{:-}), Bash tests for a parameter that is unset or null.
2147 Omitting the colon results in a test only for a parameter that is unset.
2148 Put another way, if the colon is included,
2149 the operator tests for both @var{parameter}'s existence and that its value
2150 is not null; if the colon is omitted, the operator tests only for existence.
2151
2152 @table @code
2153
2154 @item $@{@var{parameter}:@minus{}@var{word}@}
2155 If @var{parameter} is unset or null, the expansion of
2156 @var{word} is substituted. Otherwise, the value of
2157 @var{parameter} is substituted.
2158
2159 @example
2160 $ v=123
2161 $ echo $@{v-unset@}
2162 123
2163 @end example
2164
2165 @item $@{@var{parameter}:=@var{word}@}
2166 If @var{parameter}
2167 is unset or null, the expansion of @var{word}
2168 is assigned to @var{parameter}.
2169 The value of @var{parameter} is then substituted.
2170 Positional parameters and special parameters may not be assigned to
2171 in this way.
2172
2173 @example
2174 $ var=
2175 $ : $@{var:=DEFAULT@}
2176 $ echo $var
2177 DEFAULT
2178 @end example
2179
2180 @item $@{@var{parameter}:?@var{word}@}
2181 If @var{parameter}
2182 is null or unset, the expansion of @var{word} (or a message
2183 to that effect if @var{word}
2184 is not present) is written to the standard error and the shell, if it
2185 is not interactive, exits. Otherwise, the value of @var{parameter} is
2186 substituted.
2187
2188 @example
2189 $ var=
2190 $ : $@{var:?var is unset or null@}
2191 bash: var: var is unset or null
2192 @end example
2193
2194 @item $@{@var{parameter}:+@var{word}@}
2195 If @var{parameter}
2196 is null or unset, nothing is substituted, otherwise the expansion of
2197 @var{word} is substituted.
2198
2199 @example
2200 $ var=123
2201 $ echo $@{var:+var is set and not null@}
2202 var is set and not null
2203 @end example
2204
2205 @item $@{@var{parameter}:@var{offset}@}
2206 @itemx $@{@var{parameter}:@var{offset}:@var{length}@}
2207 This is referred to as Substring Expansion.
2208 It expands to up to @var{length} characters of the value of @var{parameter}
2209 starting at the character specified by @var{offset}.
2210 If @var{parameter} is @samp{@@}, an indexed array subscripted by
2211 @samp{@@} or @samp{*}, or an associative array name, the results differ as
2212 described below.
2213 If @var{length} is omitted, it expands to the substring of the value of
2214 @var{parameter} starting at the character specified by @var{offset}
2215 and extending to the end of the value.
2216 @var{length} and @var{offset} are arithmetic expressions
2217 (@pxref{Shell Arithmetic}).
2218
2219 If @var{offset} evaluates to a number less than zero, the value
2220 is used as an offset in characters
2221 from the end of the value of @var{parameter}.
2222 If @var{length} evaluates to a number less than zero,
2223 it is interpreted as an offset in characters
2224 from the end of the value of @var{parameter} rather than
2225 a number of characters, and the expansion is the characters between
2226 @var{offset} and that result.
2227 Note that a negative offset must be separated from the colon by at least
2228 one space to avoid being confused with the @samp{:-} expansion.
2229
2230 Here are some examples illustrating substring expansion on parameters and
2231 subscripted arrays:
2232
2233 @verbatim
2234 $ string=01234567890abcdefgh
2235 $ echo ${string:7}
2236 7890abcdefgh
2237 $ echo ${string:7:0}
2238
2239 $ echo ${string:7:2}
2240 78
2241 $ echo ${string:7:-2}
2242 7890abcdef
2243 $ echo ${string: -7}
2244 bcdefgh
2245 $ echo ${string: -7:0}
2246
2247 $ echo ${string: -7:2}
2248 bc
2249 $ echo ${string: -7:-2}
2250 bcdef
2251 $ set -- 01234567890abcdefgh
2252 $ echo ${1:7}
2253 7890abcdefgh
2254 $ echo ${1:7:0}
2255
2256 $ echo ${1:7:2}
2257 78
2258 $ echo ${1:7:-2}
2259 7890abcdef
2260 $ echo ${1: -7}
2261 bcdefgh
2262 $ echo ${1: -7:0}
2263
2264 $ echo ${1: -7:2}
2265 bc
2266 $ echo ${1: -7:-2}
2267 bcdef
2268 $ array[0]=01234567890abcdefgh
2269 $ echo ${array[0]:7}
2270 7890abcdefgh
2271 $ echo ${array[0]:7:0}
2272
2273 $ echo ${array[0]:7:2}
2274 78
2275 $ echo ${array[0]:7:-2}
2276 7890abcdef
2277 $ echo ${array[0]: -7}
2278 bcdefgh
2279 $ echo ${array[0]: -7:0}
2280
2281 $ echo ${array[0]: -7:2}
2282 bc
2283 $ echo ${array[0]: -7:-2}
2284 bcdef
2285 @end verbatim
2286
2287 If @var{parameter} is @samp{@@}, the result is @var{length} positional
2288 parameters beginning at @var{offset}.
2289 A negative @var{offset} is taken relative to one greater than the greatest
2290 positional parameter, so an offset of -1 evaluates to the last positional
2291 parameter.
2292 It is an expansion error if @var{length} evaluates to a number less than zero.
2293
2294 The following examples illustrate substring expansion using positional
2295 parameters:
2296
2297 @verbatim
2298 $ set -- 1 2 3 4 5 6 7 8 9 0 a b c d e f g h
2299 $ echo ${@:7}
2300 7 8 9 0 a b c d e f g h
2301 $ echo ${@:7:0}
2302
2303 $ echo ${@:7:2}
2304 7 8
2305 $ echo ${@:7:-2}
2306 bash: -2: substring expression < 0
2307 $ echo ${@: -7:2}
2308 b c
2309 $ echo ${@:0}
2310 ./bash 1 2 3 4 5 6 7 8 9 0 a b c d e f g h
2311 $ echo ${@:0:2}
2312 ./bash 1
2313 $ echo ${@: -7:0}
2314
2315 @end verbatim
2316
2317 If @var{parameter} is an indexed array name subscripted
2318 by @samp{@@} or @samp{*}, the result is the @var{length}
2319 members of the array beginning with @code{$@{@var{parameter}[@var{offset}]@}}.
2320 A negative @var{offset} is taken relative to one greater than the maximum
2321 index of the specified array.
2322 It is an expansion error if @var{length} evaluates to a number less than zero.
2323
2324 These examples show how you can use substring expansion with indexed
2325 arrays:
2326
2327 @verbatim
2328 $ array=(0 1 2 3 4 5 6 7 8 9 0 a b c d e f g h)
2329 $ echo ${array[@]:7}
2330 7 8 9 0 a b c d e f g h
2331 $ echo ${array[@]:7:2}
2332 7 8
2333 $ echo ${array[@]: -7:2}
2334 b c
2335 $ echo ${array[@]: -7:-2}
2336 bash: -2: substring expression < 0
2337 $ echo ${array[@]:0}
2338 0 1 2 3 4 5 6 7 8 9 0 a b c d e f g h
2339 $ echo ${array[@]:0:2}
2340 0 1
2341 $ echo ${array[@]: -7:0}
2342
2343 @end verbatim
2344
2345 Substring expansion applied to an associative array produces undefined
2346 results.
2347
2348 Substring indexing is zero-based unless the positional parameters
2349 are used, in which case the indexing starts at 1 by default.
2350 If @var{offset} is 0, and the positional parameters are used, @code{$0} is
2351 prefixed to the list.
2352
2353 @item $@{!@var{prefix}*@}
2354 @itemx $@{!@var{prefix}@@@}
2355 Expands to the names of variables whose names begin with @var{prefix},
2356 separated by the first character of the @env{IFS} special variable.
2357 When @samp{@@} is used and the expansion appears within double quotes, each
2358 variable name expands to a separate word.
2359
2360 @item $@{!@var{name}[@@]@}
2361 @itemx $@{!@var{name}[*]@}
2362 If @var{name} is an array variable, expands to the list of array indices
2363 (keys) assigned in @var{name}.
2364 If @var{name} is not an array, expands to 0 if @var{name} is set and null
2365 otherwise.
2366 When @samp{@@} is used and the expansion appears within double quotes, each
2367 key expands to a separate word.
2368
2369 @item $@{#@var{parameter}@}
2370 The length in characters of the expanded value of @var{parameter} is
2371 substituted.
2372 If @var{parameter} is @samp{*} or @samp{@@}, the value substituted
2373 is the number of positional parameters.
2374 If @var{parameter} is an array name subscripted by @samp{*} or @samp{@@},
2375 the value substituted is the number of elements in the array.
2376 If @var{parameter}
2377 is an indexed array name subscripted by a negative number, that number is
2378 interpreted as relative to one greater than the maximum index of
2379 @var{parameter}, so negative indices count back from the end of the
2380 array, and an index of -1 references the last element.
2381
2382 @item $@{@var{parameter}#@var{word}@}
2383 @itemx $@{@var{parameter}##@var{word}@}
2384 The @var{word}
2385 is expanded to produce a pattern and matched according to the rules
2386 described below (@pxref{Pattern Matching}). If the pattern matches
2387 the beginning of the expanded value of @var{parameter},
2388 then the result of the expansion is the expanded value of @var{parameter}
2389 with the shortest matching pattern (the @samp{#} case) or the
2390 longest matching pattern (the @samp{##} case) deleted.
2391 If @var{parameter} is @samp{@@} or @samp{*},
2392 the pattern removal operation is applied to each positional
2393 parameter in turn, and the expansion is the resultant list.
2394 If @var{parameter} is an array variable subscripted with
2395 @samp{@@} or @samp{*},
2396 the pattern removal operation is applied to each member of the
2397 array in turn, and the expansion is the resultant list.
2398
2399 @item $@{@var{parameter}%@var{word}@}
2400 @itemx $@{@var{parameter}%%@var{word}@}
2401 The @var{word}
2402 is expanded to produce a pattern and matched according to the rules
2403 described below (@pxref{Pattern Matching}).
2404 If the pattern matches a trailing portion of the expanded value of
2405 @var{parameter}, then the result of the expansion is the value of
2406 @var{parameter} with the shortest matching pattern (the @samp{%} case)
2407 or the longest matching pattern (the @samp{%%} case) deleted.
2408 If @var{parameter} is @samp{@@} or @samp{*},
2409 the pattern removal operation is applied to each positional
2410 parameter in turn, and the expansion is the resultant list.
2411 If @var{parameter}
2412 is an array variable subscripted with @samp{@@} or @samp{*},
2413 the pattern removal operation is applied to each member of the
2414 array in turn, and the expansion is the resultant list.
2415
2416 @item $@{@var{parameter}/@var{pattern}/@var{string}@}
2417 @itemx $@{@var{parameter}//@var{pattern}/@var{string}@}
2418 @itemx $@{@var{parameter}/#@var{pattern}/@var{string}@}
2419 @itemx $@{@var{parameter}/%@var{pattern}/@var{string}@}
2420 The @var{pattern} is expanded to produce a pattern just as in
2421 filename expansion.
2422 @var{Parameter} is expanded and the longest match of @var{pattern}
2423 against its value is replaced with @var{string}.
2424 @var{string} undergoes tilde expansion, parameter and variable expansion,
2425 arithmetic expansion, command and process substitution, and quote removal.
2426 The match is performed according to the rules described below
2427 (@pxref{Pattern Matching}).
2428
2429 In the first form above, only the first match is replaced.
2430 If there are two slashes separating @var{parameter} and @var{pattern}
2431 (the second form above), all matches of @var{pattern} are
2432 replaced with @var{string}.
2433 If @var{pattern} is preceded by @samp{#} (the third form above),
2434 it must match at the beginning of the expanded value of @var{parameter}.
2435 If @var{pattern} is preceded by @samp{%} (the fourth form above),
2436 it must match at the end of the expanded value of @var{parameter}.
2437 If the expansion of @var{string} is null,
2438 matches of @var{pattern} are deleted.
2439 If @var{string} is null,
2440 matches of @var{pattern} are deleted
2441 and the @samp{/} following @var{pattern} may be omitted.
2442
2443 If the @code{patsub_replacement} shell option is enabled using @code{shopt},
2444 any unquoted instances of @samp{&} in @var{string} are replaced with the
2445 matching portion of @var{pattern}.
2446 This is intended to duplicate a common @code{sed} idiom.
2447 Backslash is used to quote @samp{&} in @var{string}; the backslash is removed
2448 in order to permit a literal @samp{&} in the replacement string.
2449 Pattern substitution performs the check for @samp{&} after expanding
2450 @var{string},
2451 so users should take care to quote backslashes intended to escape
2452 the @samp{&} and inhibit replacement so they survive any quote removal
2453 performed by the expansion of @var{string}.
2454 For instance,
2455
2456 @example
2457 var=abcdef
2458 echo $@{var/abc/& @}
2459 echo "$@{var/abc/& @}"
2460 echo $@{var/abc/"& "@}
2461 @end example
2462
2463 @noindent
2464 will display three lines of "abc def", while
2465
2466 @example
2467 var=abcdef
2468 echo $@{var/abc/\& @}
2469 echo "$@{var/abc/\& @}"
2470 echo $@{var/abc/"\& "@}
2471 @end example
2472
2473 @noindent
2474 will display two lines of "abc def" and a third line of "& def".
2475 The first two are replaced because the backslash is removed by quote
2476 removal performed during the expansion of @var{string}
2477 (the expansion is performed in a
2478 context that doesn't take any enclosing double quotes into account, as
2479 with other word expansions).
2480 In the third case, the double quotes affect the expansion
2481 of @samp{\&}, and, because @samp{&} is not one of the characters for
2482 which backslash is special in double quotes,
2483 the backslash survives the expansion, inhibits the replacement,
2484 but is removed because it is treated specially.
2485 One could use @samp{\\&}, unquoted, as the replacement string to achive
2486 the same effect.
2487 It should rarely be necessary to enclose only @var{string} in double
2488 quotes.
2489
2490 If the @code{nocasematch} shell option
2491 (see the description of @code{shopt} in @ref{The Shopt Builtin})
2492 is enabled, the match is performed without regard to the case
2493 of alphabetic characters.
2494 If @var{parameter} is @samp{@@} or @samp{*},
2495 the substitution operation is applied to each positional
2496 parameter in turn, and the expansion is the resultant list.
2497 If @var{parameter}
2498 is an array variable subscripted with @samp{@@} or @samp{*},
2499 the substitution operation is applied to each member of the
2500 array in turn, and the expansion is the resultant list.
2501
2502 @item $@{@var{parameter}^@var{pattern}@}
2503 @itemx $@{@var{parameter}^^@var{pattern}@}
2504 @itemx $@{@var{parameter},@var{pattern}@}
2505 @itemx $@{@var{parameter},,@var{pattern}@}
2506 This expansion modifies the case of alphabetic characters in @var{parameter}.
2507 The @var{pattern} is expanded to produce a pattern just as in
2508 filename expansion.
2509 Each character in the expanded value of @var{parameter} is tested against
2510 @var{pattern}, and, if it matches the pattern, its case is converted.
2511 The pattern should not attempt to match more than one character.
2512
2513 The @samp{^} operator converts lowercase letters matching @var{pattern}
2514 to uppercase; the @samp{,} operator converts matching uppercase letters
2515 to lowercase.
2516 The @samp{^^} and @samp{,,} expansions convert each matched character in the
2517 expanded value; the @samp{^} and @samp{,} expansions match and convert only
2518 the first character in the expanded value.
2519 If @var{pattern} is omitted, it is treated like a @samp{?}, which matches
2520 every character.
2521
2522 If @var{parameter} is @samp{@@} or @samp{*},
2523 the case modification operation is applied to each positional
2524 parameter in turn, and the expansion is the resultant list.
2525 If @var{parameter}
2526 is an array variable subscripted with @samp{@@} or @samp{*},
2527 the case modification operation is applied to each member of the
2528 array in turn, and the expansion is the resultant list.
2529
2530 @item $@{@var{parameter}@@@var{operator}@}
2531 The expansion is either a transformation of the value of @var{parameter}
2532 or information about @var{parameter} itself, depending on the value of
2533 @var{operator}. Each @var{operator} is a single letter:
2534
2535 @table @code
2536 @item U
2537 The expansion is a string that is the value of @var{parameter} with lowercase
2538 alphabetic characters converted to uppercase.
2539 @item u
2540 The expansion is a string that is the value of @var{parameter} with the first
2541 character converted to uppercase, if it is alphabetic.
2542 @item L
2543 The expansion is a string that is the value of @var{parameter} with uppercase
2544 alphabetic characters converted to lowercase.
2545 @item Q
2546 The expansion is a string that is the value of @var{parameter} quoted in a
2547 format that can be reused as input.
2548 @item E
2549 The expansion is a string that is the value of @var{parameter} with backslash
2550 escape sequences expanded as with the @code{$'@dots{}'} quoting mechanism.
2551 @item P
2552 The expansion is a string that is the result of expanding the value of
2553 @var{parameter} as if it were a prompt string (@pxref{Controlling the Prompt}).
2554 @item A
2555 The expansion is a string in the form of
2556 an assignment statement or @code{declare} command that, if
2557 evaluated, will recreate @var{parameter} with its attributes and value.
2558 @item K
2559 Produces a possibly-quoted version of the value of @var{parameter},
2560 except that it prints the values of
2561 indexed and associative arrays as a sequence of quoted key-value pairs
2562 (@pxref{Arrays}).
2563 @item a
2564 The expansion is a string consisting of flag values representing
2565 @var{parameter}'s attributes.
2566 @item k
2567 Like the @samp{K} transformation, but expands the keys and values of
2568 indexed and associative arrays to separate words after word splitting.
2569 @end table
2570
2571 If @var{parameter} is @samp{@@} or @samp{*},
2572 the operation is applied to each positional
2573 parameter in turn, and the expansion is the resultant list.
2574 If @var{parameter}
2575 is an array variable subscripted with @samp{@@} or @samp{*},
2576 the operation is applied to each member of the
2577 array in turn, and the expansion is the resultant list.
2578
2579 The result of the expansion is subject to word splitting and filename
2580 expansion as described below.
2581 @end table
2582
2583 @node Command Substitution
2584 @subsection Command Substitution
2585 @cindex command substitution
2586
2587 Command substitution allows the output of a command to replace
2588 the command itself.
2589 Command substitution occurs when a command is enclosed as follows:
2590 @example
2591 $(@var{command})
2592 @end example
2593 @noindent
2594 or
2595 @example
2596 `@var{command}`
2597 @end example
2598
2599 @noindent
2600 Bash performs the expansion by executing @var{command} in a subshell environment
2601 and replacing the command substitution with the standard output of the
2602 command, with any trailing newlines deleted.
2603 Embedded newlines are not deleted, but they may be removed during
2604 word splitting.
2605 The command substitution @code{$(cat @var{file})} can be
2606 replaced by the equivalent but faster @code{$(< @var{file})}.
2607
2608 When the old-style backquote form of substitution is used,
2609 backslash retains its literal meaning except when followed by
2610 @samp{$}, @samp{`}, or @samp{\}.
2611 The first backquote not preceded by a backslash terminates the
2612 command substitution.
2613 When using the @code{$(@var{command})} form, all characters between
2614 the parentheses make up the command; none are treated specially.
2615
2616 Command substitutions may be nested. To nest when using the backquoted
2617 form, escape the inner backquotes with backslashes.
2618
2619 If the substitution appears within double quotes, word splitting and
2620 filename expansion are not performed on the results.
2621
2622 @node Arithmetic Expansion
2623 @subsection Arithmetic Expansion
2624 @cindex expansion, arithmetic
2625 @cindex arithmetic expansion
2626
2627 Arithmetic expansion allows the evaluation of an arithmetic expression
2628 and the substitution of the result. The format for arithmetic expansion is:
2629
2630 @example
2631 $(( @var{expression} ))
2632 @end example
2633
2634 The @var{expression} undergoes the same expansions
2635 as if it were within double quotes,
2636 but double quote characters in @var{expression} are not treated specially
2637 and are removed.
2638 All tokens in the expression undergo parameter and variable expansion,
2639 command substitution, and quote removal.
2640 The result is treated as the arithmetic expression to be evaluated.
2641 Arithmetic expansions may be nested.
2642
2643 The evaluation is performed according to the rules listed below
2644 (@pxref{Shell Arithmetic}).
2645 If the expression is invalid, Bash prints a message indicating
2646 failure to the standard error and no substitution occurs.
2647
2648 @node Process Substitution
2649 @subsection Process Substitution
2650 @cindex process substitution
2651
2652 Process substitution allows a process's input or output to be
2653 referred to using a filename.
2654 It takes the form of
2655 @example
2656 <(@var{list})
2657 @end example
2658 @noindent
2659 or
2660 @example
2661 >(@var{list})
2662 @end example
2663 @noindent
2664 The process @var{list} is run asynchronously, and its input or output
2665 appears as a filename.
2666 This filename is
2667 passed as an argument to the current command as the result of the
2668 expansion.
2669 If the @code{>(@var{list})} form is used, writing to
2670 the file will provide input for @var{list}. If the
2671 @code{<(@var{list})} form is used, the file passed as an
2672 argument should be read to obtain the output of @var{list}.
2673 Note that no space may appear between the @code{<} or @code{>}
2674 and the left parenthesis, otherwise the construct would be interpreted
2675 as a redirection.
2676 Process substitution is supported on systems that support named
2677 pipes (@sc{fifo}s) or the @file{/dev/fd} method of naming open files.
2678
2679 When available, process substitution is performed simultaneously with
2680 parameter and variable expansion, command substitution, and arithmetic
2681 expansion.
2682
2683 @node Word Splitting
2684 @subsection Word Splitting
2685 @cindex word splitting
2686
2687 The shell scans the results of parameter expansion, command substitution,
2688 and arithmetic expansion that did not occur within double quotes for
2689 word splitting.
2690
2691 The shell treats each character of @env{$IFS} as a delimiter, and splits
2692 the results of the other expansions into words using these characters
2693 as field terminators.
2694 If @env{IFS} is unset, or its value is exactly @code{<space><tab><newline>},
2695 the default, then sequences of
2696 @code{ <space>}, @code{<tab>}, and @code{<newline>}
2697 at the beginning and end of the results of the previous
2698 expansions are ignored, and any sequence of @env{IFS}
2699 characters not at the beginning or end serves to delimit words.
2700 If @env{IFS} has a value other than the default, then sequences of
2701 the whitespace characters @code{space}, @code{tab}, and @code{newline}
2702 are ignored at the beginning and end of the
2703 word, as long as the whitespace character is in the
2704 value of @env{IFS} (an @env{IFS} whitespace character).
2705 Any character in @env{IFS} that is not @env{IFS}
2706 whitespace, along with any adjacent @env{IFS}
2707 whitespace characters, delimits a field. A sequence of @env{IFS}
2708 whitespace characters is also treated as a delimiter.
2709 If the value of @env{IFS} is null, no word splitting occurs.
2710
2711 Explicit null arguments (@code{""} or @code{''}) are retained
2712 and passed to commands as empty strings.
2713 Unquoted implicit null arguments, resulting from the expansion of
2714 parameters that have no values, are removed.
2715 If a parameter with no value is expanded within double quotes, a
2716 null argument results and is retained
2717 and passed to a command as an empty string.
2718 When a quoted null argument appears as part of a word whose expansion is
2719 non-null, the null argument is removed.
2720 That is, the word
2721 @code{-d''} becomes @code{-d} after word splitting and
2722 null argument removal.
2723
2724 Note that if no expansion occurs, no splitting
2725 is performed.
2726
2727 @node Filename Expansion
2728 @subsection Filename Expansion
2729 @menu
2730 * Pattern Matching:: How the shell matches patterns.
2731 @end menu
2732 @cindex expansion, filename
2733 @cindex expansion, pathname
2734 @cindex filename expansion
2735 @cindex pathname expansion
2736
2737 After word splitting, unless the @option{-f} option has been set
2738 (@pxref{The Set Builtin}), Bash scans each word for the characters
2739 @samp{*}, @samp{?}, and @samp{[}.
2740 If one of these characters appears, and is not quoted, then the word is
2741 regarded as a @var{pattern},
2742 and replaced with an alphabetically sorted list of
2743 filenames matching the pattern (@pxref{Pattern Matching}).
2744 If no matching filenames are found,
2745 and the shell option @code{nullglob} is disabled, the word is left
2746 unchanged.
2747 If the @code{nullglob} option is set, and no matches are found, the word
2748 is removed.
2749 If the @code{failglob} shell option is set, and no matches are found,
2750 an error message is printed and the command is not executed.
2751 If the shell option @code{nocaseglob} is enabled, the match is performed
2752 without regard to the case of alphabetic characters.
2753
2754 When a pattern is used for filename expansion, the character @samp{.}
2755 at the start of a filename or immediately following a slash
2756 must be matched explicitly, unless the shell option @code{dotglob} is set.
2757 In order to match the filenames @samp{.} and @samp{..},
2758 the pattern must begin with @samp{.} (for example, @samp{.?}),
2759 even if @code{dotglob} is set.
2760 When not matching filenames, the @samp{.} character is not treated specially.
2761
2762 When matching a filename, the slash character must always be
2763 matched explicitly by a slash in the pattern, but in other matching
2764 contexts it can be matched by a special pattern character as described
2765 below (@pxref{Pattern Matching}).
2766
2767 See the description of @code{shopt} in @ref{The Shopt Builtin},
2768 for a description of the @code{nocaseglob}, @code{nullglob},
2769 @code{failglob}, and @code{dotglob} options.
2770
2771 The @env{GLOBIGNORE}
2772 shell variable may be used to restrict the set of file names matching a
2773 pattern. If @env{GLOBIGNORE}
2774 is set, each matching file name that also matches one of the patterns in
2775 @env{GLOBIGNORE} is removed from the list of matches.
2776 If the @code{nocaseglob} option is set, the matching against the patterns in
2777 @env{GLOBIGNORE} is performed without regard to case.
2778 The filenames
2779 @file{.} and @file{..}
2780 are always ignored when @env{GLOBIGNORE}
2781 is set and not null.
2782 However, setting @env{GLOBIGNORE} to a non-null value has the effect of
2783 enabling the @code{dotglob}
2784 shell option, so all other filenames beginning with a
2785 @samp{.} will match.
2786 To get the old behavior of ignoring filenames beginning with a
2787 @samp{.}, make @samp{.*} one of the patterns in @env{GLOBIGNORE}.
2788 The @code{dotglob} option is disabled when @env{GLOBIGNORE}
2789 is unset.
2790
2791 @node Pattern Matching
2792 @subsubsection Pattern Matching
2793 @cindex pattern matching
2794 @cindex matching, pattern
2795
2796 Any character that appears in a pattern, other than the special pattern
2797 characters described below, matches itself.
2798 The @sc{nul} character may not occur in a pattern.
2799 A backslash escapes the following character; the
2800 escaping backslash is discarded when matching.
2801 The special pattern characters must be quoted if they are to be matched
2802 literally.
2803
2804 The special pattern characters have the following meanings:
2805 @table @code
2806 @item *
2807 Matches any string, including the null string.
2808 When the @code{globstar} shell option is enabled, and @samp{*} is used in
2809 a filename expansion context, two adjacent @samp{*}s used as a single
2810 pattern will match all files and zero or more directories and
2811 subdirectories.
2812 If followed by a @samp{/}, two adjacent @samp{*}s will match only
2813 directories and subdirectories.
2814 @item ?
2815 Matches any single character.
2816 @item [@dots{}]
2817 Matches any one of the enclosed characters. A pair of characters
2818 separated by a hyphen denotes a @var{range expression};
2819 any character that falls between those two characters, inclusive,
2820 using the current locale's collating sequence and character set,
2821 is matched. If the first character following the
2822 @samp{[} is a @samp{!} or a @samp{^}
2823 then any character not enclosed is matched. A @samp{@minus{}}
2824 may be matched by including it as the first or last character
2825 in the set. A @samp{]} may be matched by including it as the first
2826 character in the set.
2827 The sorting order of characters in range expressions is determined by
2828 the current locale and the values of the
2829 @env{LC_COLLATE} and @env{LC_ALL} shell variables, if set.
2830
2831 For example, in the default C locale, @samp{[a-dx-z]} is equivalent to
2832 @samp{[abcdxyz]}. Many locales sort characters in dictionary order, and in
2833 these locales @samp{[a-dx-z]} is typically not equivalent to @samp{[abcdxyz]};
2834 it might be equivalent to @samp{[aBbCcDdxXyYz]}, for example. To obtain
2835 the traditional interpretation of ranges in bracket expressions, you can
2836 force the use of the C locale by setting the @env{LC_COLLATE} or
2837 @env{LC_ALL} environment variable to the value @samp{C}, or enable the
2838 @code{globasciiranges} shell option.
2839
2840 Within @samp{[} and @samp{]}, @dfn{character classes} can be specified
2841 using the syntax
2842 @code{[:}@var{class}@code{:]}, where @var{class} is one of the
2843 following classes defined in the @sc{posix} standard:
2844 @example
2845 alnum alpha ascii blank cntrl digit graph lower
2846 print punct space upper word xdigit
2847 @end example
2848 @noindent
2849 A character class matches any character belonging to that class.
2850 The @code{word} character class matches letters, digits, and the character
2851 @samp{_}.
2852
2853 Within @samp{[} and @samp{]}, an @dfn{equivalence class} can be
2854 specified using the syntax @code{[=}@var{c}@code{=]}, which
2855 matches all characters with the same collation weight (as defined
2856 by the current locale) as the character @var{c}.
2857
2858 Within @samp{[} and @samp{]}, the syntax @code{[.}@var{symbol}@code{.]}
2859 matches the collating symbol @var{symbol}.
2860 @end table
2861
2862 If the @code{extglob} shell option is enabled using the @code{shopt}
2863 builtin, the shell recognizes several extended pattern matching operators.
2864 In the following description, a @var{pattern-list} is a list of one
2865 or more patterns separated by a @samp{|}.
2866 When matching filenames, the @code{dotglob} shell option determines
2867 the set of filenames that are tested, as described above.
2868 Composite patterns may be formed using one or more of the following
2869 sub-patterns:
2870
2871 @table @code
2872 @item ?(@var{pattern-list})
2873 Matches zero or one occurrence of the given patterns.
2874
2875 @item *(@var{pattern-list})
2876 Matches zero or more occurrences of the given patterns.
2877
2878 @item +(@var{pattern-list})
2879 Matches one or more occurrences of the given patterns.
2880
2881 @item @@(@var{pattern-list})
2882 Matches one of the given patterns.
2883
2884 @item !(@var{pattern-list})
2885 Matches anything except one of the given patterns.
2886 @end table
2887
2888 When matching filenames, the @code{dotglob} shell option determines
2889 the set of filenames that are tested:
2890 when @code{dotglob} is enabled, the set of filenames includes all files
2891 beginning with @samp{.}, but the filenames
2892 @samp{.} and @samp{..} must be matched by a
2893 pattern or sub-pattern that begins with a dot;
2894 when it is disabled, the set does not
2895 include any filenames beginning with ``.'' unless the pattern
2896 or sub-pattern begins with a @samp{.}.
2897 As above, @samp{.} only has a special meaning when matching filenames.
2898
2899 Complicated extended pattern matching against long strings is slow,
2900 especially when the patterns contain alternations and the strings
2901 contain multiple matches.
2902 Using separate matches against shorter strings, or using arrays of
2903 strings instead of a single long string, may be faster.
2904
2905 @node Quote Removal
2906 @subsection Quote Removal
2907
2908 After the preceding expansions, all unquoted occurrences of the
2909 characters @samp{\}, @samp{'}, and @samp{"} that did not
2910 result from one of the above expansions are removed.
2911
2912 @node Redirections
2913 @section Redirections
2914 @cindex redirection
2915
2916 Before a command is executed, its input and output
2917 may be @dfn{redirected}
2918 using a special notation interpreted by the shell.
2919 @dfn{Redirection} allows commands' file handles to be
2920 duplicated, opened, closed,
2921 made to refer to different files,
2922 and can change the files the command reads from and writes to.
2923 Redirection may also be used to modify file handles in the
2924 current shell execution environment. The following redirection
2925 operators may precede or appear anywhere within a
2926 simple command or may follow a command.
2927 Redirections are processed in the order they appear, from
2928 left to right.
2929
2930 Each redirection that may be preceded by a file descriptor number
2931 may instead be preceded by a word of the form @{@var{varname}@}.
2932 In this case, for each redirection operator except
2933 >&- and <&-, the shell will allocate a file descriptor greater
2934 than 10 and assign it to @{@var{varname}@}. If >&- or <&- is preceded
2935 by @{@var{varname}@}, the value of @var{varname} defines the file
2936 descriptor to close.
2937 If @{@var{varname}@} is supplied, the redirection persists beyond
2938 the scope of the command, allowing the shell programmer to manage
2939 the file descriptor's lifetime manually.
2940 The @code{varredir_close} shell option manages this behavior
2941 (@pxref{The Shopt Builtin}).
2942
2943 In the following descriptions, if the file descriptor number is
2944 omitted, and the first character of the redirection operator is
2945 @samp{<}, the redirection refers to the standard input (file
2946 descriptor 0). If the first character of the redirection operator
2947 is @samp{>}, the redirection refers to the standard output (file
2948 descriptor 1).
2949
2950 The word following the redirection operator in the following
2951 descriptions, unless otherwise noted, is subjected to brace expansion,
2952 tilde expansion, parameter expansion, command substitution, arithmetic
2953 expansion, quote removal, filename expansion, and word splitting.
2954 If it expands to more than one word, Bash reports an error.
2955
2956 Note that the order of redirections is significant. For example,
2957 the command
2958 @example
2959 ls > @var{dirlist} 2>&1
2960 @end example
2961 @noindent
2962 directs both standard output (file descriptor 1) and standard error
2963 (file descriptor 2) to the file @var{dirlist}, while the command
2964 @example
2965 ls 2>&1 > @var{dirlist}
2966 @end example
2967 @noindent
2968 directs only the standard output to file @var{dirlist},
2969 because the standard error was made a copy of the standard output
2970 before the standard output was redirected to @var{dirlist}.
2971
2972 Bash handles several filenames specially when they are used in
2973 redirections, as described in the following table.
2974 If the operating system on which Bash is running provides these
2975 special files, bash will use them; otherwise it will emulate them
2976 internally with the behavior described below.
2977
2978 @table @code
2979 @item /dev/fd/@var{fd}
2980 If @var{fd} is a valid integer, file descriptor @var{fd} is duplicated.
2981
2982 @item /dev/stdin
2983 File descriptor 0 is duplicated.
2984
2985 @item /dev/stdout
2986 File descriptor 1 is duplicated.
2987
2988 @item /dev/stderr
2989 File descriptor 2 is duplicated.
2990
2991 @item /dev/tcp/@var{host}/@var{port}
2992 If @var{host} is a valid hostname or Internet address, and @var{port}
2993 is an integer port number or service name, Bash attempts to open
2994 the corresponding TCP socket.
2995
2996 @item /dev/udp/@var{host}/@var{port}
2997 If @var{host} is a valid hostname or Internet address, and @var{port}
2998 is an integer port number or service name, Bash attempts to open
2999 the corresponding UDP socket.
3000 @end table
3001
3002 A failure to open or create a file causes the redirection to fail.
3003
3004 Redirections using file descriptors greater than 9 should be used with
3005 care, as they may conflict with file descriptors the shell uses
3006 internally.
3007
3008 @subsection Redirecting Input
3009 Redirection of input causes the file whose name results from
3010 the expansion of @var{word}
3011 to be opened for reading on file descriptor @code{n},
3012 or the standard input (file descriptor 0) if @code{n}
3013 is not specified.
3014
3015 The general format for redirecting input is:
3016 @example
3017 [@var{n}]<@var{word}
3018 @end example
3019
3020 @subsection Redirecting Output
3021 Redirection of output causes the file whose name results from
3022 the expansion of @var{word}
3023 to be opened for writing on file descriptor @var{n},
3024 or the standard output (file descriptor 1) if @var{n}
3025 is not specified. If the file does not exist it is created;
3026 if it does exist it is truncated to zero size.
3027
3028 The general format for redirecting output is:
3029 @example
3030 [@var{n}]>[|]@var{word}
3031 @end example
3032
3033 If the redirection operator is @samp{>}, and the @code{noclobber}
3034 option to the @code{set} builtin has been enabled, the redirection
3035 will fail if the file whose name results from the expansion of
3036 @var{word} exists and is a regular file.
3037 If the redirection operator is @samp{>|}, or the redirection operator is
3038 @samp{>} and the @code{noclobber} option is not enabled, the redirection
3039 is attempted even if the file named by @var{word} exists.
3040
3041 @subsection Appending Redirected Output
3042 Redirection of output in this fashion
3043 causes the file whose name results from
3044 the expansion of @var{word}
3045 to be opened for appending on file descriptor @var{n},
3046 or the standard output (file descriptor 1) if @var{n}
3047 is not specified. If the file does not exist it is created.
3048
3049 The general format for appending output is:
3050 @example
3051 [@var{n}]>>@var{word}
3052 @end example
3053
3054 @subsection Redirecting Standard Output and Standard Error
3055 This construct allows both the
3056 standard output (file descriptor 1) and
3057 the standard error output (file descriptor 2)
3058 to be redirected to the file whose name is the
3059 expansion of @var{word}.
3060
3061 There are two formats for redirecting standard output and
3062 standard error:
3063 @example
3064 &>@var{word}
3065 @end example
3066 @noindent
3067 and
3068 @example
3069 >&@var{word}
3070 @end example
3071 @noindent
3072 Of the two forms, the first is preferred.
3073 This is semantically equivalent to
3074 @example
3075 >@var{word} 2>&1
3076 @end example
3077 When using the second form, @var{word} may not expand to a number or
3078 @samp{-}. If it does, other redirection operators apply
3079 (see Duplicating File Descriptors below) for compatibility reasons.
3080
3081 @subsection Appending Standard Output and Standard Error
3082 This construct allows both the
3083 standard output (file descriptor 1) and
3084 the standard error output (file descriptor 2)
3085 to be appended to the file whose name is the
3086 expansion of @var{word}.
3087
3088 The format for appending standard output and standard error is:
3089 @example
3090 &>>@var{word}
3091 @end example
3092 @noindent
3093 This is semantically equivalent to
3094 @example
3095 >>@var{word} 2>&1
3096 @end example
3097 (see Duplicating File Descriptors below).
3098
3099 @subsection Here Documents
3100 This type of redirection instructs the shell to read input from the
3101 current source until a line containing only @var{word}
3102 (with no trailing blanks) is seen. All of
3103 the lines read up to that point are then used as the standard
3104 input (or file descriptor @var{n} if @var{n} is specified) for a command.
3105
3106 The format of here-documents is:
3107 @example
3108 [@var{n}]<<[@minus{}]@var{word}
3109 @var{here-document}
3110 @var{delimiter}
3111 @end example
3112
3113 No parameter and variable expansion, command substitution,
3114 arithmetic expansion, or filename expansion is performed on
3115 @var{word}. If any part of @var{word} is quoted, the
3116 @var{delimiter} is the result of quote removal on @var{word},
3117 and the lines in the here-document are not expanded.
3118 If @var{word} is unquoted,
3119 all lines of the here-document are subjected to
3120 parameter expansion, command substitution, and arithmetic expansion,
3121 the character sequence @code{\newline} is ignored, and @samp{\}
3122 must be used to quote the characters
3123 @samp{\}, @samp{$}, and @samp{`}.
3124
3125 If the redirection operator is @samp{<<-},
3126 then all leading tab characters are stripped from input lines and the
3127 line containing @var{delimiter}.
3128 This allows here-documents within shell scripts to be indented in a
3129 natural fashion.
3130
3131 @subsection Here Strings
3132 A variant of here documents, the format is:
3133 @example
3134 [@var{n}]<<< @var{word}
3135 @end example
3136
3137 The @var{word} undergoes
3138 tilde expansion, parameter and variable expansion,
3139 command substitution, arithmetic expansion, and quote removal.
3140 Filename expansion and word splitting are not performed.
3141 The result is supplied as a single string,
3142 with a newline appended,
3143 to the command on its
3144 standard input (or file descriptor @var{n} if @var{n} is specified).
3145
3146 @subsection Duplicating File Descriptors
3147 The redirection operator
3148 @example
3149 [@var{n}]<&@var{word}
3150 @end example
3151 @noindent
3152 is used to duplicate input file descriptors.
3153 If @var{word}
3154 expands to one or more digits, the file descriptor denoted by @var{n}
3155 is made to be a copy of that file descriptor.
3156 If the digits in @var{word} do not specify a file descriptor open for
3157 input, a redirection error occurs.
3158 If @var{word}
3159 evaluates to @samp{-}, file descriptor @var{n} is closed.
3160 If @var{n} is not specified, the standard input (file descriptor 0) is used.
3161
3162 The operator
3163 @example
3164 [@var{n}]>&@var{word}
3165 @end example
3166 @noindent
3167 is used similarly to duplicate output file descriptors. If
3168 @var{n} is not specified, the standard output (file descriptor 1) is used.
3169 If the digits in @var{word} do not specify a file descriptor open for
3170 output, a redirection error occurs.
3171 If @var{word}
3172 evaluates to @samp{-}, file descriptor @var{n} is closed.
3173 As a special case, if @var{n} is omitted, and @var{word} does not
3174 expand to one or more digits or @samp{-}, the standard output and standard
3175 error are redirected as described previously.
3176
3177 @subsection Moving File Descriptors
3178 The redirection operator
3179 @example
3180 [@var{n}]<&@var{digit}-
3181 @end example
3182 @noindent
3183 moves the file descriptor @var{digit} to file descriptor @var{n},
3184 or the standard input (file descriptor 0) if @var{n} is not specified.
3185 @var{digit} is closed after being duplicated to @var{n}.
3186
3187 Similarly, the redirection operator
3188 @example
3189 [@var{n}]>&@var{digit}-
3190 @end example
3191 @noindent
3192 moves the file descriptor @var{digit} to file descriptor @var{n},
3193 or the standard output (file descriptor 1) if @var{n} is not specified.
3194
3195 @subsection Opening File Descriptors for Reading and Writing
3196 The redirection operator
3197 @example
3198 [@var{n}]<>@var{word}
3199 @end example
3200 @noindent
3201 causes the file whose name is the expansion of @var{word}
3202 to be opened for both reading and writing on file descriptor
3203 @var{n}, or on file descriptor 0 if @var{n}
3204 is not specified. If the file does not exist, it is created.
3205
3206 @node Executing Commands
3207 @section Executing Commands
3208
3209 @menu
3210 * Simple Command Expansion:: How Bash expands simple commands before
3211 executing them.
3212 * Command Search and Execution:: How Bash finds commands and runs them.
3213 * Command Execution Environment:: The environment in which Bash
3214 executes commands that are not
3215 shell builtins.
3216 * Environment:: The environment given to a command.
3217 * Exit Status:: The status returned by commands and how Bash
3218 interprets it.
3219 * Signals:: What happens when Bash or a command it runs
3220 receives a signal.
3221 @end menu
3222
3223 @node Simple Command Expansion
3224 @subsection Simple Command Expansion
3225 @cindex command expansion
3226
3227 When a simple command is executed, the shell performs the following
3228 expansions, assignments, and redirections, from left to right, in
3229 the following order.
3230
3231 @enumerate
3232 @item
3233 The words that the parser has marked as variable assignments (those
3234 preceding the command name) and redirections are saved for later
3235 processing.
3236
3237 @item
3238 The words that are not variable assignments or redirections are
3239 expanded (@pxref{Shell Expansions}).
3240 If any words remain after expansion, the first word
3241 is taken to be the name of the command and the remaining words are
3242 the arguments.
3243
3244 @item
3245 Redirections are performed as described above (@pxref{Redirections}).
3246
3247 @item
3248 The text after the @samp{=} in each variable assignment undergoes tilde
3249 expansion, parameter expansion, command substitution, arithmetic expansion,
3250 and quote removal before being assigned to the variable.
3251 @end enumerate
3252
3253 If no command name results, the variable assignments affect the current
3254 shell environment.
3255 In the case of such a command (one that consists only of assignment
3256 statements and redirections), assignment statements are performed before
3257 redirections.
3258 Otherwise, the variables are added to the environment
3259 of the executed command and do not affect the current shell environment.
3260 If any of the assignments attempts to assign a value to a readonly variable,
3261 an error occurs, and the command exits with a non-zero status.
3262
3263 If no command name results, redirections are performed, but do not
3264 affect the current shell environment. A redirection error causes the
3265 command to exit with a non-zero status.
3266
3267 If there is a command name left after expansion, execution proceeds as
3268 described below. Otherwise, the command exits. If one of the expansions
3269 contained a command substitution, the exit status of the command is
3270 the exit status of the last command substitution performed. If there
3271 were no command substitutions, the command exits with a status of zero.
3272
3273 @node Command Search and Execution
3274 @subsection Command Search and Execution
3275 @cindex command execution
3276 @cindex command search
3277
3278 After a command has been split into words, if it results in a
3279 simple command and an optional list of arguments, the following
3280 actions are taken.
3281
3282 @enumerate
3283 @item
3284 If the command name contains no slashes, the shell attempts to
3285 locate it. If there exists a shell function by that name, that
3286 function is invoked as described in @ref{Shell Functions}.
3287
3288 @item
3289 If the name does not match a function, the shell searches for
3290 it in the list of shell builtins. If a match is found, that
3291 builtin is invoked.
3292
3293 @item
3294 If the name is neither a shell function nor a builtin,
3295 and contains no slashes, Bash searches each element of
3296 @env{$PATH} for a directory containing an executable file
3297 by that name. Bash uses a hash table to remember the full
3298 pathnames of executable files to avoid multiple @env{PATH} searches
3299 (see the description of @code{hash} in @ref{Bourne Shell Builtins}).
3300 A full search of the directories in @env{$PATH}
3301 is performed only if the command is not found in the hash table.
3302 If the search is unsuccessful, the shell searches for a defined shell
3303 function named @code{command_not_found_handle}.
3304 If that function exists, it is invoked in a separate execution environment
3305 with the original command and
3306 the original command's arguments as its arguments, and the function's
3307 exit status becomes the exit status of that subshell.
3308 If that function is not defined, the shell prints an error
3309 message and returns an exit status of 127.
3310
3311 @item
3312 If the search is successful, or if the command name contains
3313 one or more slashes, the shell executes the named program in
3314 a separate execution environment.
3315 Argument 0 is set to the name given, and the remaining arguments
3316 to the command are set to the arguments supplied, if any.
3317
3318 @item
3319 If this execution fails because the file is not in executable
3320 format, and the file is not a directory, it is assumed to be a
3321 @dfn{shell script} and the shell executes it as described in
3322 @ref{Shell Scripts}.
3323
3324 @item
3325 If the command was not begun asynchronously, the shell waits for
3326 the command to complete and collects its exit status.
3327
3328 @end enumerate
3329
3330 @node Command Execution Environment
3331 @subsection Command Execution Environment
3332 @cindex execution environment
3333
3334 The shell has an @dfn{execution environment}, which consists of the
3335 following:
3336
3337 @itemize @bullet
3338 @item
3339 open files inherited by the shell at invocation, as modified by
3340 redirections supplied to the @code{exec} builtin
3341
3342 @item
3343 the current working directory as set by @code{cd}, @code{pushd}, or
3344 @code{popd}, or inherited by the shell at invocation
3345
3346 @item
3347 the file creation mode mask as set by @code{umask} or inherited from
3348 the shell's parent
3349
3350 @item
3351 current traps set by @code{trap}
3352
3353 @item
3354 shell parameters that are set by variable assignment or with @code{set}
3355 or inherited from the shell's parent in the environment
3356
3357 @item
3358 shell functions defined during execution or inherited from the shell's
3359 parent in the environment
3360
3361 @item
3362 options enabled at invocation (either by default or with command-line
3363 arguments) or by @code{set}
3364
3365 @item
3366 options enabled by @code{shopt} (@pxref{The Shopt Builtin})
3367
3368 @item
3369 shell aliases defined with @code{alias} (@pxref{Aliases})
3370
3371 @item
3372 various process @sc{id}s, including those of background jobs
3373 (@pxref{Lists}), the value of @code{$$}, and the value of
3374 @env{$PPID}
3375
3376 @end itemize
3377
3378 When a simple command other than a builtin or shell function
3379 is to be executed, it
3380 is invoked in a separate execution environment that consists of
3381 the following. Unless otherwise noted, the values are inherited
3382 from the shell.
3383
3384 @itemize @bullet
3385 @item
3386 the shell's open files, plus any modifications and additions specified
3387 by redirections to the command
3388
3389 @item
3390 the current working directory
3391
3392 @item
3393 the file creation mode mask
3394
3395 @item
3396 shell variables and functions marked for export, along with variables
3397 exported for the command, passed in the environment (@pxref{Environment})
3398
3399 @item
3400 traps caught by the shell are reset to the values inherited from the
3401 shell's parent, and traps ignored by the shell are ignored
3402
3403 @end itemize
3404
3405 A command invoked in this separate environment cannot affect the
3406 shell's execution environment.
3407
3408 A @dfn{subshell} is a copy of the shell process.
3409
3410 Command substitution, commands grouped with parentheses,
3411 and asynchronous commands are invoked in a
3412 subshell environment that is a duplicate of the shell environment,
3413 except that traps caught by the shell are reset to the values
3414 that the shell inherited from its parent at invocation. Builtin
3415 commands that are invoked as part of a pipeline are also executed
3416 in a subshell environment. Changes made to the subshell environment
3417 cannot affect the shell's execution environment.
3418
3419 Subshells spawned to execute command substitutions inherit the value of
3420 the @option{-e} option from the parent shell. When not in @sc{posix} mode,
3421 Bash clears the @option{-e} option in such subshells.
3422
3423 If a command is followed by a @samp{&} and job control is not active, the
3424 default standard input for the command is the empty file @file{/dev/null}.
3425 Otherwise, the invoked command inherits the file descriptors of the calling
3426 shell as modified by redirections.
3427
3428 @node Environment
3429 @subsection Environment
3430 @cindex environment
3431
3432 When a program is invoked it is given an array of strings
3433 called the @dfn{environment}.
3434 This is a list of name-value pairs, of the form @code{name=value}.
3435
3436 Bash provides several ways to manipulate the environment.
3437 On invocation, the shell scans its own environment and
3438 creates a parameter for each name found, automatically marking
3439 it for @code{export}
3440 to child processes. Executed commands inherit the environment.
3441 The @code{export} and @samp{declare -x}
3442 commands allow parameters and functions to be added to and
3443 deleted from the environment. If the value of a parameter
3444 in the environment is modified, the new value becomes part
3445 of the environment, replacing the old. The environment
3446 inherited by any executed command consists of the shell's
3447 initial environment, whose values may be modified in the shell,
3448 less any pairs removed by the @code{unset} and @samp{export -n}
3449 commands, plus any additions via the @code{export} and
3450 @samp{declare -x} commands.
3451
3452 The environment for any simple command
3453 or function may be augmented temporarily by prefixing it with
3454 parameter assignments, as described in @ref{Shell Parameters}.
3455 These assignment statements affect only the environment seen
3456 by that command.
3457
3458 If the @option{-k} option is set (@pxref{The Set Builtin}), then all
3459 parameter assignments are placed in the environment for a command,
3460 not just those that precede the command name.
3461
3462 When Bash invokes an external command, the variable @samp{$_}
3463 is set to the full pathname of the command and passed to that
3464 command in its environment.
3465
3466 @node Exit Status
3467 @subsection Exit Status
3468 @cindex exit status
3469
3470 The exit status of an executed command is the value returned by the
3471 @code{waitpid} system call or equivalent function. Exit statuses
3472 fall between 0 and 255, though, as explained below, the shell may
3473 use values above 125 specially. Exit statuses from shell builtins and
3474 compound commands are also limited to this range. Under certain
3475 circumstances, the shell will use special values to indicate specific
3476 failure modes.
3477
3478 For the shell's purposes, a command which exits with a
3479 zero exit status has succeeded.
3480 A non-zero exit status indicates failure.
3481 This seemingly counter-intuitive scheme is used so there
3482 is one well-defined way to indicate success and a variety of
3483 ways to indicate various failure modes.
3484 When a command terminates on a fatal signal whose number is @var{N},
3485 Bash uses the value 128+@var{N} as the exit status.
3486
3487 If a command is not found, the child process created to
3488 execute it returns a status of 127. If a command is found
3489 but is not executable, the return status is 126.
3490
3491 If a command fails because of an error during expansion or redirection,
3492 the exit status is greater than zero.
3493
3494 The exit status is used by the Bash conditional commands
3495 (@pxref{Conditional Constructs}) and some of the list
3496 constructs (@pxref{Lists}).
3497
3498 All of the Bash builtins return an exit status of zero if they succeed
3499 and a non-zero status on failure, so they may be used by the
3500 conditional and list constructs.
3501 All builtins return an exit status of 2 to indicate incorrect usage,
3502 generally invalid options or missing arguments.
3503
3504 The exit status of the last command is available in the special
3505 parameter $? (@pxref{Special Parameters}).
3506
3507 @node Signals
3508 @subsection Signals
3509 @cindex signal handling
3510
3511 When Bash is interactive, in the absence of any traps, it ignores
3512 @code{SIGTERM} (so that @samp{kill 0} does not kill an interactive shell),
3513 and @code{SIGINT}
3514 is caught and handled (so that the @code{wait} builtin is interruptible).
3515 When Bash receives a @code{SIGINT}, it breaks out of any executing loops.
3516 In all cases, Bash ignores @code{SIGQUIT}.
3517 If job control is in effect (@pxref{Job Control}), Bash
3518 ignores @code{SIGTTIN}, @code{SIGTTOU}, and @code{SIGTSTP}.
3519
3520 Non-builtin commands started by Bash have signal handlers set to the
3521 values inherited by the shell from its parent.
3522 When job control is not in effect, asynchronous commands
3523 ignore @code{SIGINT} and @code{SIGQUIT} in addition to these inherited
3524 handlers.
3525 Commands run as a result of
3526 command substitution ignore the keyboard-generated job control signals
3527 @code{SIGTTIN}, @code{SIGTTOU}, and @code{SIGTSTP}.
3528
3529 The shell exits by default upon receipt of a @code{SIGHUP}.
3530 Before exiting, an interactive shell resends the @code{SIGHUP} to
3531 all jobs, running or stopped.
3532 Stopped jobs are sent @code{SIGCONT} to ensure that they receive
3533 the @code{SIGHUP}.
3534 To prevent the shell from sending the @code{SIGHUP} signal to a
3535 particular job, it should be removed
3536 from the jobs table with the @code{disown}
3537 builtin (@pxref{Job Control Builtins}) or marked
3538 to not receive @code{SIGHUP} using @code{disown -h}.
3539
3540 If the @code{huponexit} shell option has been set with @code{shopt}
3541 (@pxref{The Shopt Builtin}), Bash sends a @code{SIGHUP} to all jobs when
3542 an interactive login shell exits.
3543
3544 If Bash is waiting for a command to complete and receives a signal
3545 for which a trap has been set, the trap will not be executed until
3546 the command completes.
3547 When Bash is waiting for an asynchronous
3548 command via the @code{wait} builtin, the reception of a signal for
3549 which a trap has been set will cause the @code{wait} builtin to return
3550 immediately with an exit status greater than 128, immediately after
3551 which the trap is executed.
3552
3553 When job control is not enabled, and Bash is waiting for a foreground
3554 command to complete, the shell receives keyboard-generated signals
3555 such as @code{SIGINT} (usually generated by @samp{^C}) that users
3556 commonly intend to send to that command.
3557 This happens because the shell and the command are in the same process
3558 group as the terminal, and @samp{^C} sends @code{SIGINT} to all processes
3559 in that process group.
3560 See @ref{Job Control}, for a more in-depth discussion of process groups.
3561
3562 When Bash is running without job control enabled and receives @code{SIGINT}
3563 while waiting for a foreground command, it waits until that foreground
3564 command terminates and then decides what to do about the @code{SIGINT}:
3565
3566 @enumerate
3567 @item
3568 If the command terminates due to the @code{SIGINT}, Bash concludes
3569 that the user meant to end the entire script, and acts on the
3570 @code{SIGINT} (e.g., by running a @code{SIGINT} trap or exiting itself);
3571
3572 @item
3573 If the pipeline does not terminate due to @code{SIGINT}, the program
3574 handled the @code{SIGINT} itself and did not treat it as a fatal signal.
3575 In that case, Bash does not treat @code{SIGINT} as a fatal signal,
3576 either, instead assuming that the @code{SIGINT} was used as part of the
3577 program's normal operation (e.g., @command{emacs} uses it to abort editing
3578 commands) or deliberately discarded. However, Bash will run any
3579 trap set on @code{SIGINT}, as it does with any other trapped signal it
3580 receives while it is waiting for the foreground command to
3581 complete, for compatibility.
3582 @end enumerate
3583
3584 @node Shell Scripts
3585 @section Shell Scripts
3586 @cindex shell script
3587
3588 A shell script is a text file containing shell commands. When such
3589 a file is used as the first non-option argument when invoking Bash,
3590 and neither the @option{-c} nor @option{-s} option is supplied
3591 (@pxref{Invoking Bash}),
3592 Bash reads and executes commands from the file, then exits. This
3593 mode of operation creates a non-interactive shell. The shell first
3594 searches for the file in the current directory, and looks in the
3595 directories in @env{$PATH} if not found there.
3596
3597 When Bash runs
3598 a shell script, it sets the special parameter @code{0} to the name
3599 of the file, rather than the name of the shell, and the positional
3600 parameters are set to the remaining arguments, if any are given.
3601 If no additional arguments are supplied, the positional parameters
3602 are unset.
3603
3604 A shell script may be made executable by using the @code{chmod} command
3605 to turn on the execute bit. When Bash finds such a file while
3606 searching the @env{$PATH} for a command, it creates a
3607 new instance of itself
3608 to execute it.
3609 In other words, executing
3610 @example
3611 filename @var{arguments}
3612 @end example
3613 @noindent
3614 is equivalent to executing
3615 @example
3616 bash filename @var{arguments}
3617 @end example
3618
3619 @noindent
3620 if @code{filename} is an executable shell script.
3621 This subshell reinitializes itself, so that the effect is as if a
3622 new shell had been invoked to interpret the script, with the
3623 exception that the locations of commands remembered by the parent
3624 (see the description of @code{hash} in @ref{Bourne Shell Builtins})
3625 are retained by the child.
3626
3627 Most versions of Unix make this a part of the operating system's command
3628 execution mechanism. If the first line of a script begins with
3629 the two characters @samp{#!}, the remainder of the line specifies
3630 an interpreter for the program and, depending on the operating system, one
3631 or more optional arguments for that interpreter.
3632 Thus, you can specify Bash, @code{awk}, Perl, or some other
3633 interpreter and write the rest of the script file in that language.
3634
3635 The arguments to the interpreter
3636 consist of one or more optional arguments following the interpreter
3637 name on the first line of the script file, followed by the name of
3638 the script file, followed by the rest of the arguments supplied to the
3639 script.
3640 The details of how the interpreter line is split into an interpreter name
3641 and a set of arguments vary across systems.
3642 Bash will perform this action on operating systems that do not handle it
3643 themselves.
3644 Note that some older versions of Unix limit the interpreter
3645 name and a single argument to a maximum of 32 characters, so it's not
3646 portable to assume that using more than one argument will work.
3647
3648 Bash scripts often begin with @code{#! /bin/bash} (assuming that
3649 Bash has been installed in @file{/bin}), since this ensures that
3650 Bash will be used to interpret the script, even if it is executed
3651 under another shell. It's a common idiom to use @code{env} to find
3652 @code{bash} even if it's been installed in another directory:
3653 @code{#!/usr/bin/env bash} will find the first occurrence of @code{bash}
3654 in @env{$PATH}.
3655
3656 @node Shell Builtin Commands
3657 @chapter Shell Builtin Commands
3658
3659 @menu
3660 * Bourne Shell Builtins:: Builtin commands inherited from the Bourne
3661 Shell.
3662 * Bash Builtins:: Table of builtins specific to Bash.
3663 * Modifying Shell Behavior:: Builtins to modify shell attributes and
3664 optional behavior.
3665 * Special Builtins:: Builtin commands classified specially by
3666 POSIX.
3667 @end menu
3668
3669 Builtin commands are contained within the shell itself.
3670 When the name of a builtin command is used as the first word of
3671 a simple command (@pxref{Simple Commands}), the shell executes
3672 the command directly, without invoking another program.
3673 Builtin commands are necessary to implement functionality impossible
3674 or inconvenient to obtain with separate utilities.
3675
3676 This section briefly describes the builtins which Bash inherits from
3677 the Bourne Shell, as well as the builtin commands which are unique
3678 to or have been extended in Bash.
3679
3680 Several builtin commands are described in other chapters: builtin
3681 commands which provide the Bash interface to the job control
3682 facilities (@pxref{Job Control Builtins}), the directory stack
3683 (@pxref{Directory Stack Builtins}), the command history
3684 (@pxref{Bash History Builtins}), and the programmable completion
3685 facilities (@pxref{Programmable Completion Builtins}).
3686
3687 Many of the builtins have been extended by @sc{posix} or Bash.
3688
3689 Unless otherwise noted, each builtin command documented as accepting
3690 options preceded by @samp{-} accepts @samp{--}
3691 to signify the end of the options.
3692 The @code{:}, @code{true}, @code{false}, and @code{test}/@code{[}
3693 builtins do not accept options and do not treat @samp{--} specially.
3694 The @code{exit}, @code{logout}, @code{return},
3695 @code{break}, @code{continue}, @code{let},
3696 and @code{shift} builtins accept and process arguments beginning
3697 with @samp{-} without requiring @samp{--}.
3698 Other builtins that accept arguments but are not specified as accepting
3699 options interpret arguments beginning with @samp{-} as invalid options and
3700 require @samp{--} to prevent this interpretation.
3701
3702 @node Bourne Shell Builtins
3703 @section Bourne Shell Builtins
3704
3705 The following shell builtin commands are inherited from the Bourne Shell.
3706 These commands are implemented as specified by the @sc{posix} standard.
3707
3708 @table @code
3709 @item : @r{(a colon)}
3710 @btindex :
3711 @example
3712 : [@var{arguments}]
3713 @end example
3714
3715 Do nothing beyond expanding @var{arguments} and performing redirections.
3716 The return status is zero.
3717
3718 @item . @r{(a period)}
3719 @btindex .
3720 @example
3721 . @var{filename} [@var{arguments}]
3722 @end example
3723
3724 Read and execute commands from the @var{filename} argument in the
3725 current shell context. If @var{filename} does not contain a slash,
3726 the @env{PATH} variable is used to find @var{filename},
3727 but @var{filename} does not need to be executable.
3728 When Bash is not in @sc{posix} mode, the current directory is searched
3729 if @var{filename} is not found in @env{$PATH}.
3730 If any @var{arguments} are supplied, they become the positional
3731 parameters when @var{filename} is executed. Otherwise the positional
3732 parameters are unchanged.
3733 If the @option{-T} option is enabled, @code{.} inherits any trap on
3734 @code{DEBUG}; if it is not, any @code{DEBUG} trap string is saved and
3735 restored around the call to @code{.}, and @code{.} unsets the
3736 @code{DEBUG} trap while it executes.
3737 If @option{-T} is not set, and the sourced file changes
3738 the @code{DEBUG} trap, the new value is retained when @code{.} completes.
3739 The return status is the exit status of the last command executed, or
3740 zero if no commands are executed. If @var{filename} is not found, or
3741 cannot be read, the return status is non-zero.
3742 This builtin is equivalent to @code{source}.
3743
3744 @item break
3745 @btindex break
3746 @example
3747 break [@var{n}]
3748 @end example
3749
3750 Exit from a @code{for}, @code{while}, @code{until}, or @code{select} loop.
3751 If @var{n} is supplied, the @var{n}th enclosing loop is exited.
3752 @var{n} must be greater than or equal to 1.
3753 The return status is zero unless @var{n} is not greater than or equal to 1.
3754
3755 @item cd
3756 @btindex cd
3757 @example
3758 cd [-L|[-P [-e]] [-@@] [@var{directory}]
3759 @end example
3760
3761 Change the current working directory to @var{directory}.
3762 If @var{directory} is not supplied, the value of the @env{HOME}
3763 shell variable is used.
3764 If the shell variable
3765 @env{CDPATH} exists, it is used as a search path:
3766 each directory name in @env{CDPATH} is searched for
3767 @var{directory}, with alternative directory names in @env{CDPATH}
3768 separated by a colon (@samp{:}).
3769 If @var{directory} begins with a slash, @env{CDPATH} is not used.
3770
3771 The @option{-P} option means to not follow symbolic links: symbolic links
3772 are resolved while @code{cd} is traversing @var{directory} and before
3773 processing an instance of @samp{..} in @var{directory}.
3774
3775 By default, or when the @option{-L} option is supplied, symbolic links
3776 in @var{directory} are resolved after @code{cd} processes an instance
3777 of @samp{..} in @var{directory}.
3778
3779 If @samp{..} appears in @var{directory}, it is processed by removing the
3780 immediately preceding pathname component, back to a slash or the beginning
3781 of @var{directory}.
3782
3783 If the @option{-e} option is supplied with @option{-P}
3784 and the current working directory cannot be successfully determined
3785 after a successful directory change, @code{cd} will return an unsuccessful
3786 status.
3787
3788 On systems that support it, the @option{-@@} option presents the extended
3789 attributes associated with a file as a directory.
3790
3791 If @var{directory} is @samp{-}, it is converted to @env{$OLDPWD}
3792 before the directory change is attempted.
3793
3794 If a non-empty directory name from @env{CDPATH} is used, or if
3795 @samp{-} is the first argument, and the directory change is
3796 successful, the absolute pathname of the new working directory is
3797 written to the standard output.
3798
3799 If the directory change is successful, @code{cd} sets the value of the
3800 @env{PWD} environment variable to the new directory name, and sets the
3801 @env{OLDPWD} environment variable to the value of the current working
3802 directory before the change.
3803
3804 The return status is zero if the directory is successfully changed,
3805 non-zero otherwise.
3806
3807 @item continue
3808 @btindex continue
3809 @example
3810 continue [@var{n}]
3811 @end example
3812
3813 Resume the next iteration of an enclosing @code{for}, @code{while},
3814 @code{until}, or @code{select} loop.
3815 If @var{n} is supplied, the execution of the @var{n}th enclosing loop
3816 is resumed.
3817 @var{n} must be greater than or equal to 1.
3818 The return status is zero unless @var{n} is not greater than or equal to 1.
3819
3820 @item eval
3821 @btindex eval
3822 @example
3823 eval [@var{arguments}]
3824 @end example
3825
3826 The arguments are concatenated together into a single command, which is
3827 then read and executed, and its exit status returned as the exit status
3828 of @code{eval}.
3829 If there are no arguments or only empty arguments, the return status is
3830 zero.
3831
3832 @item exec
3833 @btindex exec
3834 @example
3835 exec [-cl] [-a @var{name}] [@var{command} [@var{arguments}]]
3836 @end example
3837
3838 If @var{command}
3839 is supplied, it replaces the shell without creating a new process.
3840 If the @option{-l} option is supplied, the shell places a dash at the
3841 beginning of the zeroth argument passed to @var{command}.
3842 This is what the @code{login} program does.
3843 The @option{-c} option causes @var{command} to be executed with an empty
3844 environment.
3845 If @option{-a} is supplied, the shell passes @var{name} as the zeroth
3846 argument to @var{command}.
3847 If @var{command}
3848 cannot be executed for some reason, a non-interactive shell exits,
3849 unless the @code{execfail} shell option
3850 is enabled. In that case, it returns failure.
3851 An interactive shell returns failure if the file cannot be executed.
3852 A subshell exits unconditionally if @code{exec} fails.
3853 If no @var{command} is specified, redirections may be used to affect
3854 the current shell environment. If there are no redirection errors, the
3855 return status is zero; otherwise the return status is non-zero.
3856
3857 @item exit
3858 @btindex exit
3859 @example
3860 exit [@var{n}]
3861 @end example
3862
3863 Exit the shell, returning a status of @var{n} to the shell's parent.
3864 If @var{n} is omitted, the exit status is that of the last command executed.
3865 Any trap on @code{EXIT} is executed before the shell terminates.
3866
3867 @item export
3868 @btindex export
3869 @example
3870 export [-fn] [-p] [@var{name}[=@var{value}]]
3871 @end example
3872
3873 Mark each @var{name} to be passed to child processes
3874 in the environment. If the @option{-f} option is supplied, the @var{name}s
3875 refer to shell functions; otherwise the names refer to shell variables.
3876 The @option{-n} option means to no longer mark each @var{name} for export.
3877 If no @var{name}s are supplied, or if the @option{-p} option is given, a
3878 list of names of all exported variables is displayed.
3879 The @option{-p} option displays output in a form that may be reused as input.
3880 If a variable name is followed by =@var{value}, the value of
3881 the variable is set to @var{value}.
3882
3883 The return status is zero unless an invalid option is supplied, one of
3884 the names is not a valid shell variable name, or @option{-f} is supplied
3885 with a name that is not a shell function.
3886
3887 @item getopts
3888 @btindex getopts
3889 @example
3890 getopts @var{optstring} @var{name} [@var{arg} @dots{}]
3891 @end example
3892
3893 @code{getopts} is used by shell scripts to parse positional parameters.
3894 @var{optstring} contains the option characters to be recognized; if a
3895 character is followed by a colon, the option is expected to have an
3896 argument, which should be separated from it by whitespace.
3897 The colon (@samp{:}) and question mark (@samp{?}) may not be
3898 used as option characters.
3899 Each time it is invoked, @code{getopts}
3900 places the next option in the shell variable @var{name}, initializing
3901 @var{name} if it does not exist,
3902 and the index of the next argument to be processed into the
3903 variable @env{OPTIND}.
3904 @env{OPTIND} is initialized to 1 each time the shell or a shell script
3905 is invoked.
3906 When an option requires an argument,
3907 @code{getopts} places that argument into the variable @env{OPTARG}.
3908 The shell does not reset @env{OPTIND} automatically; it must be manually
3909 reset between multiple calls to @code{getopts} within the same shell
3910 invocation if a new set of parameters is to be used.
3911
3912 When the end of options is encountered, @code{getopts} exits with a
3913 return value greater than zero.
3914 @env{OPTIND} is set to the index of the first non-option argument,
3915 and @var{name} is set to @samp{?}.
3916
3917 @code{getopts}
3918 normally parses the positional parameters, but if more arguments are
3919 supplied as @var{arg} values, @code{getopts} parses those instead.
3920
3921 @code{getopts} can report errors in two ways. If the first character of
3922 @var{optstring} is a colon, @var{silent}
3923 error reporting is used. In normal operation, diagnostic messages
3924 are printed when invalid options or missing option arguments are
3925 encountered.
3926 If the variable @env{OPTERR}
3927 is set to 0, no error messages will be displayed, even if the first
3928 character of @code{optstring} is not a colon.
3929
3930 If an invalid option is seen,
3931 @code{getopts} places @samp{?} into @var{name} and, if not silent,
3932 prints an error message and unsets @env{OPTARG}.
3933 If @code{getopts} is silent, the option character found is placed in
3934 @env{OPTARG} and no diagnostic message is printed.
3935
3936 If a required argument is not found, and @code{getopts}
3937 is not silent, a question mark (@samp{?}) is placed in @var{name},
3938 @code{OPTARG} is unset, and a diagnostic message is printed.
3939 If @code{getopts} is silent, then a colon (@samp{:}) is placed in
3940 @var{name} and @env{OPTARG} is set to the option character found.
3941
3942 @item hash
3943 @btindex hash
3944 @example
3945 hash [-r] [-p @var{filename}] [-dt] [@var{name}]
3946 @end example
3947
3948 Each time @code{hash} is invoked, it remembers the full pathnames of the
3949 commands specified as @var{name} arguments,
3950 so they need not be searched for on subsequent invocations.
3951 The commands are found by searching through the directories listed in
3952 @env{$PATH}.
3953 Any previously-remembered pathname is discarded.
3954 The @option{-p} option inhibits the path search, and @var{filename} is
3955 used as the location of @var{name}.
3956 The @option{-r} option causes the shell to forget all remembered locations.
3957 The @option{-d} option causes the shell to forget the remembered location
3958 of each @var{name}.
3959 If the @option{-t} option is supplied, the full pathname to which each
3960 @var{name} corresponds is printed. If multiple @var{name} arguments are
3961 supplied with @option{-t}, the @var{name} is printed before the hashed
3962 full pathname.
3963 The @option{-l} option causes output to be displayed in a format
3964 that may be reused as input.
3965 If no arguments are given, or if only @option{-l} is supplied,
3966 information about remembered commands is printed.
3967 The return status is zero unless a @var{name} is not found or an invalid
3968 option is supplied.
3969
3970 @item pwd
3971 @btindex pwd
3972 @example
3973 pwd [-LP]
3974 @end example
3975
3976 Print the absolute pathname of the current working directory.
3977 If the @option{-P} option is supplied, the pathname printed will not
3978 contain symbolic links.
3979 If the @option{-L} option is supplied, the pathname printed may contain
3980 symbolic links.
3981 The return status is zero unless an error is encountered while
3982 determining the name of the current directory or an invalid option
3983 is supplied.
3984
3985 @item readonly
3986 @btindex readonly
3987 @example
3988 readonly [-aAf] [-p] [@var{name}[=@var{value}]] @dots{}
3989 @end example
3990
3991 Mark each @var{name} as readonly.
3992 The values of these names may not be changed by subsequent assignment.
3993 If the @option{-f} option is supplied, each @var{name} refers to a shell
3994 function.
3995 The @option{-a} option means each @var{name} refers to an indexed
3996 array variable; the @option{-A} option means each @var{name} refers
3997 to an associative array variable.
3998 If both options are supplied, @option{-A} takes precedence.
3999 If no @var{name} arguments are given, or if the @option{-p}
4000 option is supplied, a list of all readonly names is printed.
4001 The other options may be used to restrict the output to a subset of
4002 the set of readonly names.
4003 The @option{-p} option causes output to be displayed in a format that
4004 may be reused as input.
4005 If a variable name is followed by =@var{value}, the value of
4006 the variable is set to @var{value}.
4007 The return status is zero unless an invalid option is supplied, one of
4008 the @var{name} arguments is not a valid shell variable or function name,
4009 or the @option{-f} option is supplied with a name that is not a shell function.
4010
4011 @item return
4012 @btindex return
4013 @example
4014 return [@var{n}]
4015 @end example
4016
4017 Cause a shell function to stop executing and return the value @var{n}
4018 to its caller.
4019 If @var{n} is not supplied, the return value is the exit status of the
4020 last command executed in the function.
4021 If @code{return} is executed by a trap handler, the last command used to
4022 determine the status is the last command executed before the trap handler.
4023 If @code{return} is executed during a @code{DEBUG} trap, the last command
4024 used to determine the status is the last command executed by the trap
4025 handler before @code{return} was invoked.
4026 @code{return} may also be used to terminate execution of a script
4027 being executed with the @code{.} (@code{source}) builtin,
4028 returning either @var{n} or
4029 the exit status of the last command executed within the script as the exit
4030 status of the script.
4031 If @var{n} is supplied, the return value is its least significant
4032 8 bits.
4033 Any command associated with the @code{RETURN} trap is executed
4034 before execution resumes after the function or script.
4035 The return status is non-zero if @code{return} is supplied a non-numeric
4036 argument or is used outside a function
4037 and not during the execution of a script by @code{.} or @code{source}.
4038
4039 @item shift
4040 @btindex shift
4041 @example
4042 shift [@var{n}]
4043 @end example
4044
4045 Shift the positional parameters to the left by @var{n}.
4046 The positional parameters from @var{n}+1 @dots{} @code{$#} are
4047 renamed to @code{$1} @dots{} @code{$#}-@var{n}.
4048 Parameters represented by the numbers @code{$#} down to @code{$#}-@var{n}+1
4049 are unset.
4050 @var{n} must be a non-negative number less than or equal to @code{$#}.
4051 If @var{n} is zero or greater than @code{$#}, the positional parameters
4052 are not changed.
4053 If @var{n} is not supplied, it is assumed to be 1.
4054 The return status is zero unless @var{n} is greater than @code{$#} or
4055 less than zero, non-zero otherwise.
4056
4057 @item test
4058 @itemx [
4059 @btindex test
4060 @btindex [
4061 @example
4062 test @var{expr}
4063 @end example
4064
4065 Evaluate a conditional expression @var{expr} and return a status of 0
4066 (true) or 1 (false).
4067 Each operator and operand must be a separate argument.
4068 Expressions are composed of the primaries described below in
4069 @ref{Bash Conditional Expressions}.
4070 @code{test} does not accept any options, nor does it accept and ignore
4071 an argument of @option{--} as signifying the end of options.
4072
4073 When the @code{[} form is used, the last argument to the command must
4074 be a @code{]}.
4075
4076 Expressions may be combined using the following operators, listed in
4077 decreasing order of precedence.
4078 The evaluation depends on the number of arguments; see below.
4079 Operator precedence is used when there are five or more arguments.
4080
4081 @table @code
4082 @item ! @var{expr}
4083 True if @var{expr} is false.
4084
4085 @item ( @var{expr} )
4086 Returns the value of @var{expr}.
4087 This may be used to override the normal precedence of operators.
4088
4089 @item @var{expr1} -a @var{expr2}
4090 True if both @var{expr1} and @var{expr2} are true.
4091
4092 @item @var{expr1} -o @var{expr2}
4093 True if either @var{expr1} or @var{expr2} is true.
4094 @end table
4095
4096 The @code{test} and @code{[} builtins evaluate conditional
4097 expressions using a set of rules based on the number of arguments.
4098
4099 @table @asis
4100 @item 0 arguments
4101 The expression is false.
4102
4103 @item 1 argument
4104 The expression is true if, and only if, the argument is not null.
4105
4106 @item 2 arguments
4107 If the first argument is @samp{!}, the expression is true if and
4108 only if the second argument is null.
4109 If the first argument is one of the unary conditional operators
4110 (@pxref{Bash Conditional Expressions}), the expression
4111 is true if the unary test is true.
4112 If the first argument is not a valid unary operator, the expression is
4113 false.
4114
4115 @item 3 arguments
4116 The following conditions are applied in the order listed.
4117
4118 @enumerate
4119 @item
4120 If the second argument is one of the binary conditional
4121 operators (@pxref{Bash Conditional Expressions}), the
4122 result of the expression is the result of the binary test using the
4123 first and third arguments as operands.
4124 The @samp{-a} and @samp{-o} operators are considered binary operators
4125 when there are three arguments.
4126 @item
4127 If the first argument is @samp{!}, the value is the negation of
4128 the two-argument test using the second and third arguments.
4129 @item
4130 If the first argument is exactly @samp{(} and the third argument is
4131 exactly @samp{)}, the result is the one-argument test of the second
4132 argument.
4133 @item
4134 Otherwise, the expression is false.
4135 @end enumerate
4136
4137 @item 4 arguments
4138 The following conditions are applied in the order listed.
4139
4140 @enumerate
4141 @item
4142 If the first argument is @samp{!}, the result is the negation of
4143 the three-argument expression composed of the remaining arguments.
4144 @item
4145 If the first argument is exactly @samp{(} and the fourth argument is
4146 exactly @samp{)}, the result is the two-argument test of the second
4147 and third arguments.
4148 @item
4149 Otherwise, the expression is parsed and evaluated according to
4150 precedence using the rules listed above.
4151 @end enumerate
4152
4153 @item 5 or more arguments
4154 The expression is parsed and evaluated according to precedence
4155 using the rules listed above.
4156 @end table
4157
4158 When used with @code{test} or @samp{[}, the @samp{<} and @samp{>}
4159 operators sort lexicographically using ASCII ordering.
4160
4161 @item times
4162 @btindex times
4163 @example
4164 times
4165 @end example
4166
4167 Print out the user and system times used by the shell and its children.
4168 The return status is zero.
4169
4170 @item trap
4171 @btindex trap
4172 @example
4173 trap [-lp] [@var{arg}] [@var{sigspec} @dots{}]
4174 @end example
4175
4176 The commands in @var{arg} are to be read and executed when the
4177 shell receives signal @var{sigspec}. If @var{arg} is absent (and
4178 there is a single @var{sigspec}) or
4179 equal to @samp{-}, each specified signal's disposition is reset
4180 to the value it had when the shell was started.
4181 If @var{arg} is the null string, then the signal specified by
4182 each @var{sigspec} is ignored by the shell and commands it invokes.
4183 If @var{arg} is not present and @option{-p} has been supplied,
4184 the shell displays the trap commands associated with each @var{sigspec}.
4185 If no arguments are supplied, or
4186 only @option{-p} is given, @code{trap} prints the list of commands
4187 associated with each signal number in a form that may be reused as
4188 shell input.
4189 The @option{-l} option causes the shell to print a list of signal names
4190 and their corresponding numbers.
4191 Each @var{sigspec} is either a signal name or a signal number.
4192 Signal names are case insensitive and the @code{SIG} prefix is optional.
4193
4194 If a @var{sigspec}
4195 is @code{0} or @code{EXIT}, @var{arg} is executed when the shell exits.
4196 If a @var{sigspec} is @code{DEBUG}, the command @var{arg} is executed
4197 before every simple command, @code{for} command, @code{case} command,
4198 @code{select} command, every arithmetic @code{for} command, and before
4199 the first command executes in a shell function.
4200 Refer to the description of the @code{extdebug} option to the
4201 @code{shopt} builtin (@pxref{The Shopt Builtin}) for details of its
4202 effect on the @code{DEBUG} trap.
4203 If a @var{sigspec} is @code{RETURN}, the command @var{arg} is executed
4204 each time a shell function or a script executed with the @code{.} or
4205 @code{source} builtins finishes executing.
4206
4207 If a @var{sigspec} is @code{ERR}, the command @var{arg}
4208 is executed whenever
4209 a pipeline (which may consist of a single simple
4210 command), a list, or a compound command returns a
4211 non-zero exit status,
4212 subject to the following conditions.
4213 The @code{ERR} trap is not executed if the failed command is part of the
4214 command list immediately following an @code{until} or @code{while} keyword,
4215 part of the test following the @code{if} or @code{elif} reserved words,
4216 part of a command executed in a @code{&&} or @code{||} list
4217 except the command following the final @code{&&} or @code{||},
4218 any command in a pipeline but the last,
4219 or if the command's return
4220 status is being inverted using @code{!}.
4221 These are the same conditions obeyed by the @code{errexit} (@option{-e})
4222 option.
4223
4224 Signals ignored upon entry to the shell cannot be trapped or reset.
4225 Trapped signals that are not being ignored are reset to their original
4226 values in a subshell or subshell environment when one is created.
4227
4228 The return status is zero unless a @var{sigspec} does not specify a
4229 valid signal.
4230
4231 @item umask
4232 @btindex umask
4233 @example
4234 umask [-p] [-S] [@var{mode}]
4235 @end example
4236
4237 Set the shell process's file creation mask to @var{mode}. If
4238 @var{mode} begins with a digit, it is interpreted as an octal number;
4239 if not, it is interpreted as a symbolic mode mask similar
4240 to that accepted by the @code{chmod} command. If @var{mode} is
4241 omitted, the current value of the mask is printed. If the @option{-S}
4242 option is supplied without a @var{mode} argument, the mask is printed
4243 in a symbolic format.
4244 If the @option{-p} option is supplied, and @var{mode}
4245 is omitted, the output is in a form that may be reused as input.
4246 The return status is zero if the mode is successfully changed or if
4247 no @var{mode} argument is supplied, and non-zero otherwise.
4248
4249 Note that when the mode is interpreted as an octal number, each number
4250 of the umask is subtracted from @code{7}. Thus, a umask of @code{022}
4251 results in permissions of @code{755}.
4252
4253 @item unset
4254 @btindex unset
4255 @example
4256 unset [-fnv] [@var{name}]
4257 @end example
4258
4259 Remove each variable or function @var{name}.
4260 If the @option{-v} option is given, each
4261 @var{name} refers to a shell variable and that variable is removed.
4262 If the @option{-f} option is given, the @var{name}s refer to shell
4263 functions, and the function definition is removed.
4264 If the @option{-n} option is supplied, and @var{name} is a variable with
4265 the @code{nameref} attribute, @var{name} will be unset rather than the
4266 variable it references.
4267 @option{-n} has no effect if the @option{-f} option is supplied.
4268 If no options are supplied, each @var{name} refers to a variable; if
4269 there is no variable by that name, a function with that name, if any, is
4270 unset.
4271 Readonly variables and functions may not be unset.
4272 Some shell variables lose their special behavior if they are unset; such
4273 behavior is noted in the description of the individual variables.
4274 The return status is zero unless a @var{name} is readonly or may not be unset.
4275 @end table
4276
4277 @node Bash Builtins
4278 @section Bash Builtin Commands
4279
4280 This section describes builtin commands which are unique to
4281 or have been extended in Bash.
4282 Some of these commands are specified in the @sc{posix} standard.
4283
4284 @table @code
4285
4286 @item alias
4287 @btindex alias
4288 @example
4289 alias [-p] [@var{name}[=@var{value}] @dots{}]
4290 @end example
4291
4292 Without arguments or with the @option{-p} option, @code{alias} prints
4293 the list of aliases on the standard output in a form that allows
4294 them to be reused as input.
4295 If arguments are supplied, an alias is defined for each @var{name}
4296 whose @var{value} is given. If no @var{value} is given, the name
4297 and value of the alias is printed.
4298 Aliases are described in @ref{Aliases}.
4299
4300 @item bind
4301 @btindex bind
4302 @example
4303 bind [-m @var{keymap}] [-lpsvPSVX]
4304 bind [-m @var{keymap}] [-q @var{function}] [-u @var{function}] [-r @var{keyseq}]
4305 bind [-m @var{keymap}] -f @var{filename}
4306 bind [-m @var{keymap}] -x @var{keyseq:shell-command}
4307 bind [-m @var{keymap}] @var{keyseq:function-name}
4308 bind [-m @var{keymap}] @var{keyseq:readline-command}
4309 bind @var{readline-command-line}
4310 @end example
4311
4312 Display current Readline (@pxref{Command Line Editing})
4313 key and function bindings,
4314 bind a key sequence to a Readline function or macro,
4315 or set a Readline variable.
4316 Each non-option argument is a command as it would appear in a
4317 Readline initialization file (@pxref{Readline Init File}),
4318 but each binding or command must be passed as a separate argument; e.g.,
4319 @samp{"\C-x\C-r":re-read-init-file}.
4320
4321 Options, if supplied, have the following meanings:
4322
4323 @table @code
4324 @item -m @var{keymap}
4325 Use @var{keymap} as the keymap to be affected by
4326 the subsequent bindings. Acceptable @var{keymap}
4327 names are
4328 @code{emacs},
4329 @code{emacs-standard},
4330 @code{emacs-meta},
4331 @code{emacs-ctlx},
4332 @code{vi},
4333 @code{vi-move},
4334 @code{vi-command}, and
4335 @code{vi-insert}.
4336 @code{vi} is equivalent to @code{vi-command} (@code{vi-move} is also a
4337 synonym); @code{emacs} is equivalent to @code{emacs-standard}.
4338
4339 @item -l
4340 List the names of all Readline functions.
4341
4342 @item -p
4343 Display Readline function names and bindings in such a way that they
4344 can be used as input or in a Readline initialization file.
4345
4346 @item -P
4347 List current Readline function names and bindings.
4348
4349 @item -v
4350 Display Readline variable names and values in such a way that they
4351 can be used as input or in a Readline initialization file.
4352
4353 @item -V
4354 List current Readline variable names and values.
4355
4356 @item -s
4357 Display Readline key sequences bound to macros and the strings they output
4358 in such a way that they can be used as input or in a Readline
4359 initialization file.
4360
4361 @item -S
4362 Display Readline key sequences bound to macros and the strings they output.
4363
4364 @item -f @var{filename}
4365 Read key bindings from @var{filename}.
4366
4367 @item -q @var{function}
4368 Query about which keys invoke the named @var{function}.
4369
4370 @item -u @var{function}
4371 Unbind all keys bound to the named @var{function}.
4372
4373 @item -r @var{keyseq}
4374 Remove any current binding for @var{keyseq}.
4375
4376 @item -x @var{keyseq:shell-command}
4377 Cause @var{shell-command} to be executed whenever @var{keyseq} is
4378 entered.
4379 When @var{shell-command} is executed, the shell sets the
4380 @code{READLINE_LINE} variable to the contents of the Readline line
4381 buffer and the @code{READLINE_POINT} and @code{READLINE_MARK} variables
4382 to the current location of the insertion point and the saved insertion
4383 point (the @var{mark}), respectively.
4384 The shell assigns any numeric argument the user supplied to the
4385 @code{READLINE_ARGUMENT} variable.
4386 If there was no argument, that variable is not set.
4387 If the executed command changes the value of any of @code{READLINE_LINE},
4388 @code{READLINE_POINT}, or @code{READLINE_MARK}, those new values will be
4389 reflected in the editing state.
4390
4391 @item -X
4392 List all key sequences bound to shell commands and the associated commands
4393 in a format that can be reused as input.
4394 @end table
4395
4396 @noindent
4397 The return status is zero unless an invalid option is supplied or an
4398 error occurs.
4399
4400 @item builtin
4401 @btindex builtin
4402 @example
4403 builtin [@var{shell-builtin} [@var{args}]]
4404 @end example
4405
4406 Run a shell builtin, passing it @var{args}, and return its exit status.
4407 This is useful when defining a shell function with the same
4408 name as a shell builtin, retaining the functionality of the builtin within
4409 the function.
4410 The return status is non-zero if @var{shell-builtin} is not a shell
4411 builtin command.
4412
4413 @item caller
4414 @btindex caller
4415 @example
4416 caller [@var{expr}]
4417 @end example
4418
4419 Returns the context of any active subroutine call (a shell function or
4420 a script executed with the @code{.} or @code{source} builtins).
4421
4422 Without @var{expr}, @code{caller} displays the line number and source
4423 filename of the current subroutine call.
4424 If a non-negative integer is supplied as @var{expr}, @code{caller}
4425 displays the line number, subroutine name, and source file corresponding
4426 to that position in the current execution call stack. This extra
4427 information may be used, for example, to print a stack trace. The
4428 current frame is frame 0.
4429
4430 The return value is 0 unless the shell is not executing a subroutine
4431 call or @var{expr} does not correspond to a valid position in the
4432 call stack.
4433
4434 @item command
4435 @btindex command
4436 @example
4437 command [-pVv] @var{command} [@var{arguments} @dots{}]
4438 @end example
4439
4440 Runs @var{command} with @var{arguments} ignoring any shell function
4441 named @var{command}.
4442 Only shell builtin commands or commands found by searching the
4443 @env{PATH} are executed.
4444 If there is a shell function named @code{ls}, running @samp{command ls}
4445 within the function will execute the external command @code{ls}
4446 instead of calling the function recursively.
4447 The @option{-p} option means to use a default value for @env{PATH}
4448 that is guaranteed to find all of the standard utilities.
4449 The return status in this case is 127 if @var{command} cannot be
4450 found or an error occurred, and the exit status of @var{command}
4451 otherwise.
4452
4453 If either the @option{-V} or @option{-v} option is supplied, a
4454 description of @var{command} is printed. The @option{-v} option
4455 causes a single word indicating the command or file name used to
4456 invoke @var{command} to be displayed; the @option{-V} option produces
4457 a more verbose description. In this case, the return status is
4458 zero if @var{command} is found, and non-zero if not.
4459
4460 @item declare
4461 @btindex declare
4462 @example
4463 declare [-aAfFgiIlnrtux] [-p] [@var{name}[=@var{value}] @dots{}]
4464 @end example
4465
4466 Declare variables and give them attributes. If no @var{name}s
4467 are given, then display the values of variables instead.
4468
4469 The @option{-p} option will display the attributes and values of each
4470 @var{name}.
4471 When @option{-p} is used with @var{name} arguments, additional options,
4472 other than @option{-f} and @option{-F}, are ignored.
4473
4474 When @option{-p} is supplied without @var{name} arguments, @code{declare}
4475 will display the attributes and values of all variables having the
4476 attributes specified by the additional options.
4477 If no other options are supplied with @option{-p}, @code{declare} will
4478 display the attributes and values of all shell variables. The @option{-f}
4479 option will restrict the display to shell functions.
4480
4481 The @option{-F} option inhibits the display of function definitions;
4482 only the function name and attributes are printed.
4483 If the @code{extdebug} shell option is enabled using @code{shopt}
4484 (@pxref{The Shopt Builtin}), the source file name and line number where
4485 each @var{name} is defined are displayed as well.
4486 @option{-F} implies @option{-f}.
4487
4488 The @option{-g} option forces variables to be created or modified at
4489 the global scope, even when @code{declare} is executed in a shell function.
4490 It is ignored in all other cases.
4491
4492 The @option{-I} option causes local variables to inherit the attributes
4493 (except the @code{nameref} attribute)
4494 and value of any existing variable with the same
4495 @var{name} at a surrounding scope.
4496 If there is no existing variable, the local variable is initially unset.
4497
4498 The following options can be used to restrict output to variables with
4499 the specified attributes or to give variables attributes:
4500
4501 @table @code
4502 @item -a
4503 Each @var{name} is an indexed array variable (@pxref{Arrays}).
4504
4505 @item -A
4506 Each @var{name} is an associative array variable (@pxref{Arrays}).
4507
4508 @item -f
4509 Use function names only.
4510
4511 @item -i
4512 The variable is to be treated as
4513 an integer; arithmetic evaluation (@pxref{Shell Arithmetic}) is
4514 performed when the variable is assigned a value.
4515
4516 @item -l
4517 When the variable is assigned a value, all upper-case characters are
4518 converted to lower-case.
4519 The upper-case attribute is disabled.
4520
4521 @item -n
4522 Give each @var{name} the @code{nameref} attribute, making
4523 it a name reference to another variable.
4524 That other variable is defined by the value of @var{name}.
4525 All references, assignments, and attribute modifications
4526 to @var{name}, except for those using or changing the
4527 @option{-n} attribute itself, are performed on the variable referenced by
4528 @var{name}'s value.
4529 The nameref attribute cannot be applied to array variables.
4530
4531 @item -r
4532 Make @var{name}s readonly. These names cannot then be assigned values
4533 by subsequent assignment statements or unset.
4534
4535 @item -t
4536 Give each @var{name} the @code{trace} attribute.
4537 Traced functions inherit the @code{DEBUG} and @code{RETURN} traps from
4538 the calling shell.
4539 The trace attribute has no special meaning for variables.
4540
4541 @item -u
4542 When the variable is assigned a value, all lower-case characters are
4543 converted to upper-case.
4544 The lower-case attribute is disabled.
4545
4546 @item -x
4547 Mark each @var{name} for export to subsequent commands via
4548 the environment.
4549 @end table
4550
4551 Using @samp{+} instead of @samp{-} turns off the attribute instead,
4552 with the exceptions that @samp{+a} and @samp{+A}
4553 may not be used to destroy array variables and @samp{+r} will not
4554 remove the readonly attribute.
4555 When used in a function, @code{declare} makes each @var{name} local,
4556 as with the @code{local} command, unless the @option{-g} option is used.
4557 If a variable name is followed by =@var{value}, the value of the variable
4558 is set to @var{value}.
4559
4560 When using @option{-a} or @option{-A} and the compound assignment syntax to
4561 create array variables, additional attributes do not take effect until
4562 subsequent assignments.
4563
4564 The return status is zero unless an invalid option is encountered,
4565 an attempt is made to define a function using @samp{-f foo=bar},
4566 an attempt is made to assign a value to a readonly variable,
4567 an attempt is made to assign a value to an array variable without
4568 using the compound assignment syntax (@pxref{Arrays}),
4569 one of the @var{name}s is not a valid shell variable name,
4570 an attempt is made to turn off readonly status for a readonly variable,
4571 an attempt is made to turn off array status for an array variable,
4572 or an attempt is made to display a non-existent function with @option{-f}.
4573
4574 @item echo
4575 @btindex echo
4576 @example
4577 echo [-neE] [@var{arg} @dots{}]
4578 @end example
4579
4580 Output the @var{arg}s, separated by spaces, terminated with a
4581 newline.
4582 The return status is 0 unless a write error occurs.
4583 If @option{-n} is specified, the trailing newline is suppressed.
4584 If the @option{-e} option is given, interpretation of the following
4585 backslash-escaped characters is enabled.
4586 The @option{-E} option disables the interpretation of these escape characters,
4587 even on systems where they are interpreted by default.
4588 The @code{xpg_echo} shell option may be used to
4589 dynamically determine whether or not @code{echo} expands these
4590 escape characters by default.
4591 @code{echo} does not interpret @option{--} to mean the end of options.
4592
4593 @code{echo} interprets the following escape sequences:
4594 @table @code
4595 @item \a
4596 alert (bell)
4597 @item \b
4598 backspace
4599 @item \c
4600 suppress further output
4601 @item \e
4602 @itemx \E
4603 escape
4604 @item \f
4605 form feed
4606 @item \n
4607 new line
4608 @item \r
4609 carriage return
4610 @item \t
4611 horizontal tab
4612 @item \v
4613 vertical tab
4614 @item \\
4615 backslash
4616 @item \0@var{nnn}
4617 the eight-bit character whose value is the octal value @var{nnn}
4618 (zero to three octal digits)
4619 @item \x@var{HH}
4620 the eight-bit character whose value is the hexadecimal value @var{HH}
4621 (one or two hex digits)
4622 @item \u@var{HHHH}
4623 the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value
4624 @var{HHHH} (one to four hex digits)
4625 @item \U@var{HHHHHHHH}
4626 the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value
4627 @var{HHHHHHHH} (one to eight hex digits)
4628 @end table
4629
4630 @item enable
4631 @btindex enable
4632 @example
4633 enable [-a] [-dnps] [-f @var{filename}] [@var{name} @dots{}]
4634 @end example
4635
4636 Enable and disable builtin shell commands.
4637 Disabling a builtin allows a disk command which has the same name
4638 as a shell builtin to be executed without specifying a full pathname,
4639 even though the shell normally searches for builtins before disk commands.
4640 If @option{-n} is used, the @var{name}s become disabled. Otherwise
4641 @var{name}s are enabled. For example, to use the @code{test} binary
4642 found via @env{$PATH} instead of the shell builtin version, type
4643 @samp{enable -n test}.
4644
4645 If the @option{-p} option is supplied, or no @var{name} arguments appear,
4646 a list of shell builtins is printed. With no other arguments, the list
4647 consists of all enabled shell builtins.
4648 The @option{-a} option means to list
4649 each builtin with an indication of whether or not it is enabled.
4650
4651 The @option{-f} option means to load the new builtin command @var{name}
4652 from shared object @var{filename}, on systems that support dynamic loading.
4653 Bash will use the value of the @env{BASH_LOADABLES_PATH} variable as a
4654 colon-separated list of directories in which to search for @var{filename}.
4655 The default is system-dependent.
4656 The @option{-d} option will delete a builtin loaded with @option{-f}.
4657
4658 If there are no options, a list of the shell builtins is displayed.
4659 The @option{-s} option restricts @code{enable} to the @sc{posix} special
4660 builtins. If @option{-s} is used with @option{-f}, the new builtin becomes
4661 a special builtin (@pxref{Special Builtins}).
4662
4663 If no options are supplied and a @var{name} is not a shell builtin,
4664 @code{enable} will attempt to load @var{name} from a shared object named
4665 @var{name}, as if the command were
4666 @samp{enable -f @var{name} @var{name}}.
4667
4668 The return status is zero unless a @var{name} is not a shell builtin
4669 or there is an error loading a new builtin from a shared object.
4670
4671 @item help
4672 @btindex help
4673 @example
4674 help [-dms] [@var{pattern}]
4675 @end example
4676
4677 Display helpful information about builtin commands.
4678 If @var{pattern} is specified, @code{help} gives detailed help
4679 on all commands matching @var{pattern}, otherwise a list of
4680 the builtins is printed.
4681
4682 Options, if supplied, have the following meanings:
4683
4684 @table @code
4685 @item -d
4686 Display a short description of each @var{pattern}
4687 @item -m
4688 Display the description of each @var{pattern} in a manpage-like format
4689 @item -s
4690 Display only a short usage synopsis for each @var{pattern}
4691 @end table
4692
4693 The return status is zero unless no command matches @var{pattern}.
4694
4695 @item let
4696 @btindex let
4697 @example
4698 let @var{expression} [@var{expression} @dots{}]
4699 @end example
4700
4701 The @code{let} builtin allows arithmetic to be performed on shell
4702 variables. Each @var{expression} is evaluated according to the
4703 rules given below in @ref{Shell Arithmetic}. If the
4704 last @var{expression} evaluates to 0, @code{let} returns 1;
4705 otherwise 0 is returned.
4706
4707 @item local
4708 @btindex local
4709 @example
4710 local [@var{option}] @var{name}[=@var{value}] @dots{}
4711 @end example
4712
4713 For each argument, a local variable named @var{name} is created,
4714 and assigned @var{value}.
4715 The @var{option} can be any of the options accepted by @code{declare}.
4716 @code{local} can only be used within a function; it makes the variable
4717 @var{name} have a visible scope restricted to that function and its
4718 children.
4719 If @var{name} is @samp{-}, the set of shell options is made local to the
4720 function in which @code{local} is invoked: shell options changed using
4721 the @code{set} builtin inside the function are restored to their original
4722 values when the function returns.
4723 The restore is effected as if a series of @code{set} commands were executed
4724 to restore the values that were in place before the function.
4725 The return status is zero unless @code{local} is used outside
4726 a function, an invalid @var{name} is supplied, or @var{name} is a
4727 readonly variable.
4728
4729 @item logout
4730 @btindex logout
4731 @example
4732 logout [@var{n}]
4733 @end example
4734
4735 Exit a login shell, returning a status of @var{n} to the shell's
4736 parent.
4737
4738 @item mapfile
4739 @btindex mapfile
4740 @example
4741 mapfile [-d @var{delim}] [-n @var{count}] [-O @var{origin}] [-s @var{count}]
4742 [-t] [-u @var{fd}] [-C @var{callback}] [-c @var{quantum}] [@var{array}]
4743 @end example
4744
4745 Read lines from the standard input into the indexed array variable @var{array},
4746 or from file descriptor @var{fd}
4747 if the @option{-u} option is supplied.
4748 The variable @code{MAPFILE} is the default @var{array}.
4749 Options, if supplied, have the following meanings:
4750
4751 @table @code
4752
4753 @item -d
4754 The first character of @var{delim} is used to terminate each input line,
4755 rather than newline.
4756 If @var{delim} is the empty string, @code{mapfile} will terminate a line
4757 when it reads a NUL character.
4758 @item -n
4759 Copy at most @var{count} lines. If @var{count} is 0, all lines are copied.
4760 @item -O
4761 Begin assigning to @var{array} at index @var{origin}.
4762 The default index is 0.
4763 @item -s
4764 Discard the first @var{count} lines read.
4765 @item -t
4766 Remove a trailing @var{delim} (default newline) from each line read.
4767 @item -u
4768 Read lines from file descriptor @var{fd} instead of the standard input.
4769 @item -C
4770 Evaluate @var{callback} each time @var{quantum} lines are read.
4771 The @option{-c} option specifies @var{quantum}.
4772 @item -c
4773 Specify the number of lines read between each call to @var{callback}.
4774 @end table
4775
4776 If @option{-C} is specified without @option{-c},
4777 the default quantum is 5000.
4778 When @var{callback} is evaluated, it is supplied the index of the next
4779 array element to be assigned and the line to be assigned to that element
4780 as additional arguments.
4781 @var{callback} is evaluated after the line is read but before the
4782 array element is assigned.
4783
4784 If not supplied with an explicit origin, @code{mapfile} will clear @var{array}
4785 before assigning to it.
4786
4787 @code{mapfile} returns successfully unless an invalid option or option
4788 argument is supplied, @var{array} is invalid or unassignable, or @var{array}
4789 is not an indexed array.
4790
4791 @item printf
4792 @btindex printf
4793 @example
4794 printf [-v @var{var}] @var{format} [@var{arguments}]
4795 @end example
4796
4797 Write the formatted @var{arguments} to the standard output under the
4798 control of the @var{format}.
4799 The @option{-v} option causes the output to be assigned to the variable
4800 @var{var} rather than being printed to the standard output.
4801
4802 The @var{format} is a character string which contains three types of objects:
4803 plain characters, which are simply copied to standard output, character
4804 escape sequences, which are converted and copied to the standard output, and
4805 format specifications, each of which causes printing of the next successive
4806 @var{argument}.
4807 In addition to the standard @code{printf(1)} formats, @code{printf}
4808 interprets the following extensions:
4809
4810 @table @code
4811 @item %b
4812 Causes @code{printf} to expand backslash escape sequences in the
4813 corresponding @var{argument} in the same way as @code{echo -e}
4814 (@pxref{Bash Builtins}).
4815 @item %q
4816 Causes @code{printf} to output the
4817 corresponding @var{argument} in a format that can be reused as shell input.
4818 @item %Q
4819 like @code{%q}, but applies any supplied precision to the @var{argument}
4820 before quoting it.
4821 @item %(@var{datefmt})T
4822 Causes @code{printf} to output the date-time string resulting from using
4823 @var{datefmt} as a format string for @code{strftime}(3).
4824 The corresponding @var{argument} is an integer representing the number of
4825 seconds since the epoch.
4826 Two special argument values may be used: -1 represents the current
4827 time, and -2 represents the time the shell was invoked.
4828 If no argument is specified, conversion behaves as if -1 had been given.
4829 This is an exception to the usual @code{printf} behavior.
4830 @end table
4831
4832 @noindent
4833 The %b, %q, and %T directives all use the field width and precision
4834 arguments from the format specification and write that many bytes from
4835 (or use that wide a field for) the expanded argument, which usually
4836 contains more characters than the original.
4837
4838 Arguments to non-string format specifiers are treated as C language constants,
4839 except that a leading plus or minus sign is allowed, and if the leading
4840 character is a single or double quote, the value is the ASCII value of
4841 the following character.
4842
4843 The @var{format} is reused as necessary to consume all of the @var{arguments}.
4844 If the @var{format} requires more @var{arguments} than are supplied, the
4845 extra format specifications behave as if a zero value or null string, as
4846 appropriate, had been supplied. The return value is zero on success,
4847 non-zero on failure.
4848
4849 @item read
4850 @btindex read
4851 @example
4852 read [-ers] [-a @var{aname}] [-d @var{delim}] [-i @var{text}] [-n @var{nchars}]
4853 [-N @var{nchars}] [-p @var{prompt}] [-t @var{timeout}] [-u @var{fd}] [@var{name} @dots{}]
4854 @end example
4855
4856 One line is read from the standard input, or from the file descriptor
4857 @var{fd} supplied as an argument to the @option{-u} option,
4858 split into words as described above in @ref{Word Splitting},
4859 and the first word
4860 is assigned to the first @var{name}, the second word to the second @var{name},
4861 and so on.
4862 If there are more words than names,
4863 the remaining words and their intervening delimiters are assigned
4864 to the last @var{name}.
4865 If there are fewer words read from the input stream than names,
4866 the remaining names are assigned empty values.
4867 The characters in the value of the @env{IFS} variable
4868 are used to split the line into words using the same rules the shell
4869 uses for expansion (described above in @ref{Word Splitting}).
4870 The backslash character @samp{\} may be used to remove any special
4871 meaning for the next character read and for line continuation.
4872
4873 Options, if supplied, have the following meanings:
4874
4875 @table @code
4876 @item -a @var{aname}
4877 The words are assigned to sequential indices of the array variable
4878 @var{aname}, starting at 0.
4879 All elements are removed from @var{aname} before the assignment.
4880 Other @var{name} arguments are ignored.
4881
4882 @item -d @var{delim}
4883 The first character of @var{delim} is used to terminate the input line,
4884 rather than newline.
4885 If @var{delim} is the empty string, @code{read} will terminate a line
4886 when it reads a NUL character.
4887
4888 @item -e
4889 Readline (@pxref{Command Line Editing}) is used to obtain the line.
4890 Readline uses the current (or default, if line editing was not previously
4891 active) editing settings, but uses Readline's default filename completion.
4892
4893 @item -i @var{text}
4894 If Readline is being used to read the line, @var{text} is placed into
4895 the editing buffer before editing begins.
4896
4897 @item -n @var{nchars}
4898 @code{read} returns after reading @var{nchars} characters rather than
4899 waiting for a complete line of input, but honors a delimiter if fewer
4900 than @var{nchars} characters are read before the delimiter.
4901
4902 @item -N @var{nchars}
4903 @code{read} returns after reading exactly @var{nchars} characters rather
4904 than waiting for a complete line of input, unless EOF is encountered or
4905 @code{read} times out.
4906 Delimiter characters encountered in the input are
4907 not treated specially and do not cause @code{read} to return until
4908 @var{nchars} characters are read.
4909 The result is not split on the characters in @code{IFS}; the intent is
4910 that the variable is assigned exactly the characters read
4911 (with the exception of backslash; see the @option{-r} option below).
4912
4913 @item -p @var{prompt}
4914 Display @var{prompt}, without a trailing newline, before attempting
4915 to read any input.
4916 The prompt is displayed only if input is coming from a terminal.
4917
4918 @item -r
4919 If this option is given, backslash does not act as an escape character.
4920 The backslash is considered to be part of the line.
4921 In particular, a backslash-newline pair may not then be used as a line
4922 continuation.
4923
4924 @item -s
4925 Silent mode. If input is coming from a terminal, characters are
4926 not echoed.
4927
4928 @item -t @var{timeout}
4929 Cause @code{read} to time out and return failure if a complete line of
4930 input (or a specified number of characters)
4931 is not read within @var{timeout} seconds.
4932 @var{timeout} may be a decimal number with a fractional portion following
4933 the decimal point.
4934 This option is only effective if @code{read} is reading input from a
4935 terminal, pipe, or other special file; it has no effect when reading
4936 from regular files.
4937 If @code{read} times out, @code{read} saves any partial input read into
4938 the specified variable @var{name}.
4939 If @var{timeout} is 0, @code{read} returns immediately, without trying to
4940 read any data.
4941 The exit status is 0 if input is available on the specified file descriptor,
4942 or the read will return EOF,
4943 non-zero otherwise.
4944 The exit status is greater than 128 if the timeout is exceeded.
4945
4946 @item -u @var{fd}
4947 Read input from file descriptor @var{fd}.
4948 @end table
4949
4950 If no @var{name}s are supplied, the line read,
4951 without the ending delimiter but otherwise unmodified,
4952 is assigned to the
4953 variable @env{REPLY}.
4954 The exit status is zero, unless end-of-file is encountered, @code{read}
4955 times out (in which case the status is greater than 128),
4956 a variable assignment error (such as assigning to a readonly variable) occurs,
4957 or an invalid file descriptor is supplied as the argument to @option{-u}.
4958
4959 @item readarray
4960 @btindex readarray
4961 @example
4962 readarray [-d @var{delim}] [-n @var{count}] [-O @var{origin}] [-s @var{count}]
4963 [-t] [-u @var{fd}] [-C @var{callback}] [-c @var{quantum}] [@var{array}]
4964 @end example
4965
4966 Read lines from the standard input into the indexed array variable @var{array},
4967 or from file descriptor @var{fd}
4968 if the @option{-u} option is supplied.
4969
4970 A synonym for @code{mapfile}.
4971
4972 @item source
4973 @btindex source
4974 @example
4975 source @var{filename}
4976 @end example
4977
4978 A synonym for @code{.} (@pxref{Bourne Shell Builtins}).
4979
4980 @item type
4981 @btindex type
4982 @example
4983 type [-afptP] [@var{name} @dots{}]
4984 @end example
4985
4986 For each @var{name}, indicate how it would be interpreted if used as a
4987 command name.
4988
4989 If the @option{-t} option is used, @code{type} prints a single word
4990 which is one of @samp{alias}, @samp{function}, @samp{builtin},
4991 @samp{file} or @samp{keyword},
4992 if @var{name} is an alias, shell function, shell builtin,
4993 disk file, or shell reserved word, respectively.
4994 If the @var{name} is not found, then nothing is printed, and
4995 @code{type} returns a failure status.
4996
4997 If the @option{-p} option is used, @code{type} either returns the name
4998 of the disk file that would be executed, or nothing if @option{-t}
4999 would not return @samp{file}.
5000
5001 The @option{-P} option forces a path search for each @var{name}, even if
5002 @option{-t} would not return @samp{file}.
5003
5004 If a command is hashed, @option{-p} and @option{-P} print the hashed value,
5005 which is not necessarily the file that appears first in @code{$PATH}.
5006
5007 If the @option{-a} option is used, @code{type} returns all of the places
5008 that contain an executable named @var{file}.
5009 This includes aliases and functions, if and only if the @option{-p} option
5010 is not also used.
5011
5012 If the @option{-f} option is used, @code{type} does not attempt to find
5013 shell functions, as with the @code{command} builtin.
5014
5015 The return status is zero if all of the @var{name}s are found, non-zero
5016 if any are not found.
5017
5018 @item typeset
5019 @btindex typeset
5020 @example
5021 typeset [-afFgrxilnrtux] [-p] [@var{name}[=@var{value}] @dots{}]
5022 @end example
5023
5024 The @code{typeset} command is supplied for compatibility with the Korn
5025 shell.
5026 It is a synonym for the @code{declare} builtin command.
5027
5028 @item ulimit
5029 @btindex ulimit
5030 @example
5031 ulimit [-HS] -a
5032 ulimit [-HS] [-bcdefiklmnpqrstuvxPRT] [@var{limit}]
5033 @end example
5034
5035 @code{ulimit} provides control over the resources available to processes
5036 started by the shell, on systems that allow such control. If an
5037 option is given, it is interpreted as follows:
5038
5039 @table @code
5040 @item -S
5041 Change and report the soft limit associated with a resource.
5042
5043 @item -H
5044 Change and report the hard limit associated with a resource.
5045
5046 @item -a
5047 All current limits are reported; no limits are set.
5048
5049 @item -b
5050 The maximum socket buffer size.
5051
5052 @item -c
5053 The maximum size of core files created.
5054
5055 @item -d
5056 The maximum size of a process's data segment.
5057
5058 @item -e
5059 The maximum scheduling priority ("nice").
5060
5061 @item -f
5062 The maximum size of files written by the shell and its children.
5063
5064 @item -i
5065 The maximum number of pending signals.
5066
5067 @item -k
5068 The maximum number of kqueues that may be allocated.
5069
5070 @item -l
5071 The maximum size that may be locked into memory.
5072
5073 @item -m
5074 The maximum resident set size (many systems do not honor this limit).
5075
5076 @item -n
5077 The maximum number of open file descriptors (most systems do not
5078 allow this value to be set).
5079
5080 @item -p
5081 The pipe buffer size.
5082
5083 @item -q
5084 The maximum number of bytes in @sc{posix} message queues.
5085
5086 @item -r
5087 The maximum real-time scheduling priority.
5088
5089 @item -s
5090 The maximum stack size.
5091
5092 @item -t
5093 The maximum amount of cpu time in seconds.
5094
5095 @item -u
5096 The maximum number of processes available to a single user.
5097
5098 @item -v
5099 The maximum amount of virtual memory available to the shell, and, on
5100 some systems, to its children.
5101
5102 @item -x
5103 The maximum number of file locks.
5104
5105 @item -P
5106 The maximum number of pseudoterminals.
5107
5108 @item -R
5109 The maximum time a real-time process can run before blocking, in microseconds.
5110
5111 @item -T
5112 The maximum number of threads.
5113 @end table
5114
5115 If @var{limit} is given, and the @option{-a} option is not used,
5116 @var{limit} is the new value of the specified resource.
5117 The special @var{limit} values @code{hard}, @code{soft}, and
5118 @code{unlimited} stand for the current hard limit, the current soft limit,
5119 and no limit, respectively.
5120 A hard limit cannot be increased by a non-root user once it is set;
5121 a soft limit may be increased up to the value of the hard limit.
5122 Otherwise, the current value of the soft limit for the specified resource
5123 is printed, unless the @option{-H} option is supplied.
5124 When more than one
5125 resource is specified, the limit name and unit, if appropriate,
5126 are printed before the value.
5127 When setting new limits, if neither @option{-H} nor @option{-S} is supplied,
5128 both the hard and soft limits are set.
5129 If no option is given, then @option{-f} is assumed. Values are in 1024-byte
5130 increments, except for
5131 @option{-t}, which is in seconds;
5132 @option{-R}, which is in microseconds;
5133 @option{-p}, which is in units of 512-byte blocks;
5134 @option{-P},
5135 @option{-T},
5136 @option{-b},
5137 @option{-k},
5138 @option{-n} and @option{-u}, which are unscaled values;
5139 and, when in @sc{posix} Mode (@pxref{Bash POSIX Mode}),
5140 @option{-c} and @option{-f}, which are in 512-byte increments.
5141
5142 The return status is zero unless an invalid option or argument is supplied,
5143 or an error occurs while setting a new limit.
5144
5145 @item unalias
5146 @btindex unalias
5147 @example
5148 unalias [-a] [@var{name} @dots{} ]
5149 @end example
5150
5151 Remove each @var{name} from the list of aliases. If @option{-a} is
5152 supplied, all aliases are removed.
5153 Aliases are described in @ref{Aliases}.
5154 @end table
5155
5156 @node Modifying Shell Behavior
5157 @section Modifying Shell Behavior
5158
5159 @menu
5160 * The Set Builtin:: Change the values of shell attributes and
5161 positional parameters.
5162 * The Shopt Builtin:: Modify shell optional behavior.
5163 @end menu
5164
5165 @node The Set Builtin
5166 @subsection The Set Builtin
5167
5168 This builtin is so complicated that it deserves its own section. @code{set}
5169 allows you to change the values of shell options and set the positional
5170 parameters, or to display the names and values of shell variables.
5171
5172 @table @code
5173 @item set
5174 @btindex set
5175 @example
5176 set [-abefhkmnptuvxBCEHPT] [-o @var{option-name}] [--] [-] [@var{argument} @dots{}]
5177 set [+abefhkmnptuvxBCEHPT] [+o @var{option-name}] [--] [-] [@var{argument} @dots{}]
5178 @end example
5179
5180 If no options or arguments are supplied, @code{set} displays the names
5181 and values of all shell variables and functions, sorted according to the
5182 current locale, in a format that may be reused as input
5183 for setting or resetting the currently-set variables.
5184 Read-only variables cannot be reset.
5185 In @sc{posix} mode, only shell variables are listed.
5186
5187 When options are supplied, they set or unset shell attributes.
5188 Options, if specified, have the following meanings:
5189
5190 @table @code
5191 @item -a
5192 Each variable or function that is created or modified is given the
5193 export attribute and marked for export to the environment of
5194 subsequent commands.
5195
5196 @item -b
5197 Cause the status of terminated background jobs to be reported
5198 immediately, rather than before printing the next primary prompt.
5199
5200 @item -e
5201 Exit immediately if
5202 a pipeline (@pxref{Pipelines}), which may consist of a single simple command
5203 (@pxref{Simple Commands}),
5204 a list (@pxref{Lists}),
5205 or a compound command (@pxref{Compound Commands})
5206 returns a non-zero status.
5207 The shell does not exit if the command that fails is part of the
5208 command list immediately following a @code{while} or @code{until} keyword,
5209 part of the test in an @code{if} statement,
5210 part of any command executed in a @code{&&} or @code{||} list except
5211 the command following the final @code{&&} or @code{||},
5212 any command in a pipeline but the last,
5213 or if the command's return status is being inverted with @code{!}.
5214 If a compound command other than a subshell
5215 returns a non-zero status because a command failed
5216 while @option{-e} was being ignored, the shell does not exit.
5217 A trap on @code{ERR}, if set, is executed before the shell exits.
5218
5219 This option applies to the shell environment and each subshell environment
5220 separately (@pxref{Command Execution Environment}), and may cause
5221 subshells to exit before executing all the commands in the subshell.
5222
5223 If a compound command or shell function executes in a context where
5224 @option{-e} is being ignored,
5225 none of the commands executed within the compound command or function body
5226 will be affected by the @option{-e} setting, even if @option{-e} is set
5227 and a command returns a failure status.
5228 If a compound command or shell function sets @option{-e} while executing in
5229 a context where @option{-e} is ignored, that setting will not have any
5230 effect until the compound command or the command containing the function
5231 call completes.
5232
5233 @item -f
5234 Disable filename expansion (globbing).
5235
5236 @item -h
5237 Locate and remember (hash) commands as they are looked up for execution.
5238 This option is enabled by default.
5239
5240 @item -k
5241 All arguments in the form of assignment statements are placed
5242 in the environment for a command, not just those that precede
5243 the command name.
5244
5245 @item -m
5246 Job control is enabled (@pxref{Job Control}).
5247 All processes run in a separate process group.
5248 When a background job completes, the shell prints a line
5249 containing its exit status.
5250
5251 @item -n
5252 Read commands but do not execute them.
5253 This may be used to check a script for syntax errors.
5254 This option is ignored by interactive shells.
5255
5256 @item -o @var{option-name}
5257
5258 Set the option corresponding to @var{option-name}:
5259
5260 @table @code
5261 @item allexport
5262 Same as @code{-a}.
5263
5264 @item braceexpand
5265 Same as @code{-B}.
5266
5267 @item emacs
5268 Use an @code{emacs}-style line editing interface (@pxref{Command Line Editing}).
5269 This also affects the editing interface used for @code{read -e}.
5270
5271 @item errexit
5272 Same as @code{-e}.
5273
5274 @item errtrace
5275 Same as @code{-E}.
5276
5277 @item functrace
5278 Same as @code{-T}.
5279
5280 @item hashall
5281 Same as @code{-h}.
5282
5283 @item histexpand
5284 Same as @code{-H}.
5285
5286 @item history
5287 Enable command history, as described in @ref{Bash History Facilities}.
5288 This option is on by default in interactive shells.
5289
5290 @item ignoreeof
5291 An interactive shell will not exit upon reading EOF.
5292
5293 @item keyword
5294 Same as @code{-k}.
5295
5296 @item monitor
5297 Same as @code{-m}.
5298
5299 @item noclobber
5300 Same as @code{-C}.
5301
5302 @item noexec
5303 Same as @code{-n}.
5304
5305 @item noglob
5306 Same as @code{-f}.
5307
5308 @item nolog
5309 Currently ignored.
5310
5311 @item notify
5312 Same as @code{-b}.
5313
5314 @item nounset
5315 Same as @code{-u}.
5316
5317 @item onecmd
5318 Same as @code{-t}.
5319
5320 @item physical
5321 Same as @code{-P}.
5322
5323 @item pipefail
5324 If set, the return value of a pipeline is the value of the last
5325 (rightmost) command to exit with a non-zero status, or zero if all
5326 commands in the pipeline exit successfully.
5327 This option is disabled by default.
5328
5329 @item posix
5330 Change the behavior of Bash where the default operation differs
5331 from the @sc{posix} standard to match the standard
5332 (@pxref{Bash POSIX Mode}).
5333 This is intended to make Bash behave as a strict superset of that
5334 standard.
5335
5336 @item privileged
5337 Same as @code{-p}.
5338
5339 @item verbose
5340 Same as @code{-v}.
5341
5342 @item vi
5343 Use a @code{vi}-style line editing interface.
5344 This also affects the editing interface used for @code{read -e}.
5345
5346 @item xtrace
5347 Same as @code{-x}.
5348 @end table
5349
5350 @item -p
5351 Turn on privileged mode.
5352 In this mode, the @env{$BASH_ENV} and @env{$ENV} files are not
5353 processed, shell functions are not inherited from the environment,
5354 and the @env{SHELLOPTS}, @env{BASHOPTS}, @env{CDPATH} and @env{GLOBIGNORE}
5355 variables, if they appear in the environment, are ignored.
5356 If the shell is started with the effective user (group) id not equal to the
5357 real user (group) id, and the @option{-p} option is not supplied, these actions
5358 are taken and the effective user id is set to the real user id.
5359 If the @option{-p} option is supplied at startup, the effective user id is
5360 not reset.
5361 Turning this option off causes the effective user
5362 and group ids to be set to the real user and group ids.
5363
5364 @item -r
5365 Enable restricted shell mode.
5366 This option cannot be unset once it has been set.
5367
5368 @item -t
5369 Exit after reading and executing one command.
5370
5371 @item -u
5372 Treat unset variables and parameters other than the special parameters
5373 @samp{@@} or @samp{*},
5374 or array variables subscripted with @samp{@@} or @samp{*},
5375 as an error when performing parameter expansion.
5376 An error message will be written to the standard error, and a non-interactive
5377 shell will exit.
5378
5379 @item -v
5380 Print shell input lines as they are read.
5381
5382 @item -x
5383 Print a trace of simple commands, @code{for} commands, @code{case}
5384 commands, @code{select} commands, and arithmetic @code{for} commands
5385 and their arguments or associated word lists after they are
5386 expanded and before they are executed. The value of the @env{PS4}
5387 variable is expanded and the resultant value is printed before
5388 the command and its expanded arguments.
5389
5390 @item -B
5391 The shell will perform brace expansion (@pxref{Brace Expansion}).
5392 This option is on by default.
5393
5394 @item -C
5395 Prevent output redirection using @samp{>}, @samp{>&}, and @samp{<>}
5396 from overwriting existing files.
5397
5398 @item -E
5399 If set, any trap on @code{ERR} is inherited by shell functions, command
5400 substitutions, and commands executed in a subshell environment.
5401 The @code{ERR} trap is normally not inherited in such cases.
5402
5403 @item -H
5404 Enable @samp{!} style history substitution (@pxref{History Interaction}).
5405 This option is on by default for interactive shells.
5406
5407 @item -P
5408 If set, do not resolve symbolic links when performing commands such as
5409 @code{cd} which change the current directory. The physical directory
5410 is used instead. By default, Bash follows
5411 the logical chain of directories when performing commands
5412 which change the current directory.
5413
5414 For example, if @file{/usr/sys} is a symbolic link to @file{/usr/local/sys}
5415 then:
5416 @example
5417 $ cd /usr/sys; echo $PWD
5418 /usr/sys
5419 $ cd ..; pwd
5420 /usr
5421 @end example
5422
5423 @noindent
5424 If @code{set -P} is on, then:
5425 @example
5426 $ cd /usr/sys; echo $PWD
5427 /usr/local/sys
5428 $ cd ..; pwd
5429 /usr/local
5430 @end example
5431
5432 @item -T
5433 If set, any trap on @code{DEBUG} and @code{RETURN} are inherited by
5434 shell functions, command substitutions, and commands executed
5435 in a subshell environment.
5436 The @code{DEBUG} and @code{RETURN} traps are normally not inherited
5437 in such cases.
5438
5439 @item --
5440 If no arguments follow this option, then the positional parameters are
5441 unset. Otherwise, the positional parameters are set to the
5442 @var{arguments}, even if some of them begin with a @samp{-}.
5443
5444 @item -
5445 Signal the end of options, cause all remaining @var{arguments}
5446 to be assigned to the positional parameters. The @option{-x}
5447 and @option{-v} options are turned off.
5448 If there are no arguments, the positional parameters remain unchanged.
5449 @end table
5450
5451 Using @samp{+} rather than @samp{-} causes these options to be
5452 turned off. The options can also be used upon invocation of the
5453 shell. The current set of options may be found in @code{$-}.
5454
5455 The remaining N @var{arguments} are positional parameters and are
5456 assigned, in order, to @code{$1}, @code{$2}, @dots{} @code{$N}.
5457 The special parameter @code{#} is set to N.
5458
5459 The return status is always zero unless an invalid option is supplied.
5460 @end table
5461
5462 @node The Shopt Builtin
5463 @subsection The Shopt Builtin
5464
5465 This builtin allows you to change additional shell optional behavior.
5466
5467 @table @code
5468
5469 @item shopt
5470 @btindex shopt
5471 @example
5472 shopt [-pqsu] [-o] [@var{optname} @dots{}]
5473 @end example
5474
5475 Toggle the values of settings controlling optional shell behavior.
5476 The settings can be either those listed below, or, if the
5477 @option{-o} option is used, those available with the @option{-o}
5478 option to the @code{set} builtin command (@pxref{The Set Builtin}).
5479 With no options, or with the @option{-p} option, a list of all settable
5480 options is displayed, with an indication of whether or not each is set;
5481 if @var{optname}s are supplied, the output is restricted to those options.
5482 The @option{-p} option causes output to be displayed in a form that
5483 may be reused as input.
5484 Other options have the following meanings:
5485
5486 @table @code
5487 @item -s
5488 Enable (set) each @var{optname}.
5489
5490 @item -u
5491 Disable (unset) each @var{optname}.
5492
5493 @item -q
5494 Suppresses normal output; the return status
5495 indicates whether the @var{optname} is set or unset.
5496 If multiple @var{optname} arguments are given with @option{-q},
5497 the return status is zero if all @var{optname}s are enabled;
5498 non-zero otherwise.
5499
5500 @item -o
5501 Restricts the values of
5502 @var{optname} to be those defined for the @option{-o} option to the
5503 @code{set} builtin (@pxref{The Set Builtin}).
5504 @end table
5505
5506 If either @option{-s} or @option{-u}
5507 is used with no @var{optname} arguments, @code{shopt} shows only
5508 those options which are set or unset, respectively.
5509
5510 Unless otherwise noted, the @code{shopt} options are disabled (off)
5511 by default.
5512
5513 The return status when listing options is zero if all @var{optname}s
5514 are enabled, non-zero otherwise. When setting or unsetting options,
5515 the return status is zero unless an @var{optname} is not a valid shell
5516 option.
5517
5518 The list of @code{shopt} options is:
5519 @table @code
5520
5521 @item assoc_expand_once
5522 If set, the shell suppresses multiple evaluation of associative array
5523 subscripts during arithmetic expression evaluation, while executing
5524 builtins that can perform variable assignments,
5525 and while executing builtins that perform array dereferencing.
5526
5527 @item autocd
5528 If set, a command name that is the name of a directory is executed as if
5529 it were the argument to the @code{cd} command.
5530 This option is only used by interactive shells.
5531
5532 @item cdable_vars
5533 If this is set, an argument to the @code{cd} builtin command that
5534 is not a directory is assumed to be the name of a variable whose
5535 value is the directory to change to.
5536
5537 @item cdspell
5538 If set, minor errors in the spelling of a directory component in a
5539 @code{cd} command will be corrected.
5540 The errors checked for are transposed characters,
5541 a missing character, and a character too many.
5542 If a correction is found, the corrected path is printed,
5543 and the command proceeds.
5544 This option is only used by interactive shells.
5545
5546 @item checkhash
5547 If this is set, Bash checks that a command found in the hash
5548 table exists before trying to execute it. If a hashed command no
5549 longer exists, a normal path search is performed.
5550
5551 @item checkjobs
5552 If set, Bash lists the status of any stopped and running jobs before
5553 exiting an interactive shell. If any jobs are running, this causes
5554 the exit to be deferred until a second exit is attempted without an
5555 intervening command (@pxref{Job Control}).
5556 The shell always postpones exiting if any jobs are stopped.
5557
5558 @item checkwinsize
5559 If set, Bash checks the window size after each external (non-builtin)
5560 command and, if necessary, updates the values of
5561 @env{LINES} and @env{COLUMNS}.
5562 This option is enabled by default.
5563
5564 @item cmdhist
5565 If set, Bash
5566 attempts to save all lines of a multiple-line
5567 command in the same history entry. This allows
5568 easy re-editing of multi-line commands.
5569 This option is enabled by default, but only has an effect if command
5570 history is enabled (@pxref{Bash History Facilities}).
5571
5572 @item compat31
5573 @itemx compat32
5574 @itemx compat40
5575 @itemx compat41
5576 @itemx compat42
5577 @itemx compat43
5578 @itemx compat44
5579 These control aspects of the shell's compatibility mode
5580 (@pxref{Shell Compatibility Mode}).
5581
5582 @item complete_fullquote
5583 If set, Bash
5584 quotes all shell metacharacters in filenames and directory names when
5585 performing completion.
5586 If not set, Bash
5587 removes metacharacters such as the dollar sign from the set of
5588 characters that will be quoted in completed filenames
5589 when these metacharacters appear in shell variable references in words to be
5590 completed.
5591 This means that dollar signs in variable names that expand to directories
5592 will not be quoted;
5593 however, any dollar signs appearing in filenames will not be quoted, either.
5594 This is active only when bash is using backslashes to quote completed
5595 filenames.
5596 This variable is set by default, which is the default Bash behavior in
5597 versions through 4.2.
5598
5599 @item direxpand
5600 If set, Bash
5601 replaces directory names with the results of word expansion when performing
5602 filename completion. This changes the contents of the readline editing
5603 buffer.
5604 If not set, Bash attempts to preserve what the user typed.
5605
5606 @item dirspell
5607 If set, Bash
5608 attempts spelling correction on directory names during word completion
5609 if the directory name initially supplied does not exist.
5610
5611 @item dotglob
5612 If set, Bash includes filenames beginning with a `.' in
5613 the results of filename expansion.
5614 The filenames @samp{.} and @samp{..} must always be matched explicitly,
5615 even if @code{dotglob} is set.
5616
5617 @item execfail
5618 If this is set, a non-interactive shell will not exit if
5619 it cannot execute the file specified as an argument to the @code{exec}
5620 builtin command. An interactive shell does not exit if @code{exec}
5621 fails.
5622
5623 @item expand_aliases
5624 If set, aliases are expanded as described below under Aliases,
5625 @ref{Aliases}.
5626 This option is enabled by default for interactive shells.
5627
5628 @item extdebug
5629 If set at shell invocation,
5630 or in a shell startup file,
5631 arrange to execute the debugger profile
5632 before the shell starts, identical to the @option{--debugger} option.
5633 If set after invocation, behavior intended for use by debuggers is enabled:
5634
5635 @enumerate
5636 @item
5637 The @option{-F} option to the @code{declare} builtin (@pxref{Bash Builtins})
5638 displays the source file name and line number corresponding to each function
5639 name supplied as an argument.
5640
5641 @item
5642 If the command run by the @code{DEBUG} trap returns a non-zero value, the
5643 next command is skipped and not executed.
5644
5645 @item
5646 If the command run by the @code{DEBUG} trap returns a value of 2, and the
5647 shell is executing in a subroutine (a shell function or a shell script
5648 executed by the @code{.} or @code{source} builtins), the shell simulates
5649 a call to @code{return}.
5650
5651 @item
5652 @code{BASH_ARGC} and @code{BASH_ARGV} are updated as described in their
5653 descriptions (@pxref{Bash Variables}).
5654
5655 @item
5656 Function tracing is enabled: command substitution, shell functions, and
5657 subshells invoked with @code{( @var{command} )} inherit the
5658 @code{DEBUG} and @code{RETURN} traps.
5659
5660 @item
5661 Error tracing is enabled: command substitution, shell functions, and
5662 subshells invoked with @code{( @var{command} )} inherit the
5663 @code{ERR} trap.
5664 @end enumerate
5665
5666 @item extglob
5667 If set, the extended pattern matching features described above
5668 (@pxref{Pattern Matching}) are enabled.
5669
5670 @item extquote
5671 If set, @code{$'@var{string}'} and @code{$"@var{string}"} quoting is
5672 performed within @code{$@{@var{parameter}@}} expansions
5673 enclosed in double quotes. This option is enabled by default.
5674
5675 @item failglob
5676 If set, patterns which fail to match filenames during filename expansion
5677 result in an expansion error.
5678
5679 @item force_fignore
5680 If set, the suffixes specified by the @env{FIGNORE} shell variable
5681 cause words to be ignored when performing word completion even if
5682 the ignored words are the only possible completions.
5683 @xref{Bash Variables}, for a description of @env{FIGNORE}.
5684 This option is enabled by default.
5685
5686 @item globasciiranges
5687 If set, range expressions used in pattern matching bracket expressions
5688 (@pxref{Pattern Matching})
5689 behave as if in the traditional C locale when performing
5690 comparisons. That is, the current locale's collating sequence
5691 is not taken into account, so
5692 @samp{b} will not collate between @samp{A} and @samp{B},
5693 and upper-case and lower-case ASCII characters will collate together.
5694
5695 @item globstar
5696 If set, the pattern @samp{**} used in a filename expansion context will
5697 match all files and zero or more directories and subdirectories.
5698 If the pattern is followed by a @samp{/}, only directories and
5699 subdirectories match.
5700
5701 @item gnu_errfmt
5702 If set, shell error messages are written in the standard @sc{gnu} error
5703 message format.
5704
5705 @item histappend
5706 If set, the history list is appended to the file named by the value
5707 of the @env{HISTFILE}
5708 variable when the shell exits, rather than overwriting the file.
5709
5710 @item histreedit
5711 If set, and Readline
5712 is being used, a user is given the opportunity to re-edit a
5713 failed history substitution.
5714
5715 @item histverify
5716 If set, and Readline
5717 is being used, the results of history substitution are not immediately
5718 passed to the shell parser. Instead, the resulting line is loaded into
5719 the Readline editing buffer, allowing further modification.
5720
5721 @item hostcomplete
5722 If set, and Readline is being used, Bash will attempt to perform
5723 hostname completion when a word containing a @samp{@@} is being
5724 completed (@pxref{Commands For Completion}). This option is enabled
5725 by default.
5726
5727 @item huponexit
5728 If set, Bash will send @code{SIGHUP} to all jobs when an interactive
5729 login shell exits (@pxref{Signals}).
5730
5731 @item inherit_errexit
5732 If set, command substitution inherits the value of the @code{errexit} option,
5733 instead of unsetting it in the subshell environment.
5734 This option is enabled when @sc{posix} mode is enabled.
5735
5736 @item interactive_comments
5737 Allow a word beginning with @samp{#}
5738 to cause that word and all remaining characters on that
5739 line to be ignored in an interactive shell.
5740 This option is enabled by default.
5741
5742 @item lastpipe
5743 If set, and job control is not active, the shell runs the last command of
5744 a pipeline not executed in the background in the current shell environment.
5745
5746 @item lithist
5747 If enabled, and the @code{cmdhist}
5748 option is enabled, multi-line commands are saved to the history with
5749 embedded newlines rather than using semicolon separators where possible.
5750
5751 @item localvar_inherit
5752 If set, local variables inherit the value and attributes of a variable of
5753 the same name that exists at a previous scope before any new value is
5754 assigned. The @code{nameref} attribute is not inherited.
5755
5756 @item localvar_unset
5757 If set, calling @code{unset} on local variables in previous function scopes
5758 marks them so subsequent lookups find them unset until that function
5759 returns. This is identical to the behavior of unsetting local variables
5760 at the current function scope.
5761
5762 @item login_shell
5763 The shell sets this option if it is started as a login shell
5764 (@pxref{Invoking Bash}).
5765 The value may not be changed.
5766
5767 @item mailwarn
5768 If set, and a file that Bash is checking for mail has been
5769 accessed since the last time it was checked, the message
5770 @code{"The mail in @var{mailfile} has been read"} is displayed.
5771
5772 @item no_empty_cmd_completion
5773 If set, and Readline is being used, Bash will not attempt to search
5774 the @env{PATH} for possible completions when completion is attempted
5775 on an empty line.
5776
5777 @item nocaseglob
5778 If set, Bash matches filenames in a case-insensitive fashion when
5779 performing filename expansion.
5780
5781 @item nocasematch
5782 If set, Bash matches patterns in a case-insensitive fashion when
5783 performing matching while executing @code{case} or @code{[[}
5784 conditional commands (@pxref{Conditional Constructs},
5785 when performing pattern substitution word expansions,
5786 or when filtering possible completions as part of programmable completion.
5787
5788 @item noexpand_translation
5789 If set, Bash
5790 encloses the translated results of $"..." quoting in single quotes
5791 instead of double quotes.
5792 If the string is not translated, this has no effect.
5793
5794 @item nullglob
5795 If set, Bash allows filename patterns which match no
5796 files to expand to a null string, rather than themselves.
5797
5798 @item patsub_replacement
5799 If set, Bash
5800 expands occurrences of @samp{&} in the replacement string of pattern
5801 substitution to the text matched by the pattern, as described
5802 above (@pxref{Shell Parameter Expansion}).
5803 This option is enabled by default.
5804
5805 @item progcomp
5806 If set, the programmable completion facilities
5807 (@pxref{Programmable Completion}) are enabled.
5808 This option is enabled by default.
5809
5810 @item progcomp_alias
5811 If set, and programmable completion is enabled, Bash treats a command
5812 name that doesn't have any completions as a possible alias and attempts
5813 alias expansion. If it has an alias, Bash attempts programmable
5814 completion using the command word resulting from the expanded alias.
5815
5816 @item promptvars
5817 If set, prompt strings undergo
5818 parameter expansion, command substitution, arithmetic
5819 expansion, and quote removal after being expanded
5820 as described below (@pxref{Controlling the Prompt}).
5821 This option is enabled by default.
5822
5823 @item restricted_shell
5824 The shell sets this option if it is started in restricted mode
5825 (@pxref{The Restricted Shell}).
5826 The value may not be changed.
5827 This is not reset when the startup files are executed, allowing
5828 the startup files to discover whether or not a shell is restricted.
5829
5830 @item shift_verbose
5831 If this is set, the @code{shift}
5832 builtin prints an error message when the shift count exceeds the
5833 number of positional parameters.
5834
5835 @item sourcepath
5836 If set, the @code{.} (@code{source}) builtin uses the value of @env{PATH}
5837 to find the directory containing the file supplied as an argument.
5838 This option is enabled by default.
5839
5840 @item varredir_close
5841 If set, the shell automatically closes file descriptors assigned using the
5842 @code{@{varname@}} redirection syntax (@pxref{Redirections}) instead of
5843 leaving them open when the command completes.
5844
5845 @item xpg_echo
5846 If set, the @code{echo} builtin expands backslash-escape sequences
5847 by default.
5848
5849 @end table
5850 @end table
5851
5852 @node Special Builtins
5853 @section Special Builtins
5854 @cindex special builtin
5855
5856 For historical reasons, the @sc{posix} standard has classified
5857 several builtin commands as @emph{special}.
5858 When Bash is executing in @sc{posix} mode, the special builtins
5859 differ from other builtin commands in three respects:
5860
5861 @enumerate
5862 @item
5863 Special builtins are found before shell functions during command lookup.
5864
5865 @item
5866 If a special builtin returns an error status, a non-interactive shell exits.
5867
5868 @item
5869 Assignment statements preceding the command stay in effect in the shell
5870 environment after the command completes.
5871 @end enumerate
5872
5873 When Bash is not executing in @sc{posix} mode, these builtins behave no
5874 differently than the rest of the Bash builtin commands.
5875 The Bash @sc{posix} mode is described in @ref{Bash POSIX Mode}.
5876
5877 These are the @sc{posix} special builtins:
5878 @example
5879 @w{break : . continue eval exec exit export readonly return set}
5880 @w{shift trap unset}
5881 @end example
5882
5883 @node Shell Variables
5884 @chapter Shell Variables
5885
5886 @menu
5887 * Bourne Shell Variables:: Variables which Bash uses in the same way
5888 as the Bourne Shell.
5889 * Bash Variables:: List of variables that exist in Bash.
5890 @end menu
5891
5892 This chapter describes the shell variables that Bash uses.
5893 Bash automatically assigns default values to a number of variables.
5894
5895 @node Bourne Shell Variables
5896 @section Bourne Shell Variables
5897
5898 Bash uses certain shell variables in the same way as the Bourne shell.
5899 In some cases, Bash assigns a default value to the variable.
5900
5901 @vtable @code
5902
5903 @item CDPATH
5904 A colon-separated list of directories used as a search path for
5905 the @code{cd} builtin command.
5906
5907 @item HOME
5908 The current user's home directory; the default for the @code{cd} builtin
5909 command.
5910 The value of this variable is also used by tilde expansion
5911 (@pxref{Tilde Expansion}).
5912
5913 @item IFS
5914 A list of characters that separate fields; used when the shell splits
5915 words as part of expansion.
5916
5917 @item MAIL
5918 If this parameter is set to a filename or directory name
5919 and the @env{MAILPATH} variable
5920 is not set, Bash informs the user of the arrival of mail in
5921 the specified file or Maildir-format directory.
5922
5923 @item MAILPATH
5924 A colon-separated list of filenames which the shell periodically checks
5925 for new mail.
5926 Each list entry can specify the message that is printed when new mail
5927 arrives in the mail file by separating the filename from the message with
5928 a @samp{?}.
5929 When used in the text of the message, @code{$_} expands to the name of
5930 the current mail file.
5931
5932 @item OPTARG
5933 The value of the last option argument processed by the @code{getopts} builtin.
5934
5935 @item OPTIND
5936 The index of the last option argument processed by the @code{getopts} builtin.
5937
5938 @item PATH
5939 A colon-separated list of directories in which the shell looks for
5940 commands.
5941 A zero-length (null) directory name in the value of @code{PATH} indicates the
5942 current directory.
5943 A null directory name may appear as two adjacent colons, or as an initial
5944 or trailing colon.
5945
5946 @item PS1
5947 The primary prompt string. The default value is @samp{\s-\v\$ }.
5948 @xref{Controlling the Prompt}, for the complete list of escape
5949 sequences that are expanded before @env{PS1} is displayed.
5950
5951 @item PS2
5952 The secondary prompt string. The default value is @samp{> }.
5953 @env{PS2} is expanded in the same way as @env{PS1} before being
5954 displayed.
5955
5956 @end vtable
5957
5958 @node Bash Variables
5959 @section Bash Variables
5960
5961 These variables are set or used by Bash, but other shells
5962 do not normally treat them specially.
5963
5964 A few variables used by Bash are described in different chapters:
5965 variables for controlling the job control facilities
5966 (@pxref{Job Control Variables}).
5967
5968 @vtable @code
5969
5970 @item _
5971 @vindex $_
5972 ($_, an underscore.)
5973 At shell startup, set to the pathname used to invoke the
5974 shell or shell script being executed as passed in the environment
5975 or argument list.
5976 Subsequently, expands to the last argument to the previous simple
5977 command executed in the foreground, after expansion.
5978 Also set to the full pathname used to invoke each command executed
5979 and placed in the environment exported to that command.
5980 When checking mail, this parameter holds the name of the mail file.
5981
5982 @item BASH
5983 The full pathname used to execute the current instance of Bash.
5984
5985 @item BASHOPTS
5986 A colon-separated list of enabled shell options. Each word in
5987 the list is a valid argument for the @option{-s} option to the
5988 @code{shopt} builtin command (@pxref{The Shopt Builtin}).
5989 The options appearing in @env{BASHOPTS} are those reported
5990 as @samp{on} by @samp{shopt}.
5991 If this variable is in the environment when Bash
5992 starts up, each shell option in the list will be enabled before
5993 reading any startup files. This variable is readonly.
5994
5995 @item BASHPID
5996 Expands to the process ID of the current Bash process.
5997 This differs from @code{$$} under certain circumstances, such as subshells
5998 that do not require Bash to be re-initialized.
5999 Assignments to @env{BASHPID} have no effect.
6000 If @env{BASHPID}
6001 is unset, it loses its special properties, even if it is
6002 subsequently reset.
6003
6004 @item BASH_ALIASES
6005 An associative array variable whose members correspond to the internal
6006 list of aliases as maintained by the @code{alias} builtin.
6007 (@pxref{Bourne Shell Builtins}).
6008 Elements added to this array appear in the alias list; however,
6009 unsetting array elements currently does not cause aliases to be removed
6010 from the alias list.
6011 If @env{BASH_ALIASES}
6012 is unset, it loses its special properties, even if it is
6013 subsequently reset.
6014
6015 @item BASH_ARGC
6016 An array variable whose values are the number of parameters in each
6017 frame of the current bash execution call stack. The number of
6018 parameters to the current subroutine (shell function or script executed
6019 with @code{.} or @code{source}) is at the top of the stack. When a
6020 subroutine is executed, the number of parameters passed is pushed onto
6021 @code{BASH_ARGC}.
6022 The shell sets @code{BASH_ARGC} only when in extended debugging mode
6023 (see @ref{The Shopt Builtin}
6024 for a description of the @code{extdebug} option to the @code{shopt}
6025 builtin).
6026 Setting @code{extdebug} after the shell has started to execute a script,
6027 or referencing this variable when @code{extdebug} is not set,
6028 may result in inconsistent values.
6029
6030 @item BASH_ARGV
6031 An array variable containing all of the parameters in the current bash
6032 execution call stack. The final parameter of the last subroutine call
6033 is at the top of the stack; the first parameter of the initial call is
6034 at the bottom. When a subroutine is executed, the parameters supplied
6035 are pushed onto @code{BASH_ARGV}.
6036 The shell sets @code{BASH_ARGV} only when in extended debugging mode
6037 (see @ref{The Shopt Builtin}
6038 for a description of the @code{extdebug} option to the @code{shopt}
6039 builtin).
6040 Setting @code{extdebug} after the shell has started to execute a script,
6041 or referencing this variable when @code{extdebug} is not set,
6042 may result in inconsistent values.
6043
6044 @item BASH_ARGV0
6045 When referenced, this variable expands to the name of the shell or shell
6046 script (identical to @code{$0}; @xref{Special Parameters},
6047 for the description of special parameter 0).
6048 Assignment to @code{BASH_ARGV0}
6049 causes the value assigned to also be assigned to @code{$0}.
6050 If @env{BASH_ARGV0}
6051 is unset, it loses its special properties, even if it is
6052 subsequently reset.
6053
6054 @item BASH_CMDS
6055 An associative array variable whose members correspond to the internal
6056 hash table of commands as maintained by the @code{hash} builtin
6057 (@pxref{Bourne Shell Builtins}).
6058 Elements added to this array appear in the hash table; however,
6059 unsetting array elements currently does not cause command names to be removed
6060 from the hash table.
6061 If @env{BASH_CMDS}
6062 is unset, it loses its special properties, even if it is
6063 subsequently reset.
6064
6065 @item BASH_COMMAND
6066 The command currently being executed or about to be executed, unless the
6067 shell is executing a command as the result of a trap,
6068 in which case it is the command executing at the time of the trap.
6069 If @env{BASH_COMMAND}
6070 is unset, it loses its special properties, even if it is
6071 subsequently reset.
6072
6073 @item BASH_COMPAT
6074 The value is used to set the shell's compatibility level.
6075 @xref{Shell Compatibility Mode}, for a description of the various
6076 compatibility levels and their effects.
6077 The value may be a decimal number (e.g., 4.2) or an integer (e.g., 42)
6078 corresponding to the desired compatibility level.
6079 If @env{BASH_COMPAT} is unset or set to the empty string, the compatibility
6080 level is set to the default for the current version.
6081 If @env{BASH_COMPAT} is set to a value that is not one of the valid
6082 compatibility levels, the shell prints an error message and sets the
6083 compatibility level to the default for the current version.
6084 The valid values correspond to the compatibility levels
6085 described below (@pxref{Shell Compatibility Mode}).
6086 For example, 4.2 and 42 are valid values that correspond
6087 to the @code{compat42} @code{shopt} option
6088 and set the compatibility level to 42.
6089 The current version is also a valid value.
6090
6091 @item BASH_ENV
6092 If this variable is set when Bash is invoked to execute a shell
6093 script, its value is expanded and used as the name of a startup file
6094 to read before executing the script. @xref{Bash Startup Files}.
6095
6096 @item BASH_EXECUTION_STRING
6097 The command argument to the @option{-c} invocation option.
6098
6099 @item BASH_LINENO
6100 An array variable whose members are the line numbers in source files
6101 where each corresponding member of @env{FUNCNAME} was invoked.
6102 @code{$@{BASH_LINENO[$i]@}} is the line number in the source file
6103 (@code{$@{BASH_SOURCE[$i+1]@}}) where
6104 @code{$@{FUNCNAME[$i]@}} was called (or @code{$@{BASH_LINENO[$i-1]@}} if
6105 referenced within another shell function).
6106 Use @code{LINENO} to obtain the current line number.
6107
6108 @item BASH_LOADABLES_PATH
6109 A colon-separated list of directories in which the shell looks for
6110 dynamically loadable builtins specified by the
6111 @code{enable} command.
6112
6113 @item BASH_REMATCH
6114 An array variable whose members are assigned by the @samp{=~} binary
6115 operator to the @code{[[} conditional command
6116 (@pxref{Conditional Constructs}).
6117 The element with index 0 is the portion of the string
6118 matching the entire regular expression.
6119 The element with index @var{n} is the portion of the
6120 string matching the @var{n}th parenthesized subexpression.
6121
6122 @item BASH_SOURCE
6123 An array variable whose members are the source filenames where the
6124 corresponding shell function names in the @code{FUNCNAME} array
6125 variable are defined.
6126 The shell function @code{$@{FUNCNAME[$i]@}} is defined in the file
6127 @code{$@{BASH_SOURCE[$i]@}} and called from @code{$@{BASH_SOURCE[$i+1]@}}
6128
6129 @item BASH_SUBSHELL
6130 Incremented by one within each subshell or subshell environment when
6131 the shell begins executing in that environment.
6132 The initial value is 0.
6133 If @env{BASH_SUBSHELL}
6134 is unset, it loses its special properties, even if it is
6135 subsequently reset.
6136
6137 @item BASH_VERSINFO
6138 A readonly array variable (@pxref{Arrays})
6139 whose members hold version information for this instance of Bash.
6140 The values assigned to the array members are as follows:
6141
6142 @table @code
6143
6144 @item BASH_VERSINFO[0]
6145 The major version number (the @dfn{release}).
6146
6147 @item BASH_VERSINFO[1]
6148 The minor version number (the @dfn{version}).
6149
6150 @item BASH_VERSINFO[2]
6151 The patch level.
6152
6153 @item BASH_VERSINFO[3]
6154 The build version.
6155
6156 @item BASH_VERSINFO[4]
6157 The release status (e.g., @code{beta1}).
6158
6159 @item BASH_VERSINFO[5]
6160 The value of @env{MACHTYPE}.
6161 @end table
6162
6163 @item BASH_VERSION
6164 The version number of the current instance of Bash.
6165
6166 @item BASH_XTRACEFD
6167 If set to an integer corresponding to a valid file descriptor, Bash
6168 will write the trace output generated when @samp{set -x}
6169 is enabled to that file descriptor.
6170 This allows tracing output to be separated from diagnostic and error
6171 messages.
6172 The file descriptor is closed when @code{BASH_XTRACEFD} is unset or assigned
6173 a new value.
6174 Unsetting @code{BASH_XTRACEFD} or assigning it the empty string causes the
6175 trace output to be sent to the standard error.
6176 Note that setting @code{BASH_XTRACEFD} to 2 (the standard error file
6177 descriptor) and then unsetting it will result in the standard error
6178 being closed.
6179
6180 @item CHILD_MAX
6181 Set the number of exited child status values for the shell to remember.
6182 Bash will not allow this value to be decreased below a @sc{posix}-mandated
6183 minimum, and there is a maximum value (currently 8192) that this may
6184 not exceed.
6185 The minimum value is system-dependent.
6186
6187 @item COLUMNS
6188 Used by the @code{select} command to determine the terminal width
6189 when printing selection lists.
6190 Automatically set if the @code{checkwinsize} option is enabled
6191 (@pxref{The Shopt Builtin}), or in an interactive shell upon receipt of a
6192 @code{SIGWINCH}.
6193
6194 @item COMP_CWORD
6195 An index into @env{$@{COMP_WORDS@}} of the word containing the current
6196 cursor position.
6197 This variable is available only in shell functions invoked by the
6198 programmable completion facilities (@pxref{Programmable Completion}).
6199
6200 @item COMP_LINE
6201 The current command line.
6202 This variable is available only in shell functions and external
6203 commands invoked by the
6204 programmable completion facilities (@pxref{Programmable Completion}).
6205
6206 @item COMP_POINT
6207 The index of the current cursor position relative to the beginning of
6208 the current command.
6209 If the current cursor position is at the end of the current command,
6210 the value of this variable is equal to @code{$@{#COMP_LINE@}}.
6211 This variable is available only in shell functions and external
6212 commands invoked by the
6213 programmable completion facilities (@pxref{Programmable Completion}).
6214
6215 @item COMP_TYPE
6216 Set to an integer value corresponding to the type of completion attempted
6217 that caused a completion function to be called:
6218 @key{TAB}, for normal completion,
6219 @samp{?}, for listing completions after successive tabs,
6220 @samp{!}, for listing alternatives on partial word completion,
6221 @samp{@@}, to list completions if the word is not unmodified,
6222 or
6223 @samp{%}, for menu completion.
6224 This variable is available only in shell functions and external
6225 commands invoked by the
6226 programmable completion facilities (@pxref{Programmable Completion}).
6227
6228 @item COMP_KEY
6229 The key (or final key of a key sequence) used to invoke the current
6230 completion function.
6231
6232 @item COMP_WORDBREAKS
6233 The set of characters that the Readline library treats as word
6234 separators when performing word completion.
6235 If @env{COMP_WORDBREAKS}
6236 is unset, it loses its special properties,
6237 even if it is subsequently reset.
6238
6239 @item COMP_WORDS
6240 An array variable consisting of the individual
6241 words in the current command line.
6242 The line is split into words as Readline would split it, using
6243 @code{COMP_WORDBREAKS} as described above.
6244 This variable is available only in shell functions invoked by the
6245 programmable completion facilities (@pxref{Programmable Completion}).
6246
6247 @item COMPREPLY
6248 An array variable from which Bash reads the possible completions
6249 generated by a shell function invoked by the programmable completion
6250 facility (@pxref{Programmable Completion}).
6251 Each array element contains one possible completion.
6252
6253 @item COPROC
6254 An array variable created to hold the file descriptors
6255 for output from and input to an unnamed coprocess (@pxref{Coprocesses}).
6256
6257 @item DIRSTACK
6258 An array variable containing the current contents of the directory stack.
6259 Directories appear in the stack in the order they are displayed by the
6260 @code{dirs} builtin.
6261 Assigning to members of this array variable may be used to modify
6262 directories already in the stack, but the @code{pushd} and @code{popd}
6263 builtins must be used to add and remove directories.
6264 Assignment to this variable will not change the current directory.
6265 If @env{DIRSTACK}
6266 is unset, it loses its special properties, even if
6267 it is subsequently reset.
6268
6269 @item EMACS
6270 If Bash finds this variable in the environment when the shell
6271 starts with value @samp{t}, it assumes that the shell is running in an
6272 Emacs shell buffer and disables line editing.
6273
6274 @item ENV
6275 Expanded and executed similarlty to @code{BASH_ENV}
6276 (@pxref{Bash Startup Files})
6277 when an interactive shell is invoked in
6278 @sc{posix} Mode (@pxref{Bash POSIX Mode}).
6279
6280 @item EPOCHREALTIME
6281 Each time this parameter is referenced, it expands to the number of seconds
6282 since the Unix Epoch as a floating point value with micro-second granularity
6283 (see the documentation for the C library function @code{time} for the
6284 definition of Epoch).
6285 Assignments to @env{EPOCHREALTIME} are ignored.
6286 If @env{EPOCHREALTIME}
6287 is unset, it loses its special properties, even if
6288 it is subsequently reset.
6289
6290 @item EPOCHSECONDS
6291 Each time this parameter is referenced, it expands to the number of seconds
6292 since the Unix Epoch (see the documentation for the C library function
6293 @code{time} for the definition of Epoch).
6294 Assignments to @env{EPOCHSECONDS} are ignored.
6295 If @env{EPOCHSECONDS}
6296 is unset, it loses its special properties, even if
6297 it is subsequently reset.
6298
6299 @item EUID
6300 The numeric effective user id of the current user. This variable
6301 is readonly.
6302
6303 @item EXECIGNORE
6304 A colon-separated list of shell patterns (@pxref{Pattern Matching})
6305 defining the list of filenames to be ignored by command search using
6306 @code{PATH}.
6307 Files whose full pathnames match one of these patterns are not considered
6308 executable files for the purposes of completion and command execution
6309 via @code{PATH} lookup.
6310 This does not affect the behavior of the @code{[}, @code{test}, and @code{[[}
6311 commands.
6312 Full pathnames in the command hash table are not subject to @code{EXECIGNORE}.
6313 Use this variable to ignore shared library files that have the executable
6314 bit set, but are not executable files.
6315 The pattern matching honors the setting of the @code{extglob} shell
6316 option.
6317
6318 @item FCEDIT
6319 The editor used as a default by the @option{-e} option to the @code{fc}
6320 builtin command.
6321
6322 @item FIGNORE
6323 A colon-separated list of suffixes to ignore when performing
6324 filename completion.
6325 A filename whose suffix matches one of the entries in
6326 @env{FIGNORE}
6327 is excluded from the list of matched filenames. A sample
6328 value is @samp{.o:~}
6329
6330 @item FUNCNAME
6331 An array variable containing the names of all shell functions
6332 currently in the execution call stack.
6333 The element with index 0 is the name of any currently-executing
6334 shell function.
6335 The bottom-most element (the one with the highest index)
6336 is @code{"main"}.
6337 This variable exists only when a shell function is executing.
6338 Assignments to @env{FUNCNAME} have no effect.
6339 If @env{FUNCNAME}
6340 is unset, it loses its special properties, even if
6341 it is subsequently reset.
6342
6343 This variable can be used with @code{BASH_LINENO} and @code{BASH_SOURCE}.
6344 Each element of @code{FUNCNAME} has corresponding elements in
6345 @code{BASH_LINENO} and @code{BASH_SOURCE} to describe the call stack.
6346 For instance, @code{$@{FUNCNAME[$i]@}} was called from the file
6347 @code{$@{BASH_SOURCE[$i+1]@}} at line number @code{$@{BASH_LINENO[$i]@}}.
6348 The @code{caller} builtin displays the current call stack using this
6349 information.
6350
6351 @item FUNCNEST
6352 If set to a numeric value greater than 0, defines a maximum function
6353 nesting level. Function invocations that exceed this nesting level
6354 will cause the current command to abort.
6355
6356 @item GLOBIGNORE
6357 A colon-separated list of patterns defining the set of file names to
6358 be ignored by filename expansion.
6359 If a file name matched by a filename expansion pattern also matches one
6360 of the patterns in @env{GLOBIGNORE}, it is removed from the list
6361 of matches.
6362 The pattern matching honors the setting of the @code{extglob} shell
6363 option.
6364
6365 @item GROUPS
6366 An array variable containing the list of groups of which the current
6367 user is a member.
6368 Assignments to @env{GROUPS} have no effect.
6369 If @env{GROUPS}
6370 is unset, it loses its special properties, even if it is
6371 subsequently reset.
6372
6373 @item histchars
6374 Up to three characters which control history expansion, quick
6375 substitution, and tokenization (@pxref{History Interaction}).
6376 The first character is the
6377 @dfn{history expansion} character, that is, the character which signifies the
6378 start of a history expansion, normally @samp{!}. The second character is the
6379 character which signifies `quick substitution' when seen as the first
6380 character on a line, normally @samp{^}. The optional third character is the
6381 character which indicates that the remainder of the line is a comment when
6382 found as the first character of a word, usually @samp{#}. The history
6383 comment character causes history substitution to be skipped for the
6384 remaining words on the line. It does not necessarily cause the shell
6385 parser to treat the rest of the line as a comment.
6386
6387 @item HISTCMD
6388 The history number, or index in the history list, of the current
6389 command.
6390 Assignments to @env{HISTCMD} are ignored.
6391 If @env{HISTCMD}
6392 is unset, it loses its special properties,
6393 even if it is subsequently reset.
6394
6395 @item HISTCONTROL
6396 A colon-separated list of values controlling how commands are saved on
6397 the history list.
6398 If the list of values includes @samp{ignorespace}, lines which begin
6399 with a space character are not saved in the history list.
6400 A value of @samp{ignoredups} causes lines which match the previous
6401 history entry to not be saved.
6402 A value of @samp{ignoreboth} is shorthand for
6403 @samp{ignorespace} and @samp{ignoredups}.
6404 A value of @samp{erasedups} causes all previous lines matching the
6405 current line to be removed from the history list before that line
6406 is saved.
6407 Any value not in the above list is ignored.
6408 If @env{HISTCONTROL} is unset, or does not include a valid value,
6409 all lines read by the shell parser are saved on the history list,
6410 subject to the value of @env{HISTIGNORE}.
6411 The second and subsequent lines of a multi-line compound command are
6412 not tested, and are added to the history regardless of the value of
6413 @env{HISTCONTROL}.
6414
6415 @item HISTFILE
6416 The name of the file to which the command history is saved. The
6417 default value is @file{~/.bash_history}.
6418
6419 @item HISTFILESIZE
6420 The maximum number of lines contained in the history file.
6421 When this variable is assigned a value, the history file is truncated,
6422 if necessary, to contain no more than that number of lines
6423 by removing the oldest entries.
6424 The history file is also truncated to this size after
6425 writing it when a shell exits.
6426 If the value is 0, the history file is truncated to zero size.
6427 Non-numeric values and numeric values less than zero inhibit truncation.
6428 The shell sets the default value to the value of @env{HISTSIZE}
6429 after reading any startup files.
6430
6431 @item HISTIGNORE
6432 A colon-separated list of patterns used to decide which command
6433 lines should be saved on the history list. Each pattern is
6434 anchored at the beginning of the line and must match the complete
6435 line (no implicit @samp{*} is appended). Each pattern is tested
6436 against the line after the checks specified by @env{HISTCONTROL}
6437 are applied. In addition to the normal shell pattern matching
6438 characters, @samp{&} matches the previous history line. @samp{&}
6439 may be escaped using a backslash; the backslash is removed
6440 before attempting a match.
6441 The second and subsequent lines of a multi-line compound command are
6442 not tested, and are added to the history regardless of the value of
6443 @env{HISTIGNORE}.
6444 The pattern matching honors the setting of the @code{extglob} shell
6445 option.
6446
6447 @env{HISTIGNORE} subsumes the function of @env{HISTCONTROL}. A
6448 pattern of @samp{&} is identical to @code{ignoredups}, and a
6449 pattern of @samp{[ ]*} is identical to @code{ignorespace}.
6450 Combining these two patterns, separating them with a colon,
6451 provides the functionality of @code{ignoreboth}.
6452
6453 @item HISTSIZE
6454 The maximum number of commands to remember on the history list.
6455 If the value is 0, commands are not saved in the history list.
6456 Numeric values less than zero result in every command being saved
6457 on the history list (there is no limit).
6458 The shell sets the default value to 500 after reading any startup files.
6459
6460 @item HISTTIMEFORMAT
6461 If this variable is set and not null, its value is used as a format string
6462 for @code{strftime} to print the time stamp associated with each history
6463 entry displayed by the @code{history} builtin.
6464 If this variable is set, time stamps are written to the history file so
6465 they may be preserved across shell sessions.
6466 This uses the history comment character to distinguish timestamps from
6467 other history lines.
6468
6469 @item HOSTFILE
6470 Contains the name of a file in the same format as @file{/etc/hosts} that
6471 should be read when the shell needs to complete a hostname.
6472 The list of possible hostname completions may be changed while the shell
6473 is running;
6474 the next time hostname completion is attempted after the
6475 value is changed, Bash adds the contents of the new file to the
6476 existing list.
6477 If @env{HOSTFILE} is set, but has no value, or does not name a readable file,
6478 Bash attempts to read
6479 @file{/etc/hosts} to obtain the list of possible hostname completions.
6480 When @env{HOSTFILE} is unset, the hostname list is cleared.
6481
6482 @item HOSTNAME
6483 The name of the current host.
6484
6485 @item HOSTTYPE
6486 A string describing the machine Bash is running on.
6487
6488 @item IGNOREEOF
6489 Controls the action of the shell on receipt of an @code{EOF} character
6490 as the sole input. If set, the value denotes the number
6491 of consecutive @code{EOF} characters that can be read as the
6492 first character on an input line
6493 before the shell will exit. If the variable exists but does not
6494 have a numeric value, or has no value, then the default is 10.
6495 If the variable does not exist, then @code{EOF} signifies the end of
6496 input to the shell. This is only in effect for interactive shells.
6497
6498 @item INPUTRC
6499 The name of the Readline initialization file, overriding the default
6500 of @file{~/.inputrc}.
6501
6502 @item INSIDE_EMACS
6503 If Bash finds this variable in the environment when the shell
6504 starts, it assumes that the shell is running in an Emacs shell buffer
6505 and may disable line editing depending on the value of @env{TERM}.
6506
6507 @item LANG
6508 Used to determine the locale category for any category not specifically
6509 selected with a variable starting with @code{LC_}.
6510
6511 @item LC_ALL
6512 This variable overrides the value of @env{LANG} and any other
6513 @code{LC_} variable specifying a locale category.
6514
6515 @item LC_COLLATE
6516 This variable determines the collation order used when sorting the
6517 results of filename expansion, and
6518 determines the behavior of range expressions, equivalence classes,
6519 and collating sequences within filename expansion and pattern matching
6520 (@pxref{Filename Expansion}).
6521
6522 @item LC_CTYPE
6523 This variable determines the interpretation of characters and the
6524 behavior of character classes within filename expansion and pattern
6525 matching (@pxref{Filename Expansion}).
6526
6527 @item LC_MESSAGES
6528 This variable determines the locale used to translate double-quoted
6529 strings preceded by a @samp{$} (@pxref{Locale Translation}).
6530
6531 @item LC_NUMERIC
6532 This variable determines the locale category used for number formatting.
6533
6534 @item LC_TIME
6535 This variable determines the locale category used for data and time
6536 formatting.
6537
6538 @item LINENO
6539 The line number in the script or shell function currently executing.
6540 If @env{LINENO}
6541 is unset, it loses its special properties, even if it is
6542 subsequently reset.
6543
6544 @item LINES
6545 Used by the @code{select} command to determine the column length
6546 for printing selection lists.
6547 Automatically set if the @code{checkwinsize} option is enabled
6548 (@pxref{The Shopt Builtin}), or in an interactive shell upon receipt of a
6549 @code{SIGWINCH}.
6550
6551 @item MACHTYPE
6552 A string that fully describes the system type on which Bash
6553 is executing, in the standard @sc{gnu} @var{cpu-company-system} format.
6554
6555 @item MAILCHECK
6556 How often (in seconds) that the shell should check for mail in the
6557 files specified in the @env{MAILPATH} or @env{MAIL} variables.
6558 The default is 60 seconds. When it is time to check
6559 for mail, the shell does so before displaying the primary prompt.
6560 If this variable is unset, or set to a value that is not a number
6561 greater than or equal to zero, the shell disables mail checking.
6562
6563 @item MAPFILE
6564 An array variable created to hold the text read by the
6565 @code{mapfile} builtin when no variable name is supplied.
6566
6567 @item OLDPWD
6568 The previous working directory as set by the @code{cd} builtin.
6569
6570 @item OPTERR
6571 If set to the value 1, Bash displays error messages
6572 generated by the @code{getopts} builtin command.
6573
6574 @item OSTYPE
6575 A string describing the operating system Bash is running on.
6576
6577 @item PIPESTATUS
6578 An array variable (@pxref{Arrays})
6579 containing a list of exit status values from the processes
6580 in the most-recently-executed foreground pipeline (which may
6581 contain only a single command).
6582
6583 @item POSIXLY_CORRECT
6584 If this variable is in the environment when Bash starts, the shell
6585 enters @sc{posix} mode (@pxref{Bash POSIX Mode}) before reading the
6586 startup files, as if the @option{--posix} invocation option had been supplied.
6587 If it is set while the shell is running, Bash enables @sc{posix} mode,
6588 as if the command
6589 @example
6590 @code{set -o posix}
6591 @end example
6592 @noindent
6593 had been executed.
6594 When the shell enters @sc{posix} mode, it sets this variable if it was
6595 not already set.
6596
6597 @item PPID
6598 The process @sc{id} of the shell's parent process. This variable
6599 is readonly.
6600
6601 @item PROMPT_COMMAND
6602 If this variable is set, and is an array,
6603 the value of each set element is interpreted as a command to execute
6604 before printing the primary prompt (@env{$PS1}).
6605 If this is set but not an array variable,
6606 its value is used as a command to execute instead.
6607
6608 @item PROMPT_DIRTRIM
6609 If set to a number greater than zero, the value is used as the number of
6610 trailing directory components to retain when expanding the @code{\w} and
6611 @code{\W} prompt string escapes (@pxref{Controlling the Prompt}).
6612 Characters removed are replaced with an ellipsis.
6613
6614 @item PS0
6615 The value of this parameter is expanded like @env{PS1}
6616 and displayed by interactive shells after reading a command
6617 and before the command is executed.
6618
6619 @item PS3
6620 The value of this variable is used as the prompt for the
6621 @code{select} command. If this variable is not set, the
6622 @code{select} command prompts with @samp{#? }
6623
6624 @item PS4
6625 The value of this parameter is expanded like @env{PS1}
6626 and the expanded value is the prompt printed before the command line
6627 is echoed when the @option{-x} option is set (@pxref{The Set Builtin}).
6628 The first character of the expanded value is replicated multiple times,
6629 as necessary, to indicate multiple levels of indirection.
6630 The default is @samp{+ }.
6631
6632 @item PWD
6633 The current working directory as set by the @code{cd} builtin.
6634
6635 @item RANDOM
6636 Each time this parameter is referenced, it expands to a random integer
6637 between 0 and 32767. Assigning a value to this
6638 variable seeds the random number generator.
6639 If @env{RANDOM}
6640 is unset, it loses its special properties, even if it is
6641 subsequently reset.
6642
6643 @item READLINE_ARGUMENT
6644 Any numeric argument given to a Readline command that was defined using
6645 @samp{bind -x} (@pxref{Bash Builtins}
6646 when it was invoked.
6647
6648 @item READLINE_LINE
6649 The contents of the Readline line buffer, for use
6650 with @samp{bind -x} (@pxref{Bash Builtins}).
6651
6652 @item READLINE_MARK
6653 The position of the @dfn{mark} (saved insertion point) in the
6654 Readline line buffer, for use
6655 with @samp{bind -x} (@pxref{Bash Builtins}).
6656 The characters between the insertion point and the mark are often
6657 called the @dfn{region}.
6658
6659 @item READLINE_POINT
6660 The position of the insertion point in the Readline line buffer, for use
6661 with @samp{bind -x} (@pxref{Bash Builtins}).
6662
6663 @item REPLY
6664 The default variable for the @code{read} builtin.
6665
6666 @item SECONDS
6667 This variable expands to the number of seconds since the shell was started.
6668 Assignment to this variable resets the count to the value assigned, and the
6669 expanded value becomes the value assigned plus the number of seconds
6670 since the assignment.
6671 The number of seconds at shell invocation and the current time are always
6672 determined by querying the system clock.
6673 If @env{SECONDS}
6674 is unset, it loses its special properties,
6675 even if it is subsequently reset.
6676
6677 @item SHELL
6678 This environment variable expands to the full pathname to the shell.
6679 If it is not set when the shell starts,
6680 Bash assigns to it the full pathname of the current user's login shell.
6681
6682 @item SHELLOPTS
6683 A colon-separated list of enabled shell options. Each word in
6684 the list is a valid argument for the @option{-o} option to the
6685 @code{set} builtin command (@pxref{The Set Builtin}).
6686 The options appearing in @env{SHELLOPTS} are those reported
6687 as @samp{on} by @samp{set -o}.
6688 If this variable is in the environment when Bash
6689 starts up, each shell option in the list will be enabled before
6690 reading any startup files. This variable is readonly.
6691
6692 @item SHLVL
6693 Incremented by one each time a new instance of Bash is started. This is
6694 intended to be a count of how deeply your Bash shells are nested.
6695
6696 @item SRANDOM
6697 This variable expands to a 32-bit pseudo-random number each time it is
6698 referenced. The random number generator is not linear on systems that
6699 support @file{/dev/urandom} or @code{arc4random}, so each returned number
6700 has no relationship to the numbers preceding it.
6701 The random number generator cannot be seeded, so assignments to this
6702 variable have no effect.
6703 If @env{SRANDOM}
6704 is unset, it loses its special properties,
6705 even if it is subsequently reset.
6706
6707 @item TIMEFORMAT
6708 The value of this parameter is used as a format string specifying
6709 how the timing information for pipelines prefixed with the @code{time}
6710 reserved word should be displayed.
6711 The @samp{%} character introduces an
6712 escape sequence that is expanded to a time value or other
6713 information.
6714 The escape sequences and their meanings are as
6715 follows; the braces denote optional portions.
6716
6717 @table @code
6718
6719 @item %%
6720 A literal @samp{%}.
6721
6722 @item %[@var{p}][l]R
6723 The elapsed time in seconds.
6724
6725 @item %[@var{p}][l]U
6726 The number of CPU seconds spent in user mode.
6727
6728 @item %[@var{p}][l]S
6729 The number of CPU seconds spent in system mode.
6730
6731 @item %P
6732 The CPU percentage, computed as (%U + %S) / %R.
6733 @end table
6734
6735 The optional @var{p} is a digit specifying the precision, the number of
6736 fractional digits after a decimal point.
6737 A value of 0 causes no decimal point or fraction to be output.
6738 At most three places after the decimal point may be specified; values
6739 of @var{p} greater than 3 are changed to 3.
6740 If @var{p} is not specified, the value 3 is used.
6741
6742 The optional @code{l} specifies a longer format, including minutes, of
6743 the form @var{MM}m@var{SS}.@var{FF}s.
6744 The value of @var{p} determines whether or not the fraction is included.
6745
6746 If this variable is not set, Bash acts as if it had the value
6747 @example
6748 @code{$'\nreal\t%3lR\nuser\t%3lU\nsys\t%3lS'}
6749 @end example
6750 If the value is null, no timing information is displayed.
6751 A trailing newline is added when the format string is displayed.
6752
6753 @item TMOUT
6754 If set to a value greater than zero, @code{TMOUT} is treated as the
6755 default timeout for the @code{read} builtin (@pxref{Bash Builtins}).
6756 The @code{select} command (@pxref{Conditional Constructs}) terminates
6757 if input does not arrive after @code{TMOUT} seconds when input is coming
6758 from a terminal.
6759
6760 In an interactive shell, the value is interpreted as
6761 the number of seconds to wait for a line of input after issuing
6762 the primary prompt.
6763 Bash
6764 terminates after waiting for that number of seconds if a complete
6765 line of input does not arrive.
6766
6767 @item TMPDIR
6768 If set, Bash uses its value as the name of a directory in which
6769 Bash creates temporary files for the shell's use.
6770
6771 @item UID
6772 The numeric real user id of the current user. This variable is readonly.
6773
6774 @end vtable
6775
6776 @node Bash Features
6777 @chapter Bash Features
6778
6779 This chapter describes features unique to Bash.
6780
6781 @menu
6782 * Invoking Bash:: Command line options that you can give
6783 to Bash.
6784 * Bash Startup Files:: When and how Bash executes scripts.
6785 * Interactive Shells:: What an interactive shell is.
6786 * Bash Conditional Expressions:: Primitives used in composing expressions for
6787 the @code{test} builtin.
6788 * Shell Arithmetic:: Arithmetic on shell variables.
6789 * Aliases:: Substituting one command for another.
6790 * Arrays:: Array Variables.
6791 * The Directory Stack:: History of visited directories.
6792 * Controlling the Prompt:: Customizing the various prompt strings.
6793 * The Restricted Shell:: A more controlled mode of shell execution.
6794 * Bash POSIX Mode:: Making Bash behave more closely to what
6795 the POSIX standard specifies.
6796 * Shell Compatibility Mode:: How Bash supports behavior that was present
6797 in earlier versions and has changed.
6798 @end menu
6799
6800 @node Invoking Bash
6801 @section Invoking Bash
6802
6803 @example
6804 bash [long-opt] [-ir] [-abefhkmnptuvxdBCDHP] [-o @var{option}]
6805 [-O @var{shopt_option}] [@var{argument} @dots{}]
6806 bash [long-opt] [-abefhkmnptuvxdBCDHP] [-o @var{option}]
6807 [-O @var{shopt_option}] -c @var{string} [@var{argument} @dots{}]
6808 bash [long-opt] -s [-abefhkmnptuvxdBCDHP] [-o @var{option}]
6809 [-O @var{shopt_option}] [@var{argument} @dots{}]
6810 @end example
6811
6812 All of the single-character options used with the @code{set} builtin
6813 (@pxref{The Set Builtin}) can be used as options when the shell is invoked.
6814 In addition, there are several multi-character
6815 options that you can use. These options must appear on the command
6816 line before the single-character options to be recognized.
6817
6818 @table @code
6819 @item --debugger
6820 Arrange for the debugger profile to be executed before the shell
6821 starts. Turns on extended debugging mode (see @ref{The Shopt Builtin}
6822 for a description of the @code{extdebug} option to the @code{shopt}
6823 builtin).
6824
6825 @item --dump-po-strings
6826 A list of all double-quoted strings preceded by @samp{$}
6827 is printed on the standard output
6828 in the @sc{gnu} @code{gettext} PO (portable object) file format.
6829 Equivalent to @option{-D} except for the output format.
6830
6831 @item --dump-strings
6832 Equivalent to @option{-D}.
6833
6834 @item --help
6835 Display a usage message on standard output and exit successfully.
6836
6837 @item --init-file @var{filename}
6838 @itemx --rcfile @var{filename}
6839 Execute commands from @var{filename} (instead of @file{~/.bashrc})
6840 in an interactive shell.
6841
6842 @item --login
6843 Equivalent to @option{-l}.
6844
6845 @item --noediting
6846 Do not use the @sc{gnu} Readline library (@pxref{Command Line Editing})
6847 to read command lines when the shell is interactive.
6848
6849 @item --noprofile
6850 Don't load the system-wide startup file @file{/etc/profile}
6851 or any of the personal initialization files
6852 @file{~/.bash_profile}, @file{~/.bash_login}, or @file{~/.profile}
6853 when Bash is invoked as a login shell.
6854
6855 @item --norc
6856 Don't read the @file{~/.bashrc} initialization file in an
6857 interactive shell. This is on by default if the shell is
6858 invoked as @code{sh}.
6859
6860 @item --posix
6861 Change the behavior of Bash where the default operation differs
6862 from the @sc{posix} standard to match the standard. This
6863 is intended to make Bash behave as a strict superset of that
6864 standard. @xref{Bash POSIX Mode}, for a description of the Bash
6865 @sc{posix} mode.
6866
6867 @item --restricted
6868 Make the shell a restricted shell (@pxref{The Restricted Shell}).
6869
6870 @item --verbose
6871 Equivalent to @option{-v}. Print shell input lines as they're read.
6872
6873 @item --version
6874 Show version information for this instance of
6875 Bash on the standard output and exit successfully.
6876 @end table
6877
6878 There are several single-character options that may be supplied at
6879 invocation which are not available with the @code{set} builtin.
6880
6881 @table @code
6882 @item -c
6883 Read and execute commands from the first non-option argument
6884 @var{command_string}, then exit.
6885 If there are arguments after the @var{command_string},
6886 the first argument is assigned to @code{$0}
6887 and any remaining arguments are assigned to the positional parameters.
6888 The assignment to @code{$0} sets the name of the shell, which is used
6889 in warning and error messages.
6890
6891 @item -i
6892 Force the shell to run interactively. Interactive shells are
6893 described in @ref{Interactive Shells}.
6894
6895 @item -l
6896 Make this shell act as if it had been directly invoked by login.
6897 When the shell is interactive, this is equivalent to starting a
6898 login shell with @samp{exec -l bash}.
6899 When the shell is not interactive, the login shell startup files will
6900 be executed.
6901 @samp{exec bash -l} or @samp{exec bash --login}
6902 will replace the current shell with a Bash login shell.
6903 @xref{Bash Startup Files}, for a description of the special behavior
6904 of a login shell.
6905
6906 @item -r
6907 Make the shell a restricted shell (@pxref{The Restricted Shell}).
6908
6909 @item -s
6910 If this option is present, or if no arguments remain after option
6911 processing, then commands are read from the standard input.
6912 This option allows the positional parameters to be set
6913 when invoking an interactive shell or when reading input
6914 through a pipe.
6915
6916 @item -D
6917 A list of all double-quoted strings preceded by @samp{$}
6918 is printed on the standard output.
6919 These are the strings that
6920 are subject to language translation when the current locale
6921 is not @code{C} or @code{POSIX} (@pxref{Locale Translation}).
6922 This implies the @option{-n} option; no commands will be executed.
6923
6924 @item [-+]O [@var{shopt_option}]
6925 @var{shopt_option} is one of the shell options accepted by the
6926 @code{shopt} builtin (@pxref{The Shopt Builtin}).
6927 If @var{shopt_option} is present, @option{-O} sets the value of that option;
6928 @option{+O} unsets it.
6929 If @var{shopt_option} is not supplied, the names and values of the shell
6930 options accepted by @code{shopt} are printed on the standard output.
6931 If the invocation option is @option{+O}, the output is displayed in a format
6932 that may be reused as input.
6933
6934 @item --
6935 A @code{--} signals the end of options and disables further option
6936 processing.
6937 Any arguments after the @code{--} are treated as filenames and arguments.
6938 @end table
6939
6940 @cindex login shell
6941 A @emph{login} shell is one whose first character of argument zero is
6942 @samp{-}, or one invoked with the @option{--login} option.
6943
6944 @cindex interactive shell
6945 An @emph{interactive} shell is one started without non-option arguments,
6946 unless @option{-s} is specified,
6947 without specifying the @option{-c} option, and whose input and output are both
6948 connected to terminals (as determined by @code{isatty(3)}), or one
6949 started with the @option{-i} option. @xref{Interactive Shells}, for more
6950 information.
6951
6952 If arguments remain after option processing, and neither the
6953 @option{-c} nor the @option{-s}
6954 option has been supplied, the first argument is assumed to
6955 be the name of a file containing shell commands (@pxref{Shell Scripts}).
6956 When Bash is invoked in this fashion, @code{$0}
6957 is set to the name of the file, and the positional parameters
6958 are set to the remaining arguments.
6959 Bash reads and executes commands from this file, then exits.
6960 Bash's exit status is the exit status of the last command executed
6961 in the script. If no commands are executed, the exit status is 0.
6962
6963 @node Bash Startup Files
6964 @section Bash Startup Files
6965 @cindex startup files
6966
6967 This section describes how Bash executes its startup files.
6968 If any of the files exist but cannot be read, Bash reports an error.
6969 Tildes are expanded in filenames as described above under
6970 Tilde Expansion (@pxref{Tilde Expansion}).
6971
6972 Interactive shells are described in @ref{Interactive Shells}.
6973
6974 @subsubheading Invoked as an interactive login shell, or with @option{--login}
6975
6976 When Bash is invoked as an interactive login shell, or as a
6977 non-interactive shell with the @option{--login} option, it first reads and
6978 executes commands from the file @file{/etc/profile}, if that file exists.
6979 After reading that file, it looks for @file{~/.bash_profile},
6980 @file{~/.bash_login}, and @file{~/.profile}, in that order, and reads
6981 and executes commands from the first one that exists and is readable.
6982 The @option{--noprofile} option may be used when the shell is started to
6983 inhibit this behavior.
6984
6985 When an interactive login shell exits,
6986 or a non-interactive login shell executes the @code{exit} builtin command,
6987 Bash reads and executes commands from
6988 the file @file{~/.bash_logout}, if it exists.
6989
6990 @subsubheading Invoked as an interactive non-login shell
6991
6992 When an interactive shell that is not a login shell is started, Bash
6993 reads and executes commands from @file{~/.bashrc}, if that file exists.
6994 This may be inhibited by using the @option{--norc} option.
6995 The @option{--rcfile @var{file}} option will force Bash to read and
6996 execute commands from @var{file} instead of @file{~/.bashrc}.
6997
6998 So, typically, your @file{~/.bash_profile} contains the line
6999 @example
7000 @code{if [ -f ~/.bashrc ]; then . ~/.bashrc; fi}
7001 @end example
7002 @noindent
7003 after (or before) any login-specific initializations.
7004
7005 @subsubheading Invoked non-interactively
7006
7007 When Bash is started non-interactively, to run a shell script,
7008 for example, it looks for the variable @env{BASH_ENV} in the environment,
7009 expands its value if it appears there, and uses the expanded value as
7010 the name of a file to read and execute. Bash behaves as if the
7011 following command were executed:
7012 @example
7013 @code{if [ -n "$BASH_ENV" ]; then . "$BASH_ENV"; fi}
7014 @end example
7015 @noindent
7016 but the value of the @env{PATH} variable is not used to search for the
7017 filename.
7018
7019 As noted above, if a non-interactive shell is invoked with the
7020 @option{--login} option, Bash attempts to read and execute commands from the
7021 login shell startup files.
7022
7023 @subsubheading Invoked with name @code{sh}
7024
7025 If Bash is invoked with the name @code{sh}, it tries to mimic the
7026 startup behavior of historical versions of @code{sh} as closely as
7027 possible, while conforming to the @sc{posix} standard as well.
7028
7029 When invoked as an interactive login shell, or as a non-interactive
7030 shell with the @option{--login} option, it first attempts to read
7031 and execute commands from @file{/etc/profile} and @file{~/.profile}, in
7032 that order.
7033 The @option{--noprofile} option may be used to inhibit this behavior.
7034 When invoked as an interactive shell with the name @code{sh}, Bash
7035 looks for the variable @env{ENV}, expands its value if it is defined,
7036 and uses the expanded value as the name of a file to read and execute.
7037 Since a shell invoked as @code{sh} does not attempt to read and execute
7038 commands from any other startup files, the @option{--rcfile} option has
7039 no effect.
7040 A non-interactive shell invoked with the name @code{sh} does not attempt
7041 to read any other startup files.
7042
7043 When invoked as @code{sh}, Bash enters @sc{posix} mode after
7044 the startup files are read.
7045
7046 @subsubheading Invoked in @sc{posix} mode
7047
7048 When Bash is started in @sc{posix} mode, as with the
7049 @option{--posix} command line option, it follows the @sc{posix} standard
7050 for startup files.
7051 In this mode, interactive shells expand the @env{ENV} variable
7052 and commands are read and executed from the file whose name is the
7053 expanded value.
7054 No other startup files are read.
7055
7056 @subsubheading Invoked by remote shell daemon
7057
7058 Bash attempts to determine when it is being run with its standard input
7059 connected to a network connection, as when executed by the remote shell
7060 daemon, usually @code{rshd}, or the secure shell daemon @code{sshd}.
7061 If Bash determines it is being run in
7062 this fashion, it reads and executes commands from @file{~/.bashrc}, if that
7063 file exists and is readable.
7064 It will not do this if invoked as @code{sh}.
7065 The @option{--norc} option may be used to inhibit this behavior, and the
7066 @option{--rcfile} option may be used to force another file to be read, but
7067 neither @code{rshd} nor @code{sshd} generally invoke the shell with those
7068 options or allow them to be specified.
7069
7070 @subsubheading Invoked with unequal effective and real @sc{uid/gid}s
7071
7072 If Bash is started with the effective user (group) id not equal to the
7073 real user (group) id, and the @option{-p} option is not supplied, no startup
7074 files are read, shell functions are not inherited from the environment,
7075 the @env{SHELLOPTS}, @env{BASHOPTS}, @env{CDPATH}, and @env{GLOBIGNORE}
7076 variables, if they appear in the environment, are ignored, and the effective
7077 user id is set to the real user id.
7078 If the @option{-p} option is supplied at invocation, the startup behavior is
7079 the same, but the effective user id is not reset.
7080
7081 @node Interactive Shells
7082 @section Interactive Shells
7083 @cindex interactive shell
7084 @cindex shell, interactive
7085
7086 @menu
7087 * What is an Interactive Shell?:: What determines whether a shell is Interactive.
7088 * Is this Shell Interactive?:: How to tell if a shell is interactive.
7089 * Interactive Shell Behavior:: What changes in a interactive shell?
7090 @end menu
7091
7092 @node What is an Interactive Shell?
7093 @subsection What is an Interactive Shell?
7094
7095 An interactive shell
7096 is one started without non-option arguments
7097 (unless @option{-s} is specified)
7098 and without specifying the @option{-c} option,
7099 whose input and error output are both
7100 connected to terminals (as determined by @code{isatty(3)}),
7101 or one started with the @option{-i} option.
7102
7103 An interactive shell generally reads from and writes to a user's
7104 terminal.
7105
7106 The @option{-s} invocation option may be used to set the positional parameters
7107 when an interactive shell is started.
7108
7109 @node Is this Shell Interactive?
7110 @subsection Is this Shell Interactive?
7111
7112 To determine within a startup script whether or not Bash is
7113 running interactively,
7114 test the value of the @samp{-} special parameter.
7115 It contains @code{i} when the shell is interactive. For example:
7116
7117 @example
7118 case "$-" in
7119 *i*) echo This shell is interactive ;;
7120 *) echo This shell is not interactive ;;
7121 esac
7122 @end example
7123
7124 Alternatively, startup scripts may examine the variable
7125 @env{PS1}; it is unset in non-interactive shells, and set in
7126 interactive shells. Thus:
7127
7128 @example
7129 if [ -z "$PS1" ]; then
7130 echo This shell is not interactive
7131 else
7132 echo This shell is interactive
7133 fi
7134 @end example
7135
7136 @node Interactive Shell Behavior
7137 @subsection Interactive Shell Behavior
7138
7139 When the shell is running interactively, it changes its behavior in
7140 several ways.
7141
7142 @enumerate
7143 @item
7144 Startup files are read and executed as described in @ref{Bash Startup Files}.
7145
7146 @item
7147 Job Control (@pxref{Job Control}) is enabled by default. When job
7148 control is in effect, Bash ignores the keyboard-generated job control
7149 signals @code{SIGTTIN}, @code{SIGTTOU}, and @code{SIGTSTP}.
7150
7151 @item
7152 Bash expands and displays @env{PS1} before reading the first line
7153 of a command, and expands and displays @env{PS2} before reading the
7154 second and subsequent lines of a multi-line command.
7155 Bash expands and displays @env{PS0} after it reads a command but before
7156 executing it.
7157 See @ref{Controlling the Prompt}, for a complete list of prompt
7158 string escape sequences.
7159
7160 @item
7161 Bash executes the values of the set elements of the @env{PROMPT_COMMAND}
7162 array variable as commands before printing the primary prompt, @env{$PS1}
7163 (@pxref{Bash Variables}).
7164
7165 @item
7166 Readline (@pxref{Command Line Editing}) is used to read commands from
7167 the user's terminal.
7168
7169 @item
7170 Bash inspects the value of the @code{ignoreeof} option to @code{set -o}
7171 instead of exiting immediately when it receives an @code{EOF} on its
7172 standard input when reading a command (@pxref{The Set Builtin}).
7173
7174 @item
7175 Command history (@pxref{Bash History Facilities})
7176 and history expansion (@pxref{History Interaction})
7177 are enabled by default.
7178 Bash will save the command history to the file named by @env{$HISTFILE}
7179 when a shell with history enabled exits.
7180
7181 @item
7182 Alias expansion (@pxref{Aliases}) is performed by default.
7183
7184 @item
7185 In the absence of any traps, Bash ignores @code{SIGTERM}
7186 (@pxref{Signals}).
7187
7188 @item
7189 In the absence of any traps, @code{SIGINT} is caught and handled
7190 (@pxref{Signals}).
7191 @code{SIGINT} will interrupt some shell builtins.
7192
7193 @item
7194 An interactive login shell sends a @code{SIGHUP} to all jobs on exit
7195 if the @code{huponexit} shell option has been enabled (@pxref{Signals}).
7196
7197 @item
7198 The @option{-n} invocation option is ignored, and @samp{set -n} has
7199 no effect (@pxref{The Set Builtin}).
7200
7201 @item
7202 Bash will check for mail periodically, depending on the values of the
7203 @env{MAIL}, @env{MAILPATH}, and @env{MAILCHECK} shell variables
7204 (@pxref{Bash Variables}).
7205
7206 @item
7207 Expansion errors due to references to unbound shell variables after
7208 @samp{set -u} has been enabled will not cause the shell to exit
7209 (@pxref{The Set Builtin}).
7210
7211 @item
7212 The shell will not exit on expansion errors caused by @var{var} being unset
7213 or null in @code{$@{@var{var}:?@var{word}@}} expansions
7214 (@pxref{Shell Parameter Expansion}).
7215
7216 @item
7217 Redirection errors encountered by shell builtins will not cause the
7218 shell to exit.
7219
7220 @item
7221 When running in @sc{posix} mode, a special builtin returning an error
7222 status will not cause the shell to exit (@pxref{Bash POSIX Mode}).
7223
7224 @item
7225 A failed @code{exec} will not cause the shell to exit
7226 (@pxref{Bourne Shell Builtins}).
7227
7228 @item
7229 Parser syntax errors will not cause the shell to exit.
7230
7231 @item
7232 If the @code{cdspell} shell option is enabled, the shell will attempt
7233 simple spelling correction for directory arguments to the @code{cd}
7234 builtin (see the description of the @code{cdspell}
7235 option to the @code{shopt} builtin in @ref{The Shopt Builtin}).
7236 The @code{cdspell} option is only effective in interactive shells.
7237
7238 @item
7239 The shell will check the value of the @env{TMOUT} variable and exit
7240 if a command is not read within the specified number of seconds after
7241 printing @env{$PS1} (@pxref{Bash Variables}).
7242
7243 @end enumerate
7244
7245 @node Bash Conditional Expressions
7246 @section Bash Conditional Expressions
7247 @cindex expressions, conditional
7248
7249 Conditional expressions are used by the @code{[[} compound command
7250 (@pxref{Conditional Constructs})
7251 and the @code{test} and @code{[} builtin commands
7252 (@pxref{Bourne Shell Builtins}).
7253 The @code{test}
7254 and @code{[} commands determine their behavior based on the number
7255 of arguments; see the descriptions of those commands for any other
7256 command-specific actions.
7257
7258 Expressions may be unary or binary,
7259 and are formed from the following primaries.
7260 Unary expressions are often used to examine the status of a file.
7261 There are string operators and numeric comparison operators as well.
7262 Bash handles several filenames specially when they are used in
7263 expressions.
7264 If the operating system on which Bash is running provides these
7265 special files, Bash will use them; otherwise it will emulate them
7266 internally with this behavior:
7267 If the @var{file} argument to one of the primaries is of the form
7268 @file{/dev/fd/@var{N}}, then file descriptor @var{N} is checked.
7269 If the @var{file} argument to one of the primaries is one of
7270 @file{/dev/stdin}, @file{/dev/stdout}, or @file{/dev/stderr}, file
7271 descriptor 0, 1, or 2, respectively, is checked.
7272
7273 When used with @code{[[}, the @samp{<} and @samp{>} operators sort
7274 lexicographically using the current locale.
7275 The @code{test} command uses ASCII ordering.
7276
7277 Unless otherwise specified, primaries that operate on files follow symbolic
7278 links and operate on the target of the link, rather than the link itself.
7279
7280 @table @code
7281 @item -a @var{file}
7282 True if @var{file} exists.
7283
7284 @item -b @var{file}
7285 True if @var{file} exists and is a block special file.
7286
7287 @item -c @var{file}
7288 True if @var{file} exists and is a character special file.
7289
7290 @item -d @var{file}
7291 True if @var{file} exists and is a directory.
7292
7293 @item -e @var{file}
7294 True if @var{file} exists.
7295
7296 @item -f @var{file}
7297 True if @var{file} exists and is a regular file.
7298
7299 @item -g @var{file}
7300 True if @var{file} exists and its set-group-id bit is set.
7301
7302 @item -h @var{file}
7303 True if @var{file} exists and is a symbolic link.
7304
7305 @item -k @var{file}
7306 True if @var{file} exists and its "sticky" bit is set.
7307
7308 @item -p @var{file}
7309 True if @var{file} exists and is a named pipe (FIFO).
7310
7311 @item -r @var{file}
7312 True if @var{file} exists and is readable.
7313
7314 @item -s @var{file}
7315 True if @var{file} exists and has a size greater than zero.
7316
7317 @item -t @var{fd}
7318 True if file descriptor @var{fd} is open and refers to a terminal.
7319
7320 @item -u @var{file}
7321 True if @var{file} exists and its set-user-id bit is set.
7322
7323 @item -w @var{file}
7324 True if @var{file} exists and is writable.
7325
7326 @item -x @var{file}
7327 True if @var{file} exists and is executable.
7328
7329 @item -G @var{file}
7330 True if @var{file} exists and is owned by the effective group id.
7331
7332 @item -L @var{file}
7333 True if @var{file} exists and is a symbolic link.
7334
7335 @item -N @var{file}
7336 True if @var{file} exists and has been modified since it was last read.
7337
7338 @item -O @var{file}
7339 True if @var{file} exists and is owned by the effective user id.
7340
7341 @item -S @var{file}
7342 True if @var{file} exists and is a socket.
7343
7344 @item @var{file1} -ef @var{file2}
7345 True if @var{file1} and @var{file2} refer to the same device and
7346 inode numbers.
7347
7348 @item @var{file1} -nt @var{file2}
7349 True if @var{file1} is newer (according to modification date)
7350 than @var{file2}, or if @var{file1} exists and @var{file2} does not.
7351
7352 @item @var{file1} -ot @var{file2}
7353 True if @var{file1} is older than @var{file2},
7354 or if @var{file2} exists and @var{file1} does not.
7355
7356 @item -o @var{optname}
7357 True if the shell option @var{optname} is enabled.
7358 The list of options appears in the description of the @option{-o}
7359 option to the @code{set} builtin (@pxref{The Set Builtin}).
7360
7361 @item -v @var{varname}
7362 True if the shell variable @var{varname} is set (has been assigned a value).
7363
7364 @item -R @var{varname}
7365 True if the shell variable @var{varname} is set and is a name reference.
7366
7367 @item -z @var{string}
7368 True if the length of @var{string} is zero.
7369
7370 @item -n @var{string}
7371 @itemx @var{string}
7372 True if the length of @var{string} is non-zero.
7373
7374 @item @var{string1} == @var{string2}
7375 @itemx @var{string1} = @var{string2}
7376 True if the strings are equal.
7377 When used with the @code{[[} command, this performs pattern matching as
7378 described above (@pxref{Conditional Constructs}).
7379
7380 @samp{=} should be used with the @code{test} command for @sc{posix} conformance.
7381
7382 @item @var{string1} != @var{string2}
7383 True if the strings are not equal.
7384
7385 @item @var{string1} < @var{string2}
7386 True if @var{string1} sorts before @var{string2} lexicographically.
7387
7388 @item @var{string1} > @var{string2}
7389 True if @var{string1} sorts after @var{string2} lexicographically.
7390
7391 @item @var{arg1} OP @var{arg2}
7392 @code{OP} is one of
7393 @samp{-eq}, @samp{-ne}, @samp{-lt}, @samp{-le}, @samp{-gt}, or @samp{-ge}.
7394 These arithmetic binary operators return true if @var{arg1}
7395 is equal to, not equal to, less than, less than or equal to,
7396 greater than, or greater than or equal to @var{arg2},
7397 respectively. @var{Arg1} and @var{arg2}
7398 may be positive or negative integers.
7399 When used with the @code{[[} command, @var{Arg1} and @var{Arg2}
7400 are evaluated as arithmetic expressions (@pxref{Shell Arithmetic}).
7401 @end table
7402
7403 @node Shell Arithmetic
7404 @section Shell Arithmetic
7405 @cindex arithmetic, shell
7406 @cindex shell arithmetic
7407 @cindex expressions, arithmetic
7408 @cindex evaluation, arithmetic
7409 @cindex arithmetic evaluation
7410
7411 The shell allows arithmetic expressions to be evaluated, as one of
7412 the shell expansions or by using the @code{((} compound command, the
7413 @code{let} builtin, or the @option{-i} option to the @code{declare} builtin.
7414
7415 Evaluation is done in fixed-width integers with no check for overflow,
7416 though division by 0 is trapped and flagged as an error.
7417 The operators and their precedence, associativity, and values
7418 are the same as in the C language.
7419 The following list of operators is grouped into levels of
7420 equal-precedence operators.
7421 The levels are listed in order of decreasing precedence.
7422
7423 @table @code
7424
7425 @item @var{id}++ @var{id}--
7426 variable post-increment and post-decrement
7427
7428 @item ++@var{id} --@var{id}
7429 variable pre-increment and pre-decrement
7430
7431 @item - +
7432 unary minus and plus
7433
7434 @item ! ~
7435 logical and bitwise negation
7436
7437 @item **
7438 exponentiation
7439
7440 @item * / %
7441 multiplication, division, remainder
7442
7443 @item + -
7444 addition, subtraction
7445
7446 @item << >>
7447 left and right bitwise shifts
7448
7449 @item <= >= < >
7450 comparison
7451
7452 @item == !=
7453 equality and inequality
7454
7455 @item &
7456 bitwise AND
7457
7458 @item ^
7459 bitwise exclusive OR
7460
7461 @item |
7462 bitwise OR
7463
7464 @item &&
7465 logical AND
7466
7467 @item ||
7468 logical OR
7469
7470 @item expr ? expr : expr
7471 conditional operator
7472
7473 @item = *= /= %= += -= <<= >>= &= ^= |=
7474 assignment
7475
7476 @item expr1 , expr2
7477 comma
7478 @end table
7479
7480 Shell variables are allowed as operands; parameter expansion is
7481 performed before the expression is evaluated.
7482 Within an expression, shell variables may also be referenced by name
7483 without using the parameter expansion syntax.
7484 A shell variable that is null or unset evaluates to 0 when referenced
7485 by name without using the parameter expansion syntax.
7486 The value of a variable is evaluated as an arithmetic expression
7487 when it is referenced, or when a variable which has been given the
7488 @code{integer} attribute using @samp{declare -i} is assigned a value.
7489 A null value evaluates to 0.
7490 A shell variable need not have its @code{integer} attribute turned on
7491 to be used in an expression.
7492
7493 Integer constants follow the C language definition, without suffixes or
7494 character constants.
7495 Constants with a leading 0 are interpreted as octal numbers.
7496 A leading @samp{0x} or @samp{0X} denotes hexadecimal. Otherwise,
7497 numbers take the form [@var{base}@code{#}]@var{n}, where the optional @var{base}
7498 is a decimal number between 2 and 64 representing the arithmetic
7499 base, and @var{n} is a number in that base.
7500 If @var{base}@code{#} is omitted, then base 10 is used.
7501 When specifying @var{n},
7502 if a non-digit is required,
7503 the digits greater than 9 are represented by the lowercase letters,
7504 the uppercase letters, @samp{@@}, and @samp{_}, in that order.
7505 If @var{base} is less than or equal to 36, lowercase and uppercase
7506 letters may be used interchangeably to represent numbers between 10
7507 and 35.
7508
7509 Operators are evaluated in order of precedence. Sub-expressions in
7510 parentheses are evaluated first and may override the precedence
7511 rules above.
7512
7513 @node Aliases
7514 @section Aliases
7515 @cindex alias expansion
7516
7517 @dfn{Aliases} allow a string to be substituted for a word when it is used
7518 as the first word of a simple command.
7519 The shell maintains a list of aliases that may be set and unset with
7520 the @code{alias} and @code{unalias} builtin commands.
7521
7522 The first word of each simple command, if unquoted, is checked to see
7523 if it has an alias.
7524 If so, that word is replaced by the text of the alias.
7525 The characters @samp{/}, @samp{$}, @samp{`}, @samp{=} and any of the
7526 shell metacharacters or quoting characters listed above may not appear
7527 in an alias name.
7528 The replacement text may contain any valid
7529 shell input, including shell metacharacters.
7530 The first word of the replacement text is tested for
7531 aliases, but a word that is identical to an alias being expanded
7532 is not expanded a second time.
7533 This means that one may alias @code{ls} to @code{"ls -F"},
7534 for instance, and Bash does not try to recursively expand the
7535 replacement text.
7536 If the last character of the alias value is a
7537 @code{blank}, then the next command word following the
7538 alias is also checked for alias expansion.
7539
7540 Aliases are created and listed with the @code{alias}
7541 command, and removed with the @code{unalias} command.
7542
7543 There is no mechanism for using arguments in the replacement text,
7544 as in @code{csh}.
7545 If arguments are needed, use a shell function
7546 (@pxref{Shell Functions}).
7547
7548 Aliases are not expanded when the shell is not interactive,
7549 unless the @code{expand_aliases} shell option is set using
7550 @code{shopt} (@pxref{The Shopt Builtin}).
7551
7552 The rules concerning the definition and use of aliases are
7553 somewhat confusing. Bash
7554 always reads at least one complete line of input,
7555 and all lines that make up a compound command,
7556 before executing any of the commands on that line or the compound command.
7557 Aliases are expanded when a
7558 command is read, not when it is executed. Therefore, an
7559 alias definition appearing on the same line as another
7560 command does not take effect until the next line of input is read.
7561 The commands following the alias definition
7562 on that line are not affected by the new alias.
7563 This behavior is also an issue when functions are executed.
7564 Aliases are expanded when a function definition is read,
7565 not when the function is executed, because a function definition
7566 is itself a command. As a consequence, aliases
7567 defined in a function are not available until after that
7568 function is executed. To be safe, always put
7569 alias definitions on a separate line, and do not use @code{alias}
7570 in compound commands.
7571
7572 For almost every purpose, shell functions are preferred over aliases.
7573
7574 @node Arrays
7575 @section Arrays
7576 @cindex arrays
7577
7578 Bash provides one-dimensional indexed and associative array variables.
7579 Any variable may be used as an indexed array;
7580 the @code{declare} builtin will explicitly declare an array.
7581 There is no maximum
7582 limit on the size of an array, nor any requirement that members
7583 be indexed or assigned contiguously.
7584 Indexed arrays are referenced using integers (including arithmetic
7585 expressions (@pxref{Shell Arithmetic})) and are zero-based;
7586 associative arrays use arbitrary strings.
7587 Unless otherwise noted, indexed array indices must be non-negative integers.
7588
7589 An indexed array is created automatically if any variable is assigned to
7590 using the syntax
7591 @example
7592 @var{name}[@var{subscript}]=@var{value}
7593 @end example
7594
7595 @noindent
7596 The @var{subscript}
7597 is treated as an arithmetic expression that must evaluate to a number.
7598 To explicitly declare an array, use
7599 @example
7600 declare -a @var{name}
7601 @end example
7602 @noindent
7603 The syntax
7604 @example
7605 declare -a @var{name}[@var{subscript}]
7606 @end example
7607 @noindent
7608 is also accepted; the @var{subscript} is ignored.
7609
7610 @noindent
7611 Associative arrays are created using
7612 @example
7613 declare -A @var{name}
7614 @end example
7615
7616 Attributes may be
7617 specified for an array variable using the @code{declare} and
7618 @code{readonly} builtins. Each attribute applies to all members of
7619 an array.
7620
7621 Arrays are assigned to using compound assignments of the form
7622 @example
7623 @var{name}=(@var{value1} @var{value2} @dots{} )
7624 @end example
7625 @noindent
7626 where each
7627 @var{value} may be of the form @code{[@var{subscript}]=}@var{string}.
7628 Indexed array assignments do not require anything but @var{string}.
7629 When assigning to indexed arrays, if
7630 the optional subscript is supplied, that index is assigned to;
7631 otherwise the index of the element assigned is the last index assigned
7632 to by the statement plus one. Indexing starts at zero.
7633
7634 Each @var{value} in the list undergoes all the shell expansions
7635 described above (@pxref{Shell Expansions}).
7636
7637 When assigning to an associative array, the words in a compound assignment
7638 may be either assignment statements, for which the subscript is required,
7639 or a list of words that is interpreted as a sequence of alternating keys
7640 and values:
7641 @var{name}=(@var{key1} @var{value1} @var{key2} @var{value2} @dots{} ).
7642 These are treated identically to
7643 @var{name}=( [@var{key1}]=@var{value1} [@var{key2}]=@var{value2} @dots{} ).
7644 The first word in the list determines how the remaining words
7645 are interpreted; all assignments in a list must be of the same type.
7646 When using key/value pairs, the keys may not be missing or empty;
7647 a final missing value is treated like the empty string.
7648
7649 This syntax is also accepted by the @code{declare}
7650 builtin. Individual array elements may be assigned to using the
7651 @code{@var{name}[@var{subscript}]=@var{value}} syntax introduced above.
7652
7653 When assigning to an indexed array, if @var{name}
7654 is subscripted by a negative number, that number is
7655 interpreted as relative to one greater than the maximum index of
7656 @var{name}, so negative indices count back from the end of the
7657 array, and an index of -1 references the last element.
7658
7659 Any element of an array may be referenced using
7660 @code{$@{@var{name}[@var{subscript}]@}}.
7661 The braces are required to avoid
7662 conflicts with the shell's filename expansion operators. If the
7663 @var{subscript} is @samp{@@} or @samp{*}, the word expands to all members
7664 of the array @var{name}. These subscripts differ only when the word
7665 appears within double quotes.
7666 If the word is double-quoted,
7667 @code{$@{@var{name}[*]@}} expands to a single word with
7668 the value of each array member separated by the first character of the
7669 @env{IFS} variable, and @code{$@{@var{name}[@@]@}} expands each element of
7670 @var{name} to a separate word. When there are no array members,
7671 @code{$@{@var{name}[@@]@}} expands to nothing.
7672 If the double-quoted expansion occurs within a word, the expansion of
7673 the first parameter is joined with the beginning part of the original
7674 word, and the expansion of the last parameter is joined with the last
7675 part of the original word.
7676 This is analogous to the
7677 expansion of the special parameters @samp{@@} and @samp{*}.
7678 @code{$@{#@var{name}[@var{subscript}]@}} expands to the length of
7679 @code{$@{@var{name}[@var{subscript}]@}}.
7680 If @var{subscript} is @samp{@@} or
7681 @samp{*}, the expansion is the number of elements in the array.
7682 If the @var{subscript}
7683 used to reference an element of an indexed array
7684 evaluates to a number less than zero, it is
7685 interpreted as relative to one greater than the maximum index of the array,
7686 so negative indices count back from the end of the array,
7687 and an index of -1 refers to the last element.
7688
7689 Referencing an array variable without a subscript is equivalent to
7690 referencing with a subscript of 0.
7691 Any reference to a variable using a valid subscript is legal, and
7692 @code{bash} will create an array if necessary.
7693
7694 An array variable is considered set if a subscript has been assigned a
7695 value. The null string is a valid value.
7696
7697 It is possible to obtain the keys (indices) of an array as well as the values.
7698 $@{!@var{name}[@@]@} and $@{!@var{name}[*]@} expand to the indices
7699 assigned in array variable @var{name}.
7700 The treatment when in double quotes is similar to the expansion of the
7701 special parameters @samp{@@} and @samp{*} within double quotes.
7702
7703 The @code{unset} builtin is used to destroy arrays.
7704 @code{unset @var{name}[@var{subscript}]}
7705 destroys the array element at index @var{subscript}.
7706 Negative subscripts to indexed arrays are interpreted as described above.
7707 Unsetting the last element of an array variable does not unset the variable.
7708 @code{unset @var{name}}, where @var{name} is an array, removes the
7709 entire array.
7710 @code{unset @var{name}[@var{subscript}]} behaves differently
7711 depending on the array type when given a
7712 subscript of @samp{*} or @samp{@@}.
7713 When @var{name} is an associative array, it removes the element with key
7714 @samp{*} or @samp{@@}.
7715 If @var{name} is an indexed array, @code{unset} removes all of the elements,
7716 but does not remove the array itself.
7717
7718 When using a variable name with a subscript as an argument to a command,
7719 such as with @code{unset}, without using the word expansion syntax
7720 described above, the argument is subject to the shell's filename expansion.
7721 If filename expansion is not desired, the argument should be quoted.
7722
7723 The @code{declare}, @code{local}, and @code{readonly}
7724 builtins each accept a @option{-a} option to specify an indexed
7725 array and a @option{-A} option to specify an associative array.
7726 If both options are supplied, @option{-A} takes precedence.
7727 The @code{read} builtin accepts a @option{-a}
7728 option to assign a list of words read from the standard input
7729 to an array, and can read values from the standard input into
7730 individual array elements. The @code{set} and @code{declare}
7731 builtins display array values in a way that allows them to be
7732 reused as input.
7733
7734 @node The Directory Stack
7735 @section The Directory Stack
7736 @cindex directory stack
7737
7738 @menu
7739 * Directory Stack Builtins:: Bash builtin commands to manipulate
7740 the directory stack.
7741 @end menu
7742
7743 The directory stack is a list of recently-visited directories. The
7744 @code{pushd} builtin adds directories to the stack as it changes
7745 the current directory, and the @code{popd} builtin removes specified
7746 directories from the stack and changes the current directory to
7747 the directory removed. The @code{dirs} builtin displays the contents
7748 of the directory stack. The current directory is always the "top"
7749 of the directory stack.
7750
7751 The contents of the directory stack are also visible
7752 as the value of the @env{DIRSTACK} shell variable.
7753
7754 @node Directory Stack Builtins
7755 @subsection Directory Stack Builtins
7756
7757 @table @code
7758
7759 @item dirs
7760 @btindex dirs
7761 @example
7762 dirs [-clpv] [+@var{N} | -@var{N}]
7763 @end example
7764
7765 Display the list of currently remembered directories. Directories
7766 are added to the list with the @code{pushd} command; the
7767 @code{popd} command removes directories from the list.
7768 The current directory is always the first directory in the stack.
7769
7770 @table @code
7771 @item -c
7772 Clears the directory stack by deleting all of the elements.
7773 @item -l
7774 Produces a listing using full pathnames;
7775 the default listing format uses a tilde to denote the home directory.
7776 @item -p
7777 Causes @code{dirs} to print the directory stack with one entry per
7778 line.
7779 @item -v
7780 Causes @code{dirs} to print the directory stack with one entry per
7781 line, prefixing each entry with its index in the stack.
7782 @item +@var{N}
7783 Displays the @var{N}th directory (counting from the left of the
7784 list printed by @code{dirs} when invoked without options), starting
7785 with zero.
7786 @item -@var{N}
7787 Displays the @var{N}th directory (counting from the right of the
7788 list printed by @code{dirs} when invoked without options), starting
7789 with zero.
7790 @end table
7791
7792 @item popd
7793 @btindex popd
7794 @example
7795 popd [-n] [+@var{N} | -@var{N}]
7796 @end example
7797
7798 Removes elements from the directory stack.
7799 The elements are numbered from 0 starting at the first directory
7800 listed by @code{dirs};
7801 that is, @code{popd} is equivalent to @code{popd +0}.
7802
7803 When no arguments are given, @code{popd}
7804 removes the top directory from the stack and changes to
7805 the new top directory.
7806
7807 Arguments, if supplied, have the following meanings:
7808
7809 @table @code
7810 @item -n
7811 Suppresses the normal change of directory when removing directories
7812 from the stack, so that only the stack is manipulated.
7813 @item +@var{N}
7814 Removes the @var{N}th directory (counting from the left of the
7815 list printed by @code{dirs}), starting with zero, from the stack.
7816 @item -@var{N}
7817 Removes the @var{N}th directory (counting from the right of the
7818 list printed by @code{dirs}), starting with zero, from the stack.
7819 @end table
7820
7821 If the top element of the directory stack is modified, and
7822 the @option{-n} option was not supplied, @code{popd} uses the @code{cd}
7823 builtin to change to the directory at the top of the stack.
7824 If the @code{cd} fails, @code{popd} returns a non-zero value.
7825
7826 Otherwise, @code{popd} returns an unsuccessful status if
7827 an invalid option is encountered, the directory stack
7828 is empty, or a non-existent directory stack entry is specified.
7829
7830 If the @code{popd} command is successful,
7831 Bash runs @code{dirs} to show the final contents of the directory stack,
7832 and the return status is 0.
7833
7834 @btindex pushd
7835 @item pushd
7836 @example
7837 pushd [-n] [@var{+N} | @var{-N} | @var{dir}]
7838 @end example
7839
7840 Adds a directory to the top of the directory stack, or rotates
7841 the stack, making the new top of the stack the current working
7842 directory.
7843 With no arguments, @code{pushd} exchanges the top two elements
7844 of the directory stack.
7845
7846 Arguments, if supplied, have the following meanings:
7847
7848 @table @code
7849 @item -n
7850 Suppresses the normal change of directory when rotating or
7851 adding directories to the stack, so that only the stack is manipulated.
7852 @item +@var{N}
7853 Brings the @var{N}th directory (counting from the left of the
7854 list printed by @code{dirs}, starting with zero) to the top of
7855 the list by rotating the stack.
7856 @item -@var{N}
7857 Brings the @var{N}th directory (counting from the right of the
7858 list printed by @code{dirs}, starting with zero) to the top of
7859 the list by rotating the stack.
7860 @item @var{dir}
7861 Makes @var{dir} be the top of the stack.
7862 @end table
7863
7864 After the stack has been modified, if the @option{-n} option was not
7865 supplied, @code{pushd} uses the @code{cd} builtin to change to the
7866 directory at the top of the stack.
7867 If the @code{cd} fails, @code{pushd} returns a non-zero value.
7868
7869 Otherwise, if no arguments are supplied, @code{pushd} returns 0 unless the
7870 directory stack is empty.
7871 When rotating the directory stack, @code{pushd} returns 0 unless
7872 the directory stack is empty or a non-existent directory stack element
7873 is specified.
7874
7875 If the @code{pushd} command is successful,
7876 Bash runs @code{dirs} to show the final contents of the directory stack.
7877
7878 @end table
7879
7880 @node Controlling the Prompt
7881 @section Controlling the Prompt
7882 @cindex prompting
7883
7884 Bash examines the value of the array variable @env{PROMPT_COMMAND} just before
7885 printing each primary prompt.
7886 If any elements in @env{PROMPT_COMMAND} are set and non-null, Bash
7887 executes each value, in numeric order,
7888 just as if it had been typed on the command line.
7889
7890 In addition, the following table describes the special characters which
7891 can appear in the prompt variables @env{PS0}, @env{PS1}, @env{PS2}, and
7892 @env{PS4}:
7893
7894 @table @code
7895 @item \a
7896 A bell character.
7897 @item \d
7898 The date, in "Weekday Month Date" format (e.g., "Tue May 26").
7899 @item \D@{@var{format}@}
7900 The @var{format} is passed to @code{strftime}(3) and the result is inserted
7901 into the prompt string; an empty @var{format} results in a locale-specific
7902 time representation. The braces are required.
7903 @item \e
7904 An escape character.
7905 @item \h
7906 The hostname, up to the first `.'.
7907 @item \H
7908 The hostname.
7909 @item \j
7910 The number of jobs currently managed by the shell.
7911 @item \l
7912 The basename of the shell's terminal device name.
7913 @item \n
7914 A newline.
7915 @item \r
7916 A carriage return.
7917 @item \s
7918 The name of the shell, the basename of @code{$0} (the portion
7919 following the final slash).
7920 @item \t
7921 The time, in 24-hour HH:MM:SS format.
7922 @item \T
7923 The time, in 12-hour HH:MM:SS format.
7924 @item \@@
7925 The time, in 12-hour am/pm format.
7926 @item \A
7927 The time, in 24-hour HH:MM format.
7928 @item \u
7929 The username of the current user.
7930 @item \v
7931 The version of Bash (e.g., 2.00)
7932 @item \V
7933 The release of Bash, version + patchlevel (e.g., 2.00.0)
7934 @item \w
7935 The value of the @code{PWD} shell variable (@env{$PWD}),
7936 with @env{$HOME} abbreviated with a tilde
7937 (uses the @env{$PROMPT_DIRTRIM} variable).
7938 @item \W
7939 The basename of @env{$PWD}, with @env{$HOME} abbreviated with a tilde.
7940 @item \!
7941 The history number of this command.
7942 @item \#
7943 The command number of this command.
7944 @item \$
7945 If the effective uid is 0, @code{#}, otherwise @code{$}.
7946 @item \@var{nnn}
7947 The character whose ASCII code is the octal value @var{nnn}.
7948 @item \\
7949 A backslash.
7950 @item \[
7951 Begin a sequence of non-printing characters. This could be used to
7952 embed a terminal control sequence into the prompt.
7953 @item \]
7954 End a sequence of non-printing characters.
7955 @end table
7956
7957 The command number and the history number are usually different:
7958 the history number of a command is its position in the history
7959 list, which may include commands restored from the history file
7960 (@pxref{Bash History Facilities}), while the command number is
7961 the position in the sequence of commands executed during the current
7962 shell session.
7963
7964 After the string is decoded, it is expanded via
7965 parameter expansion, command substitution, arithmetic
7966 expansion, and quote removal, subject to the value of the
7967 @code{promptvars} shell option (@pxref{The Shopt Builtin}).
7968 This can have unwanted side effects if escaped portions of the string
7969 appear within command substitution or contain characters special to
7970 word expansion.
7971
7972 @node The Restricted Shell
7973 @section The Restricted Shell
7974 @cindex restricted shell
7975
7976 If Bash is started with the name @code{rbash}, or the
7977 @option{--restricted}
7978 or
7979 @option{-r}
7980 option is supplied at invocation, the shell becomes restricted.
7981 A restricted shell is used to
7982 set up an environment more controlled than the standard shell.
7983 A restricted shell behaves identically to @code{bash}
7984 with the exception that the following are disallowed or not performed:
7985
7986 @itemize @bullet
7987 @item
7988 Changing directories with the @code{cd} builtin.
7989 @item
7990 Setting or unsetting the values of the @env{SHELL}, @env{PATH},
7991 @env{HISTFILE},
7992 @env{ENV}, or @env{BASH_ENV} variables.
7993 @item
7994 Specifying command names containing slashes.
7995 @item
7996 Specifying a filename containing a slash as an argument to the @code{.}
7997 builtin command.
7998 @item
7999 Specifying a filename containing a slash as an argument to the @code{history}
8000 builtin command.
8001 @item
8002 Specifying a filename containing a slash as an argument to the @option{-p}
8003 option to the @code{hash} builtin command.
8004 @item
8005 Importing function definitions from the shell environment at startup.
8006 @item
8007 Parsing the value of @env{SHELLOPTS} from the shell environment at startup.
8008 @item
8009 Redirecting output using the @samp{>}, @samp{>|}, @samp{<>}, @samp{>&},
8010 @samp{&>}, and @samp{>>} redirection operators.
8011 @item
8012 Using the @code{exec} builtin to replace the shell with another command.
8013 @item
8014 Adding or deleting builtin commands with the
8015 @option{-f} and @option{-d} options to the @code{enable} builtin.
8016 @item
8017 Using the @code{enable} builtin command to enable disabled shell builtins.
8018 @item
8019 Specifying the @option{-p} option to the @code{command} builtin.
8020 @item
8021 Turning off restricted mode with @samp{set +r} or @samp{shopt -u restricted_shell}.
8022 @end itemize
8023
8024 These restrictions are enforced after any startup files are read.
8025
8026 When a command that is found to be a shell script is executed
8027 (@pxref{Shell Scripts}), @code{rbash} turns off any restrictions in
8028 the shell spawned to execute the script.
8029
8030 The restricted shell mode is only one component of a useful restricted
8031 environment. It should be accompanied by setting @env{PATH} to a value
8032 that allows execution of only a few verified commands (commands that
8033 allow shell escapes are particularly vulnerable), changing the current
8034 directory to a non-writable directory other than @env{$HOME} after login,
8035 not allowing the restricted shell to execute shell scripts, and cleaning
8036 the environment of variables that cause some commands to modify their
8037 behavior (e.g., @env{VISUAL} or @env{PAGER}).
8038
8039 Modern systems provide more secure ways to implement a restricted environment,
8040 such as @code{jails}, @code{zones}, or @code{containers}.
8041
8042
8043 @node Bash POSIX Mode
8044 @section Bash POSIX Mode
8045 @cindex POSIX Mode
8046
8047 Starting Bash with the @option{--posix} command-line option or executing
8048 @samp{set -o posix} while Bash is running will cause Bash to conform more
8049 closely to the @sc{posix} standard by changing the behavior to
8050 match that specified by @sc{posix} in areas where the Bash default differs.
8051
8052 When invoked as @code{sh}, Bash enters @sc{posix} mode after reading the
8053 startup files.
8054
8055 The following list is what's changed when `@sc{posix} mode' is in effect:
8056
8057 @enumerate
8058 @item
8059 Bash ensures that the @env{POSIXLY_CORRECT} variable is set.
8060
8061 @item
8062 When a command in the hash table no longer exists, Bash will re-search
8063 @env{$PATH} to find the new location. This is also available with
8064 @samp{shopt -s checkhash}.
8065
8066 @item
8067 Bash will not insert a command without the execute bit set into the
8068 command hash table, even if it returns it as a (last-ditch) result
8069 from a @env{$PATH} search.
8070
8071 @item
8072 The message printed by the job control code and builtins when a job
8073 exits with a non-zero status is `Done(status)'.
8074
8075 @item
8076 The message printed by the job control code and builtins when a job
8077 is stopped is `Stopped(@var{signame})', where @var{signame} is, for
8078 example, @code{SIGTSTP}.
8079
8080 @item
8081 Alias expansion is always enabled, even in non-interactive shells.
8082
8083 @item
8084 Reserved words appearing in a context where reserved words are recognized
8085 do not undergo alias expansion.
8086
8087 @item
8088 The @sc{posix} @env{PS1} and @env{PS2} expansions of @samp{!} to
8089 the history number and @samp{!!} to @samp{!} are enabled,
8090 and parameter expansion is performed on the values of @env{PS1} and
8091 @env{PS2} regardless of the setting of the @code{promptvars} option.
8092
8093 @item
8094 The @sc{posix} startup files are executed (@env{$ENV}) rather than
8095 the normal Bash files.
8096
8097 @item
8098 Tilde expansion is only performed on assignments preceding a command
8099 name, rather than on all assignment statements on the line.
8100
8101 @item
8102 The default history file is @file{~/.sh_history} (this is the
8103 default value of @env{$HISTFILE}).
8104
8105 @item
8106 Redirection operators do not perform filename expansion on the word
8107 in the redirection unless the shell is interactive.
8108
8109 @item
8110 Redirection operators do not perform word splitting on the word in the
8111 redirection.
8112
8113 @item
8114 Function names must be valid shell @code{name}s. That is, they may not
8115 contain characters other than letters, digits, and underscores, and
8116 may not start with a digit. Declaring a function with an invalid name
8117 causes a fatal syntax error in non-interactive shells.
8118
8119 @item
8120 Function names may not be the same as one of the @sc{posix} special
8121 builtins.
8122
8123 @item
8124 @sc{posix} special builtins are found before shell functions
8125 during command lookup.
8126
8127 @item
8128 When printing shell function definitions (e.g., by @code{type}), Bash does
8129 not print the @code{function} keyword.
8130
8131 @item
8132 Literal tildes that appear as the first character in elements of
8133 the @env{PATH} variable are not expanded as described above
8134 under @ref{Tilde Expansion}.
8135
8136 @item
8137 The @code{time} reserved word may be used by itself as a command. When
8138 used in this way, it displays timing statistics for the shell and its
8139 completed children. The @env{TIMEFORMAT} variable controls the format
8140 of the timing information.
8141
8142 @item
8143 When parsing and expanding a $@{@dots{}@} expansion that appears within
8144 double quotes, single quotes are no longer special and cannot be used to
8145 quote a closing brace or other special character, unless the operator is
8146 one of those defined to perform pattern removal. In this case, they do
8147 not have to appear as matched pairs.
8148
8149 @item
8150 The parser does not recognize @code{time} as a reserved word if the next
8151 token begins with a @samp{-}.
8152
8153 @ignore
8154 @item
8155 When parsing @code{$()} command substitutions containing here-documents,
8156 the parser does not allow a here-document to be delimited by the closing
8157 right parenthesis. The newline after the here-document delimiter is required.
8158 @end ignore
8159
8160 @item
8161 The @samp{!} character does not introduce history expansion within a
8162 double-quoted string, even if the @code{histexpand} option is enabled.
8163
8164 @item
8165 If a @sc{posix} special builtin returns an error status, a
8166 non-interactive shell exits. The fatal errors are those listed in
8167 the @sc{posix} standard, and include things like passing incorrect options,
8168 redirection errors, variable assignment errors for assignments preceding
8169 the command name, and so on.
8170
8171 @item
8172 A non-interactive shell exits with an error status if a variable
8173 assignment error occurs when no command name follows the assignment
8174 statements.
8175 A variable assignment error occurs, for example, when trying to assign
8176 a value to a readonly variable.
8177
8178 @item
8179 A non-interactive shell exits with an error status if a variable
8180 assignment error occurs in an assignment statement preceding a special
8181 builtin, but not with any other simple command. For any other simple
8182 command, the shell aborts execution of that command, and execution continues
8183 at the top level ("the shell shall not perform any further processing of the
8184 command in which the error occurred").
8185
8186 @item
8187 A non-interactive shell exits with an error status if the iteration
8188 variable in a @code{for} statement or the selection variable in a
8189 @code{select} statement is a readonly variable.
8190
8191 @item
8192 Non-interactive shells exit if @var{filename} in @code{.} @var{filename}
8193 is not found.
8194
8195 @item
8196 Non-interactive shells exit if a syntax error in an arithmetic expansion
8197 results in an invalid expression.
8198
8199 @item
8200 Non-interactive shells exit if a parameter expansion error occurs.
8201
8202 @item
8203 Non-interactive shells exit if there is a syntax error in a script read
8204 with the @code{.} or @code{source} builtins, or in a string processed by
8205 the @code{eval} builtin.
8206
8207 @item
8208 While variable indirection is available, it may not be applied to the
8209 @samp{#} and @samp{?} special parameters.
8210
8211 @item
8212 When expanding the @samp{*} special parameter in a pattern context where the
8213 expansion is double-quoted does not treat the @code{$*} as if it were
8214 double-quoted.
8215
8216 @item
8217 Assignment statements preceding @sc{posix} special builtins
8218 persist in the shell environment after the builtin completes.
8219
8220 @item
8221 The @code{command} builtin does not prevent builtins that take assignment
8222 statements as arguments from expanding them as assignment statements;
8223 when not in @sc{posix} mode, assignment builtins lose their assignment
8224 statement expansion properties when preceded by @code{command}.
8225
8226 @item
8227 The @code{bg} builtin uses the required format to describe each job placed
8228 in the background, which does not include an indication of whether the job
8229 is the current or previous job.
8230
8231 @item
8232 The output of @samp{kill -l} prints all the signal names on a single line,
8233 separated by spaces, without the @samp{SIG} prefix.
8234
8235 @item
8236 The @code{kill} builtin does not accept signal names with a @samp{SIG}
8237 prefix.
8238
8239 @item
8240 The @code{export} and @code{readonly} builtin commands display their
8241 output in the format required by @sc{posix}.
8242
8243 @item
8244 The @code{trap} builtin displays signal names without the leading
8245 @code{SIG}.
8246
8247 @item
8248 The @code{trap} builtin doesn't check the first argument for a possible
8249 signal specification and revert the signal handling to the original
8250 disposition if it is, unless that argument consists solely of digits and
8251 is a valid signal number. If users want to reset the handler for a given
8252 signal to the original disposition, they should use @samp{-} as the
8253 first argument.
8254
8255 @item
8256 @code{trap -p} displays signals whose dispositions are set to SIG_DFL and
8257 those that were ignored when the shell started.
8258
8259 @item
8260 The @code{.} and @code{source} builtins do not search the current directory
8261 for the filename argument if it is not found by searching @env{PATH}.
8262
8263 @item
8264 Enabling @sc{posix} mode has the effect of setting the
8265 @code{inherit_errexit} option, so
8266 subshells spawned to execute command substitutions inherit the value of
8267 the @option{-e} option from the parent shell.
8268 When the @code{inherit_errexit} option is not enabled,
8269 Bash clears the @option{-e} option in such subshells.
8270
8271 @item
8272 Enabling @sc{posix} mode has the effect of setting the
8273 @code{shift_verbose} option, so numeric arguments to @code{shift}
8274 that exceed the number of positional parameters will result in an
8275 error message.
8276
8277 @item
8278 When the @code{alias} builtin displays alias definitions, it does not
8279 display them with a leading @samp{alias } unless the @option{-p} option
8280 is supplied.
8281
8282 @item
8283 When the @code{set} builtin is invoked without options, it does not display
8284 shell function names and definitions.
8285
8286 @item
8287 When the @code{set} builtin is invoked without options, it displays
8288 variable values without quotes, unless they contain shell metacharacters,
8289 even if the result contains nonprinting characters.
8290
8291 @item
8292 When the @code{cd} builtin is invoked in logical mode, and the pathname
8293 constructed from @code{$PWD} and the directory name supplied as an argument
8294 does not refer to an existing directory, @code{cd} will fail instead of
8295 falling back to physical mode.
8296
8297 @item
8298 When the @code{cd} builtin cannot change a directory because the
8299 length of the pathname
8300 constructed from @code{$PWD} and the directory name supplied as an argument
8301 exceeds @code{PATH_MAX} when all symbolic links are expanded, @code{cd} will
8302 fail instead of attempting to use only the supplied directory name.
8303
8304 @item
8305 The @code{pwd} builtin verifies that the value it prints is the same as the
8306 current directory, even if it is not asked to check the file system with the
8307 @option{-P} option.
8308
8309 @item
8310 When listing the history, the @code{fc} builtin does not include an
8311 indication of whether or not a history entry has been modified.
8312
8313 @item
8314 The default editor used by @code{fc} is @code{ed}.
8315
8316 @item
8317 The @code{type} and @code{command} builtins will not report a non-executable
8318 file as having been found, though the shell will attempt to execute such a
8319 file if it is the only so-named file found in @code{$PATH}.
8320
8321 @item
8322 The @code{vi} editing mode will invoke the @code{vi} editor directly when
8323 the @samp{v} command is run, instead of checking @code{$VISUAL} and
8324 @code{$EDITOR}.
8325
8326 @item
8327 When the @code{xpg_echo} option is enabled, Bash does not attempt to interpret
8328 any arguments to @code{echo} as options. Each argument is displayed, after
8329 escape characters are converted.
8330
8331 @item
8332 The @code{ulimit} builtin uses a block size of 512 bytes for the @option{-c}
8333 and @option{-f} options.
8334
8335 @item
8336 The arrival of @code{SIGCHLD} when a trap is set on @code{SIGCHLD} does
8337 not interrupt the @code{wait} builtin and cause it to return immediately.
8338 The trap command is run once for each child that exits.
8339
8340 @item
8341 The @code{read} builtin may be interrupted by a signal for which a trap
8342 has been set.
8343 If Bash receives a trapped signal while executing @code{read}, the trap
8344 handler executes and @code{read} returns an exit status greater than 128.
8345
8346 @item
8347 Bash removes an exited background process's status from the list of such
8348 statuses after the @code{wait} builtin is used to obtain it.
8349
8350 @end enumerate
8351
8352 There is other @sc{posix} behavior that Bash does not implement by
8353 default even when in @sc{posix} mode.
8354 Specifically:
8355
8356 @enumerate
8357
8358 @item
8359 The @code{fc} builtin checks @code{$EDITOR} as a program to edit history
8360 entries if @code{FCEDIT} is unset, rather than defaulting directly to
8361 @code{ed}. @code{fc} uses @code{ed} if @code{EDITOR} is unset.
8362
8363 @item
8364 As noted above, Bash requires the @code{xpg_echo} option to be enabled for
8365 the @code{echo} builtin to be fully conformant.
8366
8367 @end enumerate
8368
8369 Bash can be configured to be @sc{posix}-conformant by default, by specifying
8370 the @option{--enable-strict-posix-default} to @code{configure} when building
8371 (@pxref{Optional Features}).
8372
8373 @node Shell Compatibility Mode
8374 @section Shell Compatibility Mode
8375 @cindex Compatibility Level
8376 @cindex Compatibility Mode
8377
8378 Bash-4.0 introduced the concept of a `shell compatibility level', specified
8379 as a set of options to the shopt builtin
8380 (@code{compat31},
8381 @code{compat32},
8382 @code{compat40},
8383 @code{compat41},
8384 and so on).
8385 There is only one current
8386 compatibility level -- each option is mutually exclusive.
8387 The compatibility level is intended to allow users to select behavior
8388 from previous versions that is incompatible with newer versions
8389 while they migrate scripts to use current features and
8390 behavior. It's intended to be a temporary solution.
8391
8392 This section does not mention behavior that is standard for a particular
8393 version (e.g., setting @code{compat32} means that quoting the rhs of the regexp
8394 matching operator quotes special regexp characters in the word, which is
8395 default behavior in bash-3.2 and above).
8396
8397 If a user enables, say, @code{compat32}, it may affect the behavior of other
8398 compatibility levels up to and including the current compatibility level.
8399 The idea is that each compatibility level controls behavior that changed
8400 in that version of Bash,
8401 but that behavior may have been present in earlier versions.
8402 For instance, the change to use locale-based comparisons with the @code{[[}
8403 command came in bash-4.1, and earlier versions used ASCII-based comparisons,
8404 so enabling @code{compat32} will enable ASCII-based comparisons as well.
8405 That granularity may not be sufficient for
8406 all uses, and as a result users should employ compatibility levels carefully.
8407 Read the documentation for a particular feature to find out the
8408 current behavior.
8409
8410 Bash-4.3 introduced a new shell variable: @env{BASH_COMPAT}.
8411 The value assigned
8412 to this variable (a decimal version number like 4.2, or an integer
8413 corresponding to the @code{compat}@var{NN} option, like 42) determines the
8414 compatibility level.
8415
8416 Starting with bash-4.4, Bash has begun deprecating older compatibility
8417 levels.
8418 Eventually, the options will be removed in favor of @env{BASH_COMPAT}.
8419
8420 Bash-5.0 is the final version for which there will be an individual shopt
8421 option for the previous version. Users should use @env{BASH_COMPAT}
8422 on bash-5.0 and later versions.
8423
8424 The following table describes the behavior changes controlled by each
8425 compatibility level setting.
8426 The @code{compat}@var{NN} tag is used as shorthand for setting the
8427 compatibility level
8428 to @var{NN} using one of the following mechanisms.
8429 For versions prior to bash-5.0, the compatibility level may be set using
8430 the corresponding @code{compat}@var{NN} shopt option.
8431 For bash-4.3 and later versions, the @env{BASH_COMPAT} variable is preferred,
8432 and it is required for bash-5.1 and later versions.
8433
8434 @table @code
8435 @item compat31
8436 @itemize @bullet
8437 @item
8438 quoting the rhs of the @code{[[} command's regexp matching operator (=~)
8439 has no special effect
8440 @end itemize
8441
8442 @item compat32
8443 @itemize @bullet
8444 @item
8445 interrupting a command list such as "a ; b ; c" causes the execution
8446 of the next command in the list (in bash-4.0 and later versions,
8447 the shell acts as if it received the interrupt, so
8448 interrupting one command in a list aborts the execution of the
8449 entire list)
8450 @end itemize
8451
8452 @item compat40
8453 @itemize @bullet
8454 @item
8455 the @samp{<} and @samp{>} operators to the @code{[[} command do not
8456 consider the current locale when comparing strings; they use ASCII
8457 ordering.
8458 Bash versions prior to bash-4.1 use ASCII collation and strcmp(3);
8459 bash-4.1 and later use the current locale's collation sequence and
8460 strcoll(3).
8461 @end itemize
8462
8463 @item compat41
8464 @itemize @bullet
8465 @item
8466 in posix mode, @code{time} may be followed by options and still be
8467 recognized as a reserved word (this is @sc{posix} interpretation 267)
8468 @item
8469 in posix mode, the parser requires that an even number of single
8470 quotes occur in the @var{word} portion of a double-quoted $@{@dots{}@}
8471 parameter expansion and treats them specially, so that characters within
8472 the single quotes are considered quoted
8473 (this is @sc{posix} interpretation 221)
8474 @end itemize
8475
8476 @item compat42
8477 @itemize @bullet
8478 @item
8479 the replacement string in double-quoted pattern substitution does not
8480 undergo quote removal, as it does in versions after bash-4.2
8481 @item
8482 in posix mode, single quotes are considered special when expanding
8483 the @var{word} portion of a double-quoted $@{@dots{}@} parameter expansion
8484 and can be used to quote a closing brace or other special character
8485 (this is part of @sc{posix} interpretation 221);
8486 in later versions, single quotes
8487 are not special within double-quoted word expansions
8488 @end itemize
8489
8490 @item compat43
8491 @itemize @bullet
8492 @item
8493 the shell does not print a warning message if an attempt is made to
8494 use a quoted compound assignment as an argument to declare
8495 (declare -a foo='(1 2)'). Later versions warn that this usage is
8496 deprecated
8497 @item
8498 word expansion errors are considered non-fatal errors that cause the
8499 current command to fail, even in posix mode
8500 (the default behavior is to make them fatal errors that cause the shell
8501 to exit)
8502 @item
8503 when executing a shell function, the loop state (while/until/etc.)
8504 is not reset, so @code{break} or @code{continue} in that function will break
8505 or continue loops in the calling context. Bash-4.4 and later reset
8506 the loop state to prevent this
8507 @end itemize
8508
8509 @item compat44
8510 @itemize @bullet
8511 @item
8512 the shell sets up the values used by @env{BASH_ARGV} and @env{BASH_ARGC}
8513 so they can expand to the shell's positional parameters even if extended
8514 debugging mode is not enabled
8515 @item
8516 a subshell inherits loops from its parent context, so @code{break}
8517 or @code{continue} will cause the subshell to exit.
8518 Bash-5.0 and later reset the loop state to prevent the exit
8519 @item
8520 variable assignments preceding builtins like @code{export} and @code{readonly}
8521 that set attributes continue to affect variables with the same
8522 name in the calling environment even if the shell is not in posix
8523 mode
8524 @end itemize
8525
8526 @item compat50 (set using BASH_COMPAT)
8527 @itemize @bullet
8528 @item
8529 Bash-5.1 changed the way @code{$RANDOM} is generated to introduce slightly
8530 more randomness. If the shell compatibility level is set to 50 or
8531 lower, it reverts to the method from bash-5.0 and previous versions,
8532 so seeding the random number generator by assigning a value to
8533 @env{RANDOM} will produce the same sequence as in bash-5.0
8534 @item
8535 If the command hash table is empty, Bash versions prior to bash-5.1
8536 printed an informational message to that effect, even when producing
8537 output that can be reused as input. Bash-5.1 suppresses that message
8538 when the @option{-l} option is supplied.
8539 @end itemize
8540
8541 @item compat51 (set using BASH_COMPAT)
8542 @itemize @bullet
8543 @item
8544 The @code{unset} builtin will unset the array @code{a} given an argument like
8545 @samp{a[@@]}.
8546 Bash-5.2 will unset an element with key @samp{@@} (associative arrays)
8547 or remove all the elements without unsetting the array (indexed arrays)
8548 @item
8549 arithmetic commands ( ((...)) ) and the expressions in an arithmetic for
8550 statement can be expanded more than once
8551 @item
8552 expressions used as arguments to arithmetic operators in the @code{[[}
8553 conditional command can be expanded more than once
8554 @item
8555 the expressions in substring parameter brace expansion can be
8556 expanded more than once
8557 @item
8558 the expressions in the $(( ... )) word expansion can be expanded
8559 more than once
8560 @item
8561 arithmetic expressions used as indexed array subscripts can be
8562 expanded more than once
8563 @item
8564 @code{test -v}, when given an argument of @samp{A[@@]}, where @var{A} is
8565 an existing associative array, will return true if the array has any set
8566 elements.
8567 Bash-5.2 will look for and report on a key named @samp{@@}
8568 @item
8569 the $@{@var{parameter}[:]=@var{value}@} word expansion will return
8570 @var{value}, before any variable-specific transformations have been
8571 performed (e.g., converting to lowercase).
8572 Bash-5.2 will return the final value assigned to the variable.
8573 @end itemize
8574 @end table
8575
8576 @node Job Control
8577 @chapter Job Control
8578
8579 This chapter discusses what job control is, how it works, and how
8580 Bash allows you to access its facilities.
8581
8582 @menu
8583 * Job Control Basics:: How job control works.
8584 * Job Control Builtins:: Bash builtin commands used to interact
8585 with job control.
8586 * Job Control Variables:: Variables Bash uses to customize job
8587 control.
8588 @end menu
8589
8590 @node Job Control Basics
8591 @section Job Control Basics
8592 @cindex job control
8593 @cindex foreground
8594 @cindex background
8595 @cindex suspending jobs
8596
8597 Job control
8598 refers to the ability to selectively stop (suspend)
8599 the execution of processes and continue (resume)
8600 their execution at a later point. A user typically employs
8601 this facility via an interactive interface supplied jointly
8602 by the operating system kernel's terminal driver and Bash.
8603
8604 The shell associates a @var{job} with each pipeline. It keeps a
8605 table of currently executing jobs, which may be listed with the
8606 @code{jobs} command. When Bash starts a job
8607 asynchronously, it prints a line that looks
8608 like:
8609 @example
8610 [1] 25647
8611 @end example
8612 @noindent
8613 indicating that this job is job number 1 and that the process @sc{id}
8614 of the last process in the pipeline associated with this job is
8615 25647. All of the processes in a single pipeline are members of
8616 the same job. Bash uses the @var{job} abstraction as the
8617 basis for job control.
8618
8619 To facilitate the implementation of the user interface to job
8620 control, the operating system maintains the notion of a current terminal
8621 process group @sc{id}. Members of this process group (processes whose
8622 process group @sc{id} is equal to the current terminal process group
8623 @sc{id}) receive keyboard-generated signals such as @code{SIGINT}.
8624 These processes are said to be in the foreground. Background
8625 processes are those whose process group @sc{id} differs from the
8626 terminal's; such processes are immune to keyboard-generated
8627 signals. Only foreground processes are allowed to read from or, if
8628 the user so specifies with @code{stty tostop}, write to the terminal.
8629 Background processes which attempt to
8630 read from (write to when @code{stty tostop} is in effect) the
8631 terminal are sent a @code{SIGTTIN} (@code{SIGTTOU})
8632 signal by the kernel's terminal driver,
8633 which, unless caught, suspends the process.
8634
8635 If the operating system on which Bash is running supports
8636 job control, Bash contains facilities to use it. Typing the
8637 @dfn{suspend} character (typically @samp{^Z}, Control-Z) while a
8638 process is running causes that process to be stopped and returns
8639 control to Bash. Typing the @dfn{delayed suspend} character
8640 (typically @samp{^Y}, Control-Y) causes the process to be stopped
8641 when it attempts to read input from the terminal, and control to
8642 be returned to Bash. The user then manipulates the state of
8643 this job, using the @code{bg} command to continue it in the
8644 background, the @code{fg} command to continue it in the
8645 foreground, or the @code{kill} command to kill it. A @samp{^Z}
8646 takes effect immediately, and has the additional side effect of
8647 causing pending output and typeahead to be discarded.
8648
8649 There are a number of ways to refer to a job in the shell. The
8650 character @samp{%} introduces a job specification (@dfn{jobspec}).
8651
8652 Job number @code{n} may be referred to as @samp{%n}.
8653 The symbols @samp{%%} and @samp{%+} refer to the shell's notion of the
8654 current job, which is the last job stopped while it was in the foreground
8655 or started in the background.
8656 A single @samp{%} (with no accompanying job specification) also refers
8657 to the current job.
8658 The previous job may be referenced using @samp{%-}.
8659 If there is only a single job, @samp{%+} and @samp{%-} can both be used
8660 to refer to that job.
8661 In output pertaining to jobs (e.g., the output of the @code{jobs}
8662 command), the current job is always flagged with a @samp{+}, and the
8663 previous job with a @samp{-}.
8664
8665 A job may also be referred to
8666 using a prefix of the name used to start it, or using a substring
8667 that appears in its command line. For example, @samp{%ce} refers
8668 to a stopped job whose command name begins with @samp{ce}.
8669 Using @samp{%?ce}, on the
8670 other hand, refers to any job containing the string @samp{ce} in
8671 its command line. If the prefix or substring matches more than one job,
8672 Bash reports an error.
8673
8674 Simply naming a job can be used to bring it into the foreground:
8675 @samp{%1} is a synonym for @samp{fg %1}, bringing job 1 from the
8676 background into the foreground. Similarly, @samp{%1 &} resumes
8677 job 1 in the background, equivalent to @samp{bg %1}
8678
8679 The shell learns immediately whenever a job changes state.
8680 Normally, Bash waits until it is about to print a prompt
8681 before reporting changes in a job's status so as to not interrupt
8682 any other output.
8683 If the @option{-b} option to the @code{set} builtin is enabled,
8684 Bash reports such changes immediately (@pxref{The Set Builtin}).
8685 Any trap on @code{SIGCHLD} is executed for each child process
8686 that exits.
8687
8688 If an attempt to exit Bash is made while jobs are stopped, (or running, if
8689 the @code{checkjobs} option is enabled -- see @ref{The Shopt Builtin}), the
8690 shell prints a warning message, and if the @code{checkjobs} option is
8691 enabled, lists the jobs and their statuses.
8692 The @code{jobs} command may then be used to inspect their status.
8693 If a second attempt to exit is made without an intervening command,
8694 Bash does not print another warning, and any stopped jobs are terminated.
8695
8696 When the shell is waiting for a job or process using the @code{wait}
8697 builtin, and job control is enabled, @code{wait} will return when the
8698 job changes state. The @option{-f} option causes @code{wait} to wait
8699 until the job or process terminates before returning.
8700
8701 @node Job Control Builtins
8702 @section Job Control Builtins
8703
8704 @table @code
8705
8706 @item bg
8707 @btindex bg
8708 @example
8709 bg [@var{jobspec} @dots{}]
8710 @end example
8711
8712 Resume each suspended job @var{jobspec} in the background, as if it
8713 had been started with @samp{&}.
8714 If @var{jobspec} is not supplied, the current job is used.
8715 The return status is zero unless it is run when job control is not
8716 enabled, or, when run with job control enabled, any
8717 @var{jobspec} was not found or specifies a job
8718 that was started without job control.
8719
8720 @item fg
8721 @btindex fg
8722 @example
8723 fg [@var{jobspec}]
8724 @end example
8725
8726 Resume the job @var{jobspec} in the foreground and make it the current job.
8727 If @var{jobspec} is not supplied, the current job is used.
8728 The return status is that of the command placed into the foreground,
8729 or non-zero if run when job control is disabled or, when run with
8730 job control enabled, @var{jobspec} does not specify a valid job or
8731 @var{jobspec} specifies a job that was started without job control.
8732
8733 @item jobs
8734 @btindex jobs
8735 @example
8736 jobs [-lnprs] [@var{jobspec}]
8737 jobs -x @var{command} [@var{arguments}]
8738 @end example
8739
8740 The first form lists the active jobs. The options have the
8741 following meanings:
8742
8743 @table @code
8744 @item -l
8745 List process @sc{id}s in addition to the normal information.
8746
8747 @item -n
8748 Display information only about jobs that have changed status since
8749 the user was last notified of their status.
8750
8751 @item -p
8752 List only the process @sc{id} of the job's process group leader.
8753
8754 @item -r
8755 Display only running jobs.
8756
8757 @item -s
8758 Display only stopped jobs.
8759 @end table
8760
8761 If @var{jobspec} is given,
8762 output is restricted to information about that job.
8763 If @var{jobspec} is not supplied, the status of all jobs is
8764 listed.
8765
8766 If the @option{-x} option is supplied, @code{jobs} replaces any
8767 @var{jobspec} found in @var{command} or @var{arguments} with the
8768 corresponding process group @sc{id}, and executes @var{command},
8769 passing it @var{argument}s, returning its exit status.
8770
8771 @item kill
8772 @btindex kill
8773 @example
8774 kill [-s @var{sigspec}] [-n @var{signum}] [-@var{sigspec}] @var{jobspec} or @var{pid}
8775 kill -l|-L [@var{exit_status}]
8776 @end example
8777
8778 Send a signal specified by @var{sigspec} or @var{signum} to the process
8779 named by job specification @var{jobspec} or process @sc{id} @var{pid}.
8780 @var{sigspec} is either a case-insensitive signal name such as
8781 @code{SIGINT} (with or without the @code{SIG} prefix)
8782 or a signal number; @var{signum} is a signal number.
8783 If @var{sigspec} and @var{signum} are not present, @code{SIGTERM} is used.
8784 The @option{-l} option lists the signal names.
8785 If any arguments are supplied when @option{-l} is given, the names of the
8786 signals corresponding to the arguments are listed, and the return status
8787 is zero.
8788 @var{exit_status} is a number specifying a signal number or the exit
8789 status of a process terminated by a signal.
8790 The @option{-L} option is equivalent to @option{-l}.
8791 The return status is zero if at least one signal was successfully sent,
8792 or non-zero if an error occurs or an invalid option is encountered.
8793
8794 @item wait
8795 @btindex wait
8796 @example
8797 wait [-fn] [-p @var{varname}] [@var{jobspec} or @var{pid} @dots{}]
8798 @end example
8799
8800 Wait until the child process specified by each process @sc{id} @var{pid}
8801 or job specification @var{jobspec} exits and return the exit status of the
8802 last command waited for.
8803 If a job spec is given, all processes in the job are waited for.
8804 If no arguments are given,
8805 @code{wait} waits for all running background jobs and
8806 the last-executed process substitution, if its process id is the same as
8807 @var{$!},
8808 and the return status is zero.
8809 If the @option{-n} option is supplied, @code{wait} waits for a single job
8810 from the list of @var{pid}s or @var{jobspec}s or, if no arguments are
8811 supplied, any job,
8812 to complete and returns its exit status.
8813 If none of the supplied arguments is a child of the shell, or if no arguments
8814 are supplied and the shell has no unwaited-for children, the exit status
8815 is 127.
8816 If the @option{-p} option is supplied, the process or job identifier of the job
8817 for which the exit status is returned is assigned to the variable
8818 @var{varname} named by the option argument.
8819 The variable will be unset initially, before any assignment.
8820 This is useful only when the @option{-n} option is supplied.
8821 Supplying the @option{-f} option, when job control is enabled,
8822 forces @code{wait} to wait for each @var{pid} or @var{jobspec} to
8823 terminate before returning its status, intead of returning when it changes
8824 status.
8825 If neither @var{jobspec} nor @var{pid} specifies an active child process
8826 of the shell, the return status is 127.
8827
8828 @item disown
8829 @btindex disown
8830 @example
8831 disown [-ar] [-h] [@var{jobspec} @dots{} | @var{pid} @dots{} ]
8832 @end example
8833
8834 Without options, remove each @var{jobspec} from the table of
8835 active jobs.
8836 If the @option{-h} option is given, the job is not removed from the table,
8837 but is marked so that @code{SIGHUP} is not sent to the job if the shell
8838 receives a @code{SIGHUP}.
8839 If @var{jobspec} is not present, and neither the @option{-a} nor the
8840 @option{-r} option is supplied, the current job is used.
8841 If no @var{jobspec} is supplied, the @option{-a} option means to remove or
8842 mark all jobs; the @option{-r} option without a @var{jobspec}
8843 argument restricts operation to running jobs.
8844
8845 @item suspend
8846 @btindex suspend
8847 @example
8848 suspend [-f]
8849 @end example
8850
8851 Suspend the execution of this shell until it receives a
8852 @code{SIGCONT} signal.
8853 A login shell cannot be suspended; the @option{-f}
8854 option can be used to override this and force the suspension.
8855 @end table
8856
8857 When job control is not active, the @code{kill} and @code{wait}
8858 builtins do not accept @var{jobspec} arguments. They must be
8859 supplied process @sc{id}s.
8860
8861 @node Job Control Variables
8862 @section Job Control Variables
8863
8864 @vtable @code
8865
8866 @item auto_resume
8867 This variable controls how the shell interacts with the user and
8868 job control. If this variable exists then single word simple
8869 commands without redirections are treated as candidates for resumption
8870 of an existing job. There is no ambiguity allowed; if there is
8871 more than one job beginning with the string typed, then
8872 the most recently accessed job will be selected.
8873 The name of a stopped job, in this context, is the command line
8874 used to start it. If this variable is set to the value @samp{exact},
8875 the string supplied must match the name of a stopped job exactly;
8876 if set to @samp{substring},
8877 the string supplied needs to match a substring of the name of a
8878 stopped job. The @samp{substring} value provides functionality
8879 analogous to the @samp{%?} job @sc{id} (@pxref{Job Control Basics}).
8880 If set to any other value, the supplied string must
8881 be a prefix of a stopped job's name; this provides functionality
8882 analogous to the @samp{%} job @sc{id}.
8883
8884 @end vtable
8885
8886 @set readline-appendix
8887 @set history-appendix
8888 @cindex Readline, how to use
8889 @include rluser.texi
8890 @cindex History, how to use
8891 @include hsuser.texi
8892 @clear readline-appendix
8893 @clear history-appendix
8894
8895 @node Installing Bash
8896 @chapter Installing Bash
8897
8898 This chapter provides basic instructions for installing Bash on
8899 the various supported platforms. The distribution supports the
8900 @sc{gnu} operating systems, nearly every version of Unix, and several
8901 non-Unix systems such as BeOS and Interix.
8902 Other independent ports exist for
8903 @sc{ms-dos}, @sc{os/2}, and Windows platforms.
8904
8905 @menu
8906 * Basic Installation:: Installation instructions.
8907 * Compilers and Options:: How to set special options for various
8908 systems.
8909 * Compiling For Multiple Architectures:: How to compile Bash for more
8910 than one kind of system from
8911 the same source tree.
8912 * Installation Names:: How to set the various paths used by the installation.
8913 * Specifying the System Type:: How to configure Bash for a particular system.
8914 * Sharing Defaults:: How to share default configuration values among GNU
8915 programs.
8916 * Operation Controls:: Options recognized by the configuration program.
8917 * Optional Features:: How to enable and disable optional features when
8918 building Bash.
8919 @end menu
8920
8921 @node Basic Installation
8922 @section Basic Installation
8923 @cindex installation
8924 @cindex configuration
8925 @cindex Bash installation
8926 @cindex Bash configuration
8927
8928 These are installation instructions for Bash.
8929
8930 The simplest way to compile Bash is:
8931
8932 @enumerate
8933 @item
8934 @code{cd} to the directory containing the source code and type
8935 @samp{./configure} to configure Bash for your system. If you're
8936 using @code{csh} on an old version of System V, you might need to
8937 type @samp{sh ./configure} instead to prevent @code{csh} from trying
8938 to execute @code{configure} itself.
8939
8940 Running @code{configure} takes some time.
8941 While running, it prints messages telling which features it is
8942 checking for.
8943
8944 @item
8945 Type @samp{make} to compile Bash and build the @code{bashbug} bug
8946 reporting script.
8947
8948 @item
8949 Optionally, type @samp{make tests} to run the Bash test suite.
8950
8951 @item
8952 Type @samp{make install} to install @code{bash} and @code{bashbug}.
8953 This will also install the manual pages and Info file, message translation
8954 files, some supplemental documentation, a number of example loadable
8955 builtin commands, and a set of header files for developing loadable
8956 builtins.
8957 You may need additional privileges to install @code{bash} to your
8958 desired destination, so @samp{sudo make install} might be required.
8959 More information about controlling the locations where @code{bash} and
8960 other files are installed is below (@pxref{Installation Names}).
8961
8962 @end enumerate
8963
8964 The @code{configure} shell script attempts to guess correct
8965 values for various system-dependent variables used during
8966 compilation. It uses those values to create a @file{Makefile} in
8967 each directory of the package (the top directory, the
8968 @file{builtins}, @file{doc}, @file{po}, and @file{support} directories,
8969 each directory under @file{lib}, and several others). It also creates a
8970 @file{config.h} file containing system-dependent definitions.
8971 Finally, it creates a shell script named @code{config.status} that you
8972 can run in the future to recreate the current configuration, a
8973 file @file{config.cache} that saves the results of its tests to
8974 speed up reconfiguring, and a file @file{config.log} containing
8975 compiler output (useful mainly for debugging @code{configure}).
8976 If at some point
8977 @file{config.cache} contains results you don't want to keep, you
8978 may remove or edit it.
8979
8980 To find out more about the options and arguments that the
8981 @code{configure} script understands, type
8982
8983 @example
8984 bash-4.2$ ./configure --help
8985 @end example
8986
8987 @noindent
8988 at the Bash prompt in your Bash source directory.
8989
8990 If you want to build Bash in a directory separate from the source
8991 directory -- to build for multiple architectures, for example --
8992 just use the full path to the configure script. The following commands
8993 will build bash in a directory under @file{/usr/local/build} from
8994 the source code in @file{/usr/local/src/bash-4.4}:
8995
8996 @example
8997 mkdir /usr/local/build/bash-4.4
8998 cd /usr/local/build/bash-4.4
8999 bash /usr/local/src/bash-4.4/configure
9000 make
9001 @end example
9002
9003 See @ref{Compiling For Multiple Architectures} for more information
9004 about building in a directory separate from the source.
9005
9006 If you need to do unusual things to compile Bash, please
9007 try to figure out how @code{configure} could check whether or not
9008 to do them, and mail diffs or instructions to
9009 @email{bash-maintainers@@gnu.org} so they can be
9010 considered for the next release.
9011
9012 The file @file{configure.ac} is used to create @code{configure}
9013 by a program called Autoconf.
9014 You only need @file{configure.ac} if you want to change it or regenerate
9015 @code{configure} using a newer version of Autoconf.
9016 If you do this, make sure you are using Autoconf version 2.69 or
9017 newer.
9018
9019 You can remove the program binaries and object files from the
9020 source code directory by typing @samp{make clean}. To also remove the
9021 files that @code{configure} created (so you can compile Bash for
9022 a different kind of computer), type @samp{make distclean}.
9023
9024 @node Compilers and Options
9025 @section Compilers and Options
9026
9027 Some systems require unusual options for compilation or linking
9028 that the @code{configure} script does not know about. You can
9029 give @code{configure} initial values for variables by setting
9030 them in the environment. Using a Bourne-compatible shell, you
9031 can do that on the command line like this:
9032
9033 @example
9034 CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
9035 @end example
9036
9037 On systems that have the @code{env} program, you can do it like this:
9038
9039 @example
9040 env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
9041 @end example
9042
9043 The configuration process uses GCC to build Bash if it
9044 is available.
9045
9046 @node Compiling For Multiple Architectures
9047 @section Compiling For Multiple Architectures
9048
9049 You can compile Bash for more than one kind of computer at the
9050 same time, by placing the object files for each architecture in their
9051 own directory. To do this, you must use a version of @code{make} that
9052 supports the @code{VPATH} variable, such as GNU @code{make}.
9053 @code{cd} to the
9054 directory where you want the object files and executables to go and run
9055 the @code{configure} script from the source directory
9056 (@pxref{Basic Installation}).
9057 You may need to
9058 supply the @option{--srcdir=PATH} argument to tell @code{configure} where the
9059 source files are. @code{configure} automatically checks for the
9060 source code in the directory that @code{configure} is in and in `..'.
9061
9062 If you have to use a @code{make} that does not supports the @code{VPATH}
9063 variable, you can compile Bash for one architecture at a
9064 time in the source code directory. After you have installed
9065 Bash for one architecture, use @samp{make distclean} before
9066 reconfiguring for another architecture.
9067
9068 Alternatively, if your system supports symbolic links, you can use the
9069 @file{support/mkclone} script to create a build tree which has
9070 symbolic links back to each file in the source directory. Here's an
9071 example that creates a build directory in the current directory from a
9072 source directory @file{/usr/gnu/src/bash-2.0}:
9073
9074 @example
9075 bash /usr/gnu/src/bash-2.0/support/mkclone -s /usr/gnu/src/bash-2.0 .
9076 @end example
9077
9078 @noindent
9079 The @code{mkclone} script requires Bash, so you must have already built
9080 Bash for at least one architecture before you can create build
9081 directories for other architectures.
9082
9083 @node Installation Names
9084 @section Installation Names
9085
9086 By default, @samp{make install} will install into
9087 @file{/usr/local/bin}, @file{/usr/local/man}, etc.;
9088 that is, the @dfn{installation prefix} defaults to @file{/usr/local}.
9089 You can specify an installation prefix other than @file{/usr/local} by
9090 giving @code{configure} the option @option{--prefix=@var{PATH}},
9091 or by specifying a value for the @env{prefix} @samp{make}
9092 variable when running @samp{make install}
9093 (e.g., @samp{make install prefix=@var{PATH}}).
9094 The @env{prefix} variable provides a default for @env{exec_prefix} and
9095 other variables used when installing bash.
9096
9097 You can specify separate installation prefixes for
9098 architecture-specific files and architecture-independent files.
9099 If you give @code{configure} the option
9100 @option{--exec-prefix=@var{PATH}}, @samp{make install} will use
9101 @var{PATH} as the prefix for installing programs and libraries.
9102 Documentation and other data files will still use the regular prefix.
9103
9104 If you would like to change the installation locations for a single run,
9105 you can specify these variables as arguments to @code{make}:
9106 @samp{make install exec_prefix=/} will install @code{bash} and
9107 @code{bashbug} into @file{/bin} instead of the default @file{/usr/local/bin}.
9108
9109 If you want to see the files bash will install and where it will install
9110 them without changing anything on your system, specify the variable
9111 @env{DESTDIR} as an argument to @code{make}. Its value should be the
9112 absolute directory path you'd like to use as the root of your sample
9113 installation tree. For example,
9114
9115 @example
9116 mkdir /fs1/bash-install
9117 make install DESTDIR=/fs1/bash-install
9118 @end example
9119
9120 @noindent
9121 will install @code{bash} into @file{/fs1/bash-install/usr/local/bin/bash},
9122 the documentation into directories within
9123 @file{/fs1/bash-install/usr/local/share}, the example loadable builtins into
9124 @file{/fs1/bash-install/usr/local/lib/bash}, and so on.
9125 You can use the usual @env{exec_prefix} and @env{prefix} variables to alter
9126 the directory paths beneath the value of @env{DESTDIR}.
9127
9128 The GNU Makefile standards provide a more complete description of these
9129 variables and their effects.
9130
9131 @node Specifying the System Type
9132 @section Specifying the System Type
9133
9134 There may be some features @code{configure} can not figure out
9135 automatically, but need to determine by the type of host Bash
9136 will run on. Usually @code{configure} can figure that
9137 out, but if it prints a message saying it can not guess the host
9138 type, give it the @option{--host=TYPE} option. @samp{TYPE} can
9139 either be a short name for the system type, such as @samp{sun4},
9140 or a canonical name with three fields: @samp{CPU-COMPANY-SYSTEM}
9141 (e.g., @samp{i386-unknown-freebsd4.2}).
9142
9143 See the file @file{support/config.sub} for the possible
9144 values of each field.
9145
9146 @node Sharing Defaults
9147 @section Sharing Defaults
9148
9149 If you want to set default values for @code{configure} scripts to
9150 share, you can create a site shell script called
9151 @code{config.site} that gives default values for variables like
9152 @code{CC}, @code{cache_file}, and @code{prefix}. @code{configure}
9153 looks for @file{PREFIX/share/config.site} if it exists, then
9154 @file{PREFIX/etc/config.site} if it exists. Or, you can set the
9155 @code{CONFIG_SITE} environment variable to the location of the site
9156 script. A warning: the Bash @code{configure} looks for a site script,
9157 but not all @code{configure} scripts do.
9158
9159 @node Operation Controls
9160 @section Operation Controls
9161
9162 @code{configure} recognizes the following options to control how it
9163 operates.
9164
9165 @table @code
9166
9167 @item --cache-file=@var{file}
9168 Use and save the results of the tests in
9169 @var{file} instead of @file{./config.cache}. Set @var{file} to
9170 @file{/dev/null} to disable caching, for debugging
9171 @code{configure}.
9172
9173 @item --help
9174 Print a summary of the options to @code{configure}, and exit.
9175
9176 @item --quiet
9177 @itemx --silent
9178 @itemx -q
9179 Do not print messages saying which checks are being made.
9180
9181 @item --srcdir=@var{dir}
9182 Look for the Bash source code in directory @var{dir}. Usually
9183 @code{configure} can determine that directory automatically.
9184
9185 @item --version
9186 Print the version of Autoconf used to generate the @code{configure}
9187 script, and exit.
9188 @end table
9189
9190 @code{configure} also accepts some other, not widely used, boilerplate
9191 options. @samp{configure --help} prints the complete list.
9192
9193 @node Optional Features
9194 @section Optional Features
9195
9196 The Bash @code{configure} has a number of @option{--enable-@var{feature}}
9197 options, where @var{feature} indicates an optional part of Bash.
9198 There are also several @option{--with-@var{package}} options,
9199 where @var{package} is something like @samp{bash-malloc} or @samp{purify}.
9200 To turn off the default use of a package, use
9201 @option{--without-@var{package}}. To configure Bash without a feature
9202 that is enabled by default, use @option{--disable-@var{feature}}.
9203
9204 Here is a complete list of the @option{--enable-} and
9205 @option{--with-} options that the Bash @code{configure} recognizes.
9206
9207 @table @code
9208 @item --with-afs
9209 Define if you are using the Andrew File System from Transarc.
9210
9211 @item --with-bash-malloc
9212 Use the Bash version of
9213 @code{malloc} in the directory @file{lib/malloc}. This is not the same
9214 @code{malloc} that appears in @sc{gnu} libc, but an older version
9215 originally derived from the 4.2 @sc{bsd} @code{malloc}. This @code{malloc}
9216 is very fast, but wastes some space on each allocation.
9217 This option is enabled by default.
9218 The @file{NOTES} file contains a list of systems for
9219 which this should be turned off, and @code{configure} disables this
9220 option automatically for a number of systems.
9221
9222 @item --with-curses
9223 Use the curses library instead of the termcap library. This should
9224 be supplied if your system has an inadequate or incomplete termcap
9225 database.
9226
9227 @item --with-gnu-malloc
9228 A synonym for @code{--with-bash-malloc}.
9229
9230 @item --with-installed-readline[=@var{PREFIX}]
9231 Define this to make Bash link with a locally-installed version of Readline
9232 rather than the version in @file{lib/readline}. This works only with
9233 Readline 5.0 and later versions. If @var{PREFIX} is @code{yes} or not
9234 supplied, @code{configure} uses the values of the make variables
9235 @code{includedir} and @code{libdir}, which are subdirectories of @code{prefix}
9236 by default, to find the installed version of Readline if it is not in
9237 the standard system include and library directories.
9238 If @var{PREFIX} is @code{no}, Bash links with the version in
9239 @file{lib/readline}.
9240 If @var{PREFIX} is set to any other value, @code{configure} treats it as
9241 a directory pathname and looks for
9242 the installed version of Readline in subdirectories of that directory
9243 (include files in @var{PREFIX}/@code{include} and the library in
9244 @var{PREFIX}/@code{lib}).
9245
9246 @item --with-libintl-prefix[=@var{PREFIX}]
9247 Define this to make Bash link with a locally-installed version of the
9248 libintl library instead ofthe version in @file{lib/intl}.
9249
9250 @item --with-libiconv-prefix[=@var{PREFIX}]
9251 Define this to make Bash look for libiconv in @var{PREFIX} instead of the
9252 standard system locations. There is no version included with Bash.
9253
9254 @item --enable-minimal-config
9255 This produces a shell with minimal features, close to the historical
9256 Bourne shell.
9257 @end table
9258
9259 There are several @option{--enable-} options that alter how Bash is
9260 compiled, linked, and installed, rather than changing run-time features.
9261
9262 @table @code
9263 @item --enable-largefile
9264 Enable support for @uref{http://www.unix.org/version2/whatsnew/lfs20mar.html,
9265 large files} if the operating system requires special compiler options
9266 to build programs which can access large files. This is enabled by
9267 default, if the operating system provides large file support.
9268
9269 @item --enable-profiling
9270 This builds a Bash binary that produces profiling information to be
9271 processed by @code{gprof} each time it is executed.
9272
9273 @item --enable-separate-helpfiles
9274 Use external files for the documentation displayed by the @code{help} builtin
9275 instead of storing the text internally.
9276
9277 @item --enable-static-link
9278 This causes Bash to be linked statically, if @code{gcc} is being used.
9279 This could be used to build a version to use as root's shell.
9280
9281 @end table
9282
9283 The @samp{minimal-config} option can be used to disable all of
9284 the following options, but it is processed first, so individual
9285 options may be enabled using @samp{enable-@var{feature}}.
9286
9287 All of the following options except for
9288 @samp{alt-array-implementation},
9289 @samp{disabled-builtins},
9290 @samp{direxpand-default},
9291 @samp{strict-posix-default},
9292 and
9293 @samp{xpg-echo-default} are
9294 enabled by default, unless the operating system does not provide the
9295 necessary support.
9296
9297 @table @code
9298 @item --enable-alias
9299 Allow alias expansion and include the @code{alias} and @code{unalias}
9300 builtins (@pxref{Aliases}).
9301
9302 @item --enable-alt-array-implementation
9303 This builds bash using an alternate implementation of arrays
9304 (@pxref{Arrays}) that provides faster access at the expense of using
9305 more memory (sometimes many times more, depending on how sparse an array is).
9306
9307 @item --enable-arith-for-command
9308 Include support for the alternate form of the @code{for} command
9309 that behaves like the C language @code{for} statement
9310 (@pxref{Looping Constructs}).
9311
9312 @item --enable-array-variables
9313 Include support for one-dimensional array shell variables
9314 (@pxref{Arrays}).
9315
9316 @item --enable-bang-history
9317 Include support for @code{csh}-like history substitution
9318 (@pxref{History Interaction}).
9319
9320 @item --enable-brace-expansion
9321 Include @code{csh}-like brace expansion
9322 ( @code{b@{a,b@}c} @expansion{} @code{bac bbc} ).
9323 See @ref{Brace Expansion}, for a complete description.
9324
9325 @item --enable-casemod-attributes
9326 Include support for case-modifying attributes in the @code{declare} builtin
9327 and assignment statements. Variables with the @code{uppercase} attribute,
9328 for example, will have their values converted to uppercase upon assignment.
9329
9330 @item --enable-casemod-expansion
9331 Include support for case-modifying word expansions.
9332
9333 @item --enable-command-timing
9334 Include support for recognizing @code{time} as a reserved word and for
9335 displaying timing statistics for the pipeline following @code{time}
9336 (@pxref{Pipelines}).
9337 This allows pipelines as well as shell builtins and functions to be timed.
9338
9339 @item --enable-cond-command
9340 Include support for the @code{[[} conditional command.
9341 (@pxref{Conditional Constructs}).
9342
9343 @item --enable-cond-regexp
9344 Include support for matching @sc{posix} regular expressions using the
9345 @samp{=~} binary operator in the @code{[[} conditional command.
9346 (@pxref{Conditional Constructs}).
9347
9348 @item --enable-coprocesses
9349 Include support for coprocesses and the @code{coproc} reserved word
9350 (@pxref{Pipelines}).
9351
9352 @item --enable-debugger
9353 Include support for the bash debugger (distributed separately).
9354
9355 @item --enable-dev-fd-stat-broken
9356 If calling @code{stat} on /dev/fd/@var{N} returns different results than
9357 calling @code{fstat} on file descriptor @var{N}, supply this option to
9358 enable a workaround.
9359 This has implications for conditional commands that test file attributes.
9360
9361 @item --enable-direxpand-default
9362 Cause the @code{direxpand} shell option (@pxref{The Shopt Builtin})
9363 to be enabled by default when the shell starts.
9364 It is normally disabled by default.
9365
9366 @item --enable-directory-stack
9367 Include support for a @code{csh}-like directory stack and the
9368 @code{pushd}, @code{popd}, and @code{dirs} builtins
9369 (@pxref{The Directory Stack}).
9370
9371 @item --enable-disabled-builtins
9372 Allow builtin commands to be invoked via @samp{builtin xxx}
9373 even after @code{xxx} has been disabled using @samp{enable -n xxx}.
9374 See @ref{Bash Builtins}, for details of the @code{builtin} and
9375 @code{enable} builtin commands.
9376
9377 @item --enable-dparen-arithmetic
9378 Include support for the @code{((@dots{}))} command
9379 (@pxref{Conditional Constructs}).
9380
9381 @item --enable-extended-glob
9382 Include support for the extended pattern matching features described
9383 above under @ref{Pattern Matching}.
9384
9385 @item --enable-extended-glob-default
9386 Set the default value of the @code{extglob} shell option described
9387 above under @ref{The Shopt Builtin} to be enabled.
9388
9389 @item --enable-function-import
9390 Include support for importing function definitions exported by another
9391 instance of the shell from the environment. This option is enabled by
9392 default.
9393
9394 @item --enable-glob-asciirange-default
9395 Set the default value of the @code{globasciiranges} shell option described
9396 above under @ref{The Shopt Builtin} to be enabled.
9397 This controls the behavior of character ranges when used in pattern matching
9398 bracket expressions.
9399
9400 @item --enable-help-builtin
9401 Include the @code{help} builtin, which displays help on shell builtins and
9402 variables (@pxref{Bash Builtins}).
9403
9404 @item --enable-history
9405 Include command history and the @code{fc} and @code{history}
9406 builtin commands (@pxref{Bash History Facilities}).
9407
9408 @item --enable-job-control
9409 This enables the job control features (@pxref{Job Control}),
9410 if the operating system supports them.
9411
9412 @item --enable-multibyte
9413 This enables support for multibyte characters if the operating
9414 system provides the necessary support.
9415
9416 @item --enable-net-redirections
9417 This enables the special handling of filenames of the form
9418 @code{/dev/tcp/@var{host}/@var{port}} and
9419 @code{/dev/udp/@var{host}/@var{port}}
9420 when used in redirections (@pxref{Redirections}).
9421
9422 @item --enable-process-substitution
9423 This enables process substitution (@pxref{Process Substitution}) if
9424 the operating system provides the necessary support.
9425
9426 @item --enable-progcomp
9427 Enable the programmable completion facilities
9428 (@pxref{Programmable Completion}).
9429 If Readline is not enabled, this option has no effect.
9430
9431 @item --enable-prompt-string-decoding
9432 Turn on the interpretation of a number of backslash-escaped characters
9433 in the @env{$PS0}, @env{$PS1}, @env{$PS2}, and @env{$PS4} prompt
9434 strings. See @ref{Controlling the Prompt}, for a complete list of prompt
9435 string escape sequences.
9436
9437 @item --enable-readline
9438 Include support for command-line editing and history with the Bash
9439 version of the Readline library (@pxref{Command Line Editing}).
9440
9441 @item --enable-restricted
9442 Include support for a @dfn{restricted shell}. If this is enabled, Bash,
9443 when called as @code{rbash}, enters a restricted mode. See
9444 @ref{The Restricted Shell}, for a description of restricted mode.
9445
9446 @item --enable-select
9447 Include the @code{select} compound command, which allows the generation of
9448 simple menus (@pxref{Conditional Constructs}).
9449
9450 @item --enable-single-help-strings
9451 Store the text displayed by the @code{help} builtin as a single string for
9452 each help topic. This aids in translating the text to different languages.
9453 You may need to disable this if your compiler cannot handle very long string
9454 literals.
9455
9456 @item --enable-strict-posix-default
9457 Make Bash @sc{posix}-conformant by default (@pxref{Bash POSIX Mode}).
9458
9459 @item --enable-translatable-strings
9460 Enable support for @code{$"@var{string}"} translatable strings
9461 (@pxref{Locale Translation}).
9462
9463 @item --enable-usg-echo-default
9464 A synonym for @code{--enable-xpg-echo-default}.
9465
9466 @item --enable-xpg-echo-default
9467 Make the @code{echo} builtin expand backslash-escaped characters by default,
9468 without requiring the @option{-e} option.
9469 This sets the default value of the @code{xpg_echo} shell option to @code{on},
9470 which makes the Bash @code{echo} behave more like the version specified in
9471 the Single Unix Specification, version 3.
9472 @xref{Bash Builtins}, for a description of the escape sequences that
9473 @code{echo} recognizes.
9474 @end table
9475
9476 The file @file{config-top.h} contains C Preprocessor
9477 @samp{#define} statements for options which are not settable from
9478 @code{configure}.
9479 Some of these are not meant to be changed; beware of the consequences if
9480 you do.
9481 Read the comments associated with each definition for more
9482 information about its effect.
9483
9484 @node Reporting Bugs
9485 @appendix Reporting Bugs
9486
9487 Please report all bugs you find in Bash.
9488 But first, you should
9489 make sure that it really is a bug, and that it appears in the latest
9490 version of Bash.
9491 The latest version of Bash is always available for FTP from
9492 @uref{ftp://ftp.gnu.org/pub/gnu/bash/} and from
9493 @uref{http://git.savannah.gnu.org/cgit/bash.git/snapshot/bash-master.tar.gz}.
9494
9495 Once you have determined that a bug actually exists, use the
9496 @code{bashbug} command to submit a bug report.
9497 If you have a fix, you are encouraged to mail that as well!
9498 Suggestions and `philosophical' bug reports may be mailed
9499 to @email{bug-bash@@gnu.org} or posted to the Usenet
9500 newsgroup @code{gnu.bash.bug}.
9501
9502 All bug reports should include:
9503 @itemize @bullet
9504 @item
9505 The version number of Bash.
9506 @item
9507 The hardware and operating system.
9508 @item
9509 The compiler used to compile Bash.
9510 @item
9511 A description of the bug behaviour.
9512 @item
9513 A short script or `recipe' which exercises the bug and may be used
9514 to reproduce it.
9515 @end itemize
9516
9517 @noindent
9518 @code{bashbug} inserts the first three items automatically into
9519 the template it provides for filing a bug report.
9520
9521 Please send all reports concerning this manual to
9522 @email{bug-bash@@gnu.org}.
9523
9524 @node Major Differences From The Bourne Shell
9525 @appendix Major Differences From The Bourne Shell
9526
9527 Bash implements essentially the same grammar, parameter and
9528 variable expansion, redirection, and quoting as the Bourne Shell.
9529 Bash uses the @sc{posix} standard as the specification of
9530 how these features are to be implemented. There are some
9531 differences between the traditional Bourne shell and Bash; this
9532 section quickly details the differences of significance. A
9533 number of these differences are explained in greater depth in
9534 previous sections.
9535 This section uses the version of @code{sh} included in SVR4.2 (the
9536 last version of the historical Bourne shell) as the baseline reference.
9537
9538 @itemize @bullet
9539
9540 @item
9541 Bash is @sc{posix}-conformant, even where the @sc{posix} specification
9542 differs from traditional @code{sh} behavior (@pxref{Bash POSIX Mode}).
9543
9544 @item
9545 Bash has multi-character invocation options (@pxref{Invoking Bash}).
9546
9547 @item
9548 Bash has command-line editing (@pxref{Command Line Editing}) and
9549 the @code{bind} builtin.
9550
9551 @item
9552 Bash provides a programmable word completion mechanism
9553 (@pxref{Programmable Completion}), and builtin commands
9554 @code{complete}, @code{compgen}, and @code{compopt}, to
9555 manipulate it.
9556
9557 @item
9558 Bash has command history (@pxref{Bash History Facilities}) and the
9559 @code{history} and @code{fc} builtins to manipulate it.
9560 The Bash history list maintains timestamp information and uses the
9561 value of the @code{HISTTIMEFORMAT} variable to display it.
9562
9563 @item
9564 Bash implements @code{csh}-like history expansion
9565 (@pxref{History Interaction}).
9566
9567 @item
9568 Bash has one-dimensional array variables (@pxref{Arrays}), and the
9569 appropriate variable expansions and assignment syntax to use them.
9570 Several of the Bash builtins take options to act on arrays.
9571 Bash provides a number of built-in array variables.
9572
9573 @item
9574 The @code{$'@dots{}'} quoting syntax, which expands ANSI-C
9575 backslash-escaped characters in the text between the single quotes,
9576 is supported (@pxref{ANSI-C Quoting}).
9577
9578 @item
9579 Bash supports the @code{$"@dots{}"} quoting syntax to do
9580 locale-specific translation of the characters between the double
9581 quotes. The @option{-D}, @option{--dump-strings}, and @option{--dump-po-strings}
9582 invocation options list the translatable strings found in a script
9583 (@pxref{Locale Translation}).
9584
9585 @item
9586 Bash implements the @code{!} keyword to negate the return value of
9587 a pipeline (@pxref{Pipelines}).
9588 Very useful when an @code{if} statement needs to act only if a test fails.
9589 The Bash @samp{-o pipefail} option to @code{set} will cause a pipeline to
9590 return a failure status if any command fails.
9591
9592 @item
9593 Bash has the @code{time} reserved word and command timing (@pxref{Pipelines}).
9594 The display of the timing statistics may be controlled with the
9595 @env{TIMEFORMAT} variable.
9596
9597 @item
9598 Bash implements the @code{for (( @var{expr1} ; @var{expr2} ; @var{expr3} ))}
9599 arithmetic for command, similar to the C language (@pxref{Looping Constructs}).
9600
9601 @item
9602 Bash includes the @code{select} compound command, which allows the
9603 generation of simple menus (@pxref{Conditional Constructs}).
9604
9605 @item
9606 Bash includes the @code{[[} compound command, which makes conditional
9607 testing part of the shell grammar (@pxref{Conditional Constructs}), including
9608 optional regular expression matching.
9609
9610 @item
9611 Bash provides optional case-insensitive matching for the @code{case} and
9612 @code{[[} constructs.
9613
9614 @item
9615 Bash includes brace expansion (@pxref{Brace Expansion}) and tilde
9616 expansion (@pxref{Tilde Expansion}).
9617
9618 @item
9619 Bash implements command aliases and the @code{alias} and @code{unalias}
9620 builtins (@pxref{Aliases}).
9621
9622 @item
9623 Bash provides shell arithmetic, the @code{((} compound command
9624 (@pxref{Conditional Constructs}),
9625 and arithmetic expansion (@pxref{Shell Arithmetic}).
9626
9627 @item
9628 Variables present in the shell's initial environment are automatically
9629 exported to child processes. The Bourne shell does not normally do
9630 this unless the variables are explicitly marked using the @code{export}
9631 command.
9632
9633 @item
9634 Bash supports the @samp{+=} assignment operator, which appends to the value
9635 of the variable named on the left hand side.
9636
9637 @item
9638 Bash includes the @sc{posix} pattern removal @samp{%}, @samp{#}, @samp{%%}
9639 and @samp{##} expansions to remove leading or trailing substrings from
9640 variable values (@pxref{Shell Parameter Expansion}).
9641
9642 @item
9643 The expansion @code{$@{#xx@}}, which returns the length of @code{$@{xx@}},
9644 is supported (@pxref{Shell Parameter Expansion}).
9645
9646 @item
9647 The expansion @code{$@{var:}@var{offset}@code{[:}@var{length}@code{]@}},
9648 which expands to the substring of @code{var}'s value of length
9649 @var{length}, beginning at @var{offset}, is present
9650 (@pxref{Shell Parameter Expansion}).
9651
9652 @item
9653 The expansion
9654 @code{$@{@var{var}/[/]}@var{pattern}@code{[/}@var{replacement}@code{]@}},
9655 which matches @var{pattern} and replaces it with @var{replacement} in
9656 the value of @var{var}, is available (@pxref{Shell Parameter Expansion}).
9657
9658 @item
9659 The expansion @code{$@{!@var{prefix}*@}} expansion, which expands to
9660 the names of all shell variables whose names begin with @var{prefix},
9661 is available (@pxref{Shell Parameter Expansion}).
9662
9663 @item
9664 Bash has indirect variable expansion using @code{$@{!word@}}
9665 (@pxref{Shell Parameter Expansion}).
9666
9667 @item
9668 Bash can expand positional parameters beyond @code{$9} using
9669 @code{$@{@var{num}@}}.
9670
9671 @item
9672 The @sc{posix} @code{$()} form of command substitution
9673 is implemented (@pxref{Command Substitution}),
9674 and preferred to the Bourne shell's @code{``} (which
9675 is also implemented for backwards compatibility).
9676
9677 @item
9678 Bash has process substitution (@pxref{Process Substitution}).
9679
9680 @item
9681 Bash automatically assigns variables that provide information about the
9682 current user (@env{UID}, @env{EUID}, and @env{GROUPS}), the current host
9683 (@env{HOSTTYPE}, @env{OSTYPE}, @env{MACHTYPE}, and @env{HOSTNAME}),
9684 and the instance of Bash that is running (@env{BASH},
9685 @env{BASH_VERSION}, and @env{BASH_VERSINFO}). @xref{Bash Variables},
9686 for details.
9687
9688 @item
9689 The @env{IFS} variable is used to split only the results of expansion,
9690 not all words (@pxref{Word Splitting}).
9691 This closes a longstanding shell security hole.
9692
9693 @item
9694 The filename expansion bracket expression code uses @samp{!} and @samp{^}
9695 to negate the set of characters between the brackets.
9696 The Bourne shell uses only @samp{!}.
9697
9698 @item
9699 Bash implements the full set of @sc{posix} filename expansion operators,
9700 including character classes, equivalence classes, and
9701 collating symbols (@pxref{Filename Expansion}).
9702
9703 @item
9704 Bash implements extended pattern matching features when the @code{extglob}
9705 shell option is enabled (@pxref{Pattern Matching}).
9706
9707 @item
9708 It is possible to have a variable and a function with the same name;
9709 @code{sh} does not separate the two name spaces.
9710
9711 @item
9712 Bash functions are permitted to have local variables using the
9713 @code{local} builtin, and thus useful recursive functions may be written
9714 (@pxref{Bash Builtins}).
9715
9716 @item
9717 Variable assignments preceding commands affect only that command, even
9718 builtins and functions (@pxref{Environment}).
9719 In @code{sh}, all variable assignments
9720 preceding commands are global unless the command is executed from the
9721 file system.
9722
9723 @item
9724 Bash performs filename expansion on filenames specified as operands
9725 to input and output redirection operators (@pxref{Redirections}).
9726
9727 @item
9728 Bash contains the @samp{<>} redirection operator, allowing a file to be
9729 opened for both reading and writing, and the @samp{&>} redirection
9730 operator, for directing standard output and standard error to the same
9731 file (@pxref{Redirections}).
9732
9733 @item
9734 Bash includes the @samp{<<<} redirection operator, allowing a string to
9735 be used as the standard input to a command.
9736
9737 @item
9738 Bash implements the @samp{[n]<&@var{word}} and @samp{[n]>&@var{word}}
9739 redirection operators, which move one file descriptor to another.
9740
9741 @item
9742 Bash treats a number of filenames specially when they are
9743 used in redirection operators (@pxref{Redirections}).
9744
9745 @item
9746 Bash can open network connections to arbitrary machines and services
9747 with the redirection operators (@pxref{Redirections}).
9748
9749 @item
9750 The @code{noclobber} option is available to avoid overwriting existing
9751 files with output redirection (@pxref{The Set Builtin}).
9752 The @samp{>|} redirection operator may be used to override @code{noclobber}.
9753
9754 @item
9755 The Bash @code{cd} and @code{pwd} builtins (@pxref{Bourne Shell Builtins})
9756 each take @option{-L} and @option{-P} options to switch between logical and
9757 physical modes.
9758
9759 @item
9760 Bash allows a function to override a builtin with the same name, and provides
9761 access to that builtin's functionality within the function via the
9762 @code{builtin} and @code{command} builtins (@pxref{Bash Builtins}).
9763
9764 @item
9765 The @code{command} builtin allows selective disabling of functions
9766 when command lookup is performed (@pxref{Bash Builtins}).
9767
9768 @item
9769 Individual builtins may be enabled or disabled using the @code{enable}
9770 builtin (@pxref{Bash Builtins}).
9771
9772 @item
9773 The Bash @code{exec} builtin takes additional options that allow users
9774 to control the contents of the environment passed to the executed
9775 command, and what the zeroth argument to the command is to be
9776 (@pxref{Bourne Shell Builtins}).
9777
9778 @item
9779 Shell functions may be exported to children via the environment
9780 using @code{export -f} (@pxref{Shell Functions}).
9781
9782 @item
9783 The Bash @code{export}, @code{readonly}, and @code{declare} builtins can
9784 take a @option{-f} option to act on shell functions, a @option{-p} option to
9785 display variables with various attributes set in a format that can be
9786 used as shell input, a @option{-n} option to remove various variable
9787 attributes, and @samp{name=value} arguments to set variable attributes
9788 and values simultaneously.
9789
9790 @item
9791 The Bash @code{hash} builtin allows a name to be associated with
9792 an arbitrary filename, even when that filename cannot be found by
9793 searching the @env{$PATH}, using @samp{hash -p}
9794 (@pxref{Bourne Shell Builtins}).
9795
9796 @item
9797 Bash includes a @code{help} builtin for quick reference to shell
9798 facilities (@pxref{Bash Builtins}).
9799
9800 @item
9801 The @code{printf} builtin is available to display formatted output
9802 (@pxref{Bash Builtins}).
9803
9804 @item
9805 The Bash @code{read} builtin (@pxref{Bash Builtins})
9806 will read a line ending in @samp{\} with
9807 the @option{-r} option, and will use the @env{REPLY} variable as a
9808 default if no non-option arguments are supplied.
9809 The Bash @code{read} builtin
9810 also accepts a prompt string with the @option{-p} option and will use
9811 Readline to obtain the line when given the @option{-e} option.
9812 The @code{read} builtin also has additional options to control input:
9813 the @option{-s} option will turn off echoing of input characters as
9814 they are read, the @option{-t} option will allow @code{read} to time out
9815 if input does not arrive within a specified number of seconds, the
9816 @option{-n} option will allow reading only a specified number of
9817 characters rather than a full line, and the @option{-d} option will read
9818 until a particular character rather than newline.
9819
9820 @item
9821 The @code{return} builtin may be used to abort execution of scripts
9822 executed with the @code{.} or @code{source} builtins
9823 (@pxref{Bourne Shell Builtins}).
9824
9825 @item
9826 Bash includes the @code{shopt} builtin, for finer control of shell
9827 optional capabilities (@pxref{The Shopt Builtin}), and allows these options
9828 to be set and unset at shell invocation (@pxref{Invoking Bash}).
9829
9830 @item
9831 Bash has much more optional behavior controllable with the @code{set}
9832 builtin (@pxref{The Set Builtin}).
9833
9834 @item
9835 The @samp{-x} (@option{xtrace}) option displays commands other than
9836 simple commands when performing an execution trace
9837 (@pxref{The Set Builtin}).
9838
9839 @item
9840 The @code{test} builtin (@pxref{Bourne Shell Builtins})
9841 is slightly different, as it implements the @sc{posix} algorithm,
9842 which specifies the behavior based on the number of arguments.
9843
9844 @item
9845 Bash includes the @code{caller} builtin, which displays the context of
9846 any active subroutine call (a shell function or a script executed with
9847 the @code{.} or @code{source} builtins). This supports the Bash
9848 debugger.
9849
9850 @item
9851 The @code{trap} builtin (@pxref{Bourne Shell Builtins}) allows a
9852 @code{DEBUG} pseudo-signal specification, similar to @code{EXIT}.
9853 Commands specified with a @code{DEBUG} trap are executed before every
9854 simple command, @code{for} command, @code{case} command,
9855 @code{select} command, every arithmetic @code{for} command, and before
9856 the first command executes in a shell function.
9857 The @code{DEBUG} trap is not inherited by shell functions unless the
9858 function has been given the @code{trace} attribute or the
9859 @code{functrace} option has been enabled using the @code{shopt} builtin.
9860 The @code{extdebug} shell option has additional effects on the
9861 @code{DEBUG} trap.
9862
9863 The @code{trap} builtin (@pxref{Bourne Shell Builtins}) allows an
9864 @code{ERR} pseudo-signal specification, similar to @code{EXIT} and @code{DEBUG}.
9865 Commands specified with an @code{ERR} trap are executed after a simple
9866 command fails, with a few exceptions.
9867 The @code{ERR} trap is not inherited by shell functions unless the
9868 @code{-o errtrace} option to the @code{set} builtin is enabled.
9869
9870 The @code{trap} builtin (@pxref{Bourne Shell Builtins}) allows a
9871 @code{RETURN} pseudo-signal specification, similar to
9872 @code{EXIT} and @code{DEBUG}.
9873 Commands specified with an @code{RETURN} trap are executed before
9874 execution resumes after a shell function or a shell script executed with
9875 @code{.} or @code{source} returns.
9876 The @code{RETURN} trap is not inherited by shell functions unless the
9877 function has been given the @code{trace} attribute or the
9878 @code{functrace} option has been enabled using the @code{shopt} builtin.
9879
9880 @item
9881 The Bash @code{type} builtin is more extensive and gives more information
9882 about the names it finds (@pxref{Bash Builtins}).
9883
9884 @item
9885 The Bash @code{umask} builtin permits a @option{-p} option to cause
9886 the output to be displayed in the form of a @code{umask} command
9887 that may be reused as input (@pxref{Bourne Shell Builtins}).
9888
9889 @item
9890 Bash implements a @code{csh}-like directory stack, and provides the
9891 @code{pushd}, @code{popd}, and @code{dirs} builtins to manipulate it
9892 (@pxref{The Directory Stack}).
9893 Bash also makes the directory stack visible as the value of the
9894 @env{DIRSTACK} shell variable.
9895
9896 @item
9897 Bash interprets special backslash-escaped characters in the prompt
9898 strings when interactive (@pxref{Controlling the Prompt}).
9899
9900 @item
9901 The Bash restricted mode is more useful (@pxref{The Restricted Shell});
9902 the SVR4.2 shell restricted mode is too limited.
9903
9904 @item
9905 The @code{disown} builtin can remove a job from the internal shell
9906 job table (@pxref{Job Control Builtins}) or suppress the sending
9907 of @code{SIGHUP} to a job when the shell exits as the result of a
9908 @code{SIGHUP}.
9909
9910 @item
9911 Bash includes a number of features to support a separate debugger for
9912 shell scripts.
9913
9914 @item
9915 The SVR4.2 shell has two privilege-related builtins
9916 (@code{mldmode} and @code{priv}) not present in Bash.
9917
9918 @item
9919 Bash does not have the @code{stop} or @code{newgrp} builtins.
9920
9921 @item
9922 Bash does not use the @env{SHACCT} variable or perform shell accounting.
9923
9924 @item
9925 The SVR4.2 @code{sh} uses a @env{TIMEOUT} variable like Bash uses
9926 @env{TMOUT}.
9927
9928 @end itemize
9929
9930 @noindent
9931 More features unique to Bash may be found in @ref{Bash Features}.
9932
9933
9934 @appendixsec Implementation Differences From The SVR4.2 Shell
9935
9936 Since Bash is a completely new implementation, it does not suffer from
9937 many of the limitations of the SVR4.2 shell. For instance:
9938
9939 @itemize @bullet
9940
9941 @item
9942 Bash does not fork a subshell when redirecting into or out of
9943 a shell control structure such as an @code{if} or @code{while}
9944 statement.
9945
9946 @item
9947 Bash does not allow unbalanced quotes. The SVR4.2 shell will silently
9948 insert a needed closing quote at @code{EOF} under certain circumstances.
9949 This can be the cause of some hard-to-find errors.
9950
9951 @item
9952 The SVR4.2 shell uses a baroque memory management scheme based on
9953 trapping @code{SIGSEGV}. If the shell is started from a process with
9954 @code{SIGSEGV} blocked (e.g., by using the @code{system()} C library
9955 function call), it misbehaves badly.
9956
9957 @item
9958 In a questionable attempt at security, the SVR4.2 shell,
9959 when invoked without the @option{-p} option, will alter its real
9960 and effective @sc{uid} and @sc{gid} if they are less than some
9961 magic threshold value, commonly 100.
9962 This can lead to unexpected results.
9963
9964 @item
9965 The SVR4.2 shell does not allow users to trap @code{SIGSEGV},
9966 @code{SIGALRM}, or @code{SIGCHLD}.
9967
9968 @item
9969 The SVR4.2 shell does not allow the @env{IFS}, @env{MAILCHECK},
9970 @env{PATH}, @env{PS1}, or @env{PS2} variables to be unset.
9971
9972 @item
9973 The SVR4.2 shell treats @samp{^} as the undocumented equivalent of
9974 @samp{|}.
9975
9976 @item
9977 Bash allows multiple option arguments when it is invoked (@code{-x -v});
9978 the SVR4.2 shell allows only one option argument (@code{-xv}). In
9979 fact, some versions of the shell dump core if the second argument begins
9980 with a @samp{-}.
9981
9982 @item
9983 The SVR4.2 shell exits a script if any builtin fails; Bash exits
9984 a script only if one of the @sc{posix} special builtins fails, and
9985 only for certain failures, as enumerated in the @sc{posix} standard.
9986
9987 @item
9988 The SVR4.2 shell behaves differently when invoked as @code{jsh}
9989 (it turns on job control).
9990 @end itemize
9991
9992 @node GNU Free Documentation License
9993 @appendix GNU Free Documentation License
9994
9995 @include fdl.texi
9996
9997 @node Indexes
9998 @appendix Indexes
9999
10000 @menu
10001 * Builtin Index:: Index of Bash builtin commands.
10002 * Reserved Word Index:: Index of Bash reserved words.
10003 * Variable Index:: Quick reference helps you find the
10004 variable you want.
10005 * Function Index:: Index of bindable Readline functions.
10006 * Concept Index:: General index for concepts described in
10007 this manual.
10008 @end menu
10009
10010 @node Builtin Index
10011 @appendixsec Index of Shell Builtin Commands
10012 @printindex bt
10013
10014 @node Reserved Word Index
10015 @appendixsec Index of Shell Reserved Words
10016 @printindex rw
10017
10018 @node Variable Index
10019 @appendixsec Parameter and Variable Index
10020 @printindex vr
10021
10022 @node Function Index
10023 @appendixsec Function Index
10024 @printindex fn
10025
10026 @node Concept Index
10027 @appendixsec Concept Index
10028 @printindex cp
10029
10030 @bye