]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - bin/sh/sh.1
MFC r208501: sh(1): Improve wording of 'Special Parameters' section.
[FreeBSD/stable/8.git] / bin / sh / sh.1
1 .\"-
2 .\" Copyright (c) 1991, 1993
3 .\"     The Regents of the University of California.  All rights reserved.
4 .\"
5 .\" This code is derived from software contributed to Berkeley by
6 .\" Kenneth Almquist.
7 .\"
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
10 .\" are met:
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\"    notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\"    notice, this list of conditions and the following disclaimer in the
15 .\"    documentation and/or other materials provided with the distribution.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     from: @(#)sh.1  8.6 (Berkeley) 5/4/95
33 .\" $FreeBSD$
34 .\"
35 .Dd October 31, 2010
36 .Dt SH 1
37 .Os
38 .Sh NAME
39 .Nm sh
40 .Nd command interpreter (shell)
41 .Sh SYNOPSIS
42 .Nm
43 .Op Fl /+abCEefIimnPpTuVvx
44 .Op Fl /+o Ar longname
45 .Oo
46 .Ar script
47 .Op Ar arg ...
48 .Oc
49 .Nm
50 .Op Fl /+abCEefIimnPpTuVvx
51 .Op Fl /+o Ar longname
52 .Fl c Ar string
53 .Oo
54 .Ar name
55 .Op Ar arg ...
56 .Oc
57 .Nm
58 .Op Fl /+abCEefIimnPpTuVvx
59 .Op Fl /+o Ar longname
60 .Fl s
61 .Op Ar arg ...
62 .Sh DESCRIPTION
63 The
64 .Nm
65 utility is the standard command interpreter for the system.
66 The current version of
67 .Nm
68 is in the process of being changed to
69 conform with the
70 .St -p1003.2
71 specification for the shell.
72 This version has many features which make
73 it appear
74 similar in some respects to the Korn shell, but it is not a Korn
75 shell clone like
76 .Nm pdksh .
77 Only features
78 designated by
79 .Tn POSIX ,
80 plus a few Berkeley extensions, are being
81 incorporated into this shell.
82 This man page is not intended to be a tutorial nor a complete
83 specification of the shell.
84 .Ss Overview
85 The shell is a command that reads lines from
86 either a file or the terminal, interprets them, and
87 generally executes other commands.
88 It is the program that is started when a user logs into the system,
89 although a user can select a different shell with the
90 .Xr chsh 1
91 command.
92 The shell
93 implements a language that has flow control constructs,
94 a macro facility that provides a variety of features in
95 addition to data storage, along with built-in history and line
96 editing capabilities.
97 It incorporates many features to
98 aid interactive use and has the advantage that the interpretative
99 language is common to both interactive and non-interactive
100 use (shell scripts).
101 That is, commands can be typed directly
102 to the running shell or can be put into a file,
103 which can be executed directly by the shell.
104 .Ss Invocation
105 .\"
106 .\" XXX This next sentence is incredibly confusing.
107 .\"
108 If no arguments are present and if the standard input of the shell
109 is connected to a terminal
110 (or if the
111 .Fl i
112 option is set),
113 the shell is considered an interactive shell.
114 An interactive shell
115 generally prompts before each command and handles programming
116 and command errors differently (as described below).
117 When first starting, the shell inspects argument 0, and
118 if it begins with a dash
119 .Pq Ql - ,
120 the shell is also considered a login shell.
121 This is normally done automatically by the system
122 when the user first logs in.
123 A login shell first reads commands
124 from the files
125 .Pa /etc/profile
126 and then
127 .Pa .profile
128 in a user's home directory,
129 if they exist.
130 If the environment variable
131 .Ev ENV
132 is set on entry to a shell, or is set in the
133 .Pa .profile
134 of a login shell, the shell then reads commands from the file named in
135 .Ev ENV .
136 Therefore, a user should place commands that are to be executed only
137 at login time in the
138 .Pa .profile
139 file, and commands that are executed for every shell inside the
140 .Ev ENV
141 file.
142 The user can set the
143 .Ev ENV
144 variable to some file by placing the following line in the file
145 .Pa .profile
146 in the home directory,
147 substituting for
148 .Pa .shinit
149 the filename desired:
150 .Pp
151 .Dl "ENV=$HOME/.shinit; export ENV"
152 .Pp
153 The first non-option argument specified on the command line
154 will be treated as the
155 name of a file from which to read commands (a shell script), and
156 the remaining arguments are set as the positional parameters
157 of the shell
158 .Li ( $1 , $2 ,
159 etc.).
160 Otherwise, the shell reads commands
161 from its standard input.
162 .Pp
163 Unlike older versions of
164 .Nm
165 the
166 .Ev ENV
167 script is only sourced on invocation of interactive shells.
168 This
169 closes a well-known, and sometimes easily exploitable security
170 hole related to poorly thought out
171 .Ev ENV
172 scripts.
173 .Ss Argument List Processing
174 All of the single letter options to
175 .Nm
176 have a corresponding long name,
177 with the exception of
178 .Fl c
179 and
180 .Fl /+o .
181 These long names are provided next to the single letter options
182 in the descriptions below.
183 The long name for an option may be specified as an argument to the
184 .Fl /+o
185 option of
186 .Nm .
187 Once the shell is running,
188 the long name for an option may be specified as an argument to the
189 .Fl /+o
190 option of the
191 .Ic set
192 built-in command
193 (described later in the section called
194 .Sx Built-in Commands ) .
195 Introducing an option with a dash
196 .Pq Ql -
197 enables the option,
198 while using a plus
199 .Pq Ql +
200 disables the option.
201 A
202 .Dq Li --
203 or plain
204 .Ql -
205 will stop option processing and will force the remaining
206 words on the command line to be treated as arguments.
207 The
208 .Fl /+o
209 and
210 .Fl c
211 options do not have long names.
212 They take arguments and are described after the single letter options.
213 .Bl -tag -width indent
214 .It Fl a Li allexport
215 Flag variables for export when assignments are made to them.
216 .It Fl b Li notify
217 Enable asynchronous notification of background job
218 completion.
219 (UNIMPLEMENTED)
220 .It Fl C Li noclobber
221 Do not overwrite existing files with
222 .Ql > .
223 .It Fl E Li emacs
224 Enable the built-in
225 .Xr emacs 1
226 command line editor (disables the
227 .Fl V
228 option if it has been set).
229 .It Fl e Li errexit
230 Exit immediately if any untested command fails in non-interactive mode.
231 The exit status of a command is considered to be
232 explicitly tested if the command is part of the list used to control
233 an
234 .Ic if , elif , while ,
235 or
236 .Ic until ;
237 if the command is the left
238 hand operand of an
239 .Dq Li &&
240 or
241 .Dq Li ||
242 operator; or if the command is a pipeline preceded by the
243 .Ic !\&
244 operator.
245 If a shell function is executed and its exit status is explicitly
246 tested, all commands of the function are considered to be tested as
247 well.
248 .It Fl f Li noglob
249 Disable pathname expansion.
250 .It Fl I Li ignoreeof
251 Ignore
252 .Dv EOF Ap s
253 from input when in interactive mode.
254 .It Fl i Li interactive
255 Force the shell to behave interactively.
256 .It Fl m Li monitor
257 Turn on job control (set automatically when interactive).
258 .It Fl n Li noexec
259 If not interactive, read commands but do not
260 execute them.
261 This is useful for checking the
262 syntax of shell scripts.
263 .It Fl P Li physical
264 Change the default for the
265 .Ic cd
266 and
267 .Ic pwd
268 commands from
269 .Fl L
270 (logical directory layout)
271 to
272 .Fl P
273 (physical directory layout).
274 .It Fl p Li privileged
275 Turn on privileged mode.
276 This mode is enabled on startup
277 if either the effective user or group ID is not equal to the
278 real user or group ID.
279 Turning this mode off sets the
280 effective user and group IDs to the real user and group IDs.
281 When this mode is enabled for interactive shells, the file
282 .Pa /etc/suid_profile
283 is sourced instead of
284 .Pa ~/.profile
285 after
286 .Pa /etc/profile
287 is sourced, and the contents of the
288 .Ev ENV
289 variable are ignored.
290 .It Fl s Li stdin
291 Read commands from standard input (set automatically
292 if no file arguments are present).
293 This option has
294 no effect when set after the shell has already started
295 running (i.e., when set with the
296 .Ic set
297 command).
298 .It Fl T Li trapsasync
299 When waiting for a child, execute traps immediately.
300 If this option is not set,
301 traps are executed after the child exits,
302 as specified in
303 .St -p1003.2 .
304 This nonstandard option is useful for putting guarding shells around
305 children that block signals.
306 The surrounding shell may kill the child
307 or it may just return control to the tty and leave the child alone,
308 like this:
309 .Bd -literal -offset indent
310 sh -T -c "trap 'exit 1' 2 ; some-blocking-program"
311 .Ed
312 .It Fl u Li nounset
313 Write a message to standard error when attempting
314 to expand a variable, a positional parameter or
315 the special parameter
316 .Va \&!
317 that is not set, and if the
318 shell is not interactive, exit immediately.
319 .It Fl V Li vi
320 Enable the built-in
321 .Xr vi 1
322 command line editor (disables
323 .Fl E
324 if it has been set).
325 .It Fl v Li verbose
326 The shell writes its input to standard error
327 as it is read.
328 Useful for debugging.
329 .It Fl x Li xtrace
330 Write each command
331 (preceded by the value of the
332 .Va PS4
333 variable)
334 to standard error before it is executed.
335 Useful for debugging.
336 .El
337 .Pp
338 The
339 .Fl c
340 option causes the commands to be read from the
341 .Ar string
342 operand instead of from the standard input.
343 Keep in mind that this option only accepts a single string as its
344 argument, hence multi-word strings must be quoted.
345 .Pp
346 The
347 .Fl /+o
348 option takes as its only argument the long name of an option
349 to be enabled or disabled.
350 For example, the following two invocations of
351 .Nm
352 both enable the built-in
353 .Xr emacs 1
354 command line editor:
355 .Bd -literal -offset indent
356 set -E
357 set -o emacs
358 .Ed
359 .Pp
360 If used without an argument, the
361 .Fl o
362 option displays the current option settings in a human-readable format.
363 If
364 .Cm +o
365 is used without an argument, the current option settings are output
366 in a format suitable for re-input into the shell.
367 .Ss Lexical Structure
368 The shell reads input in terms of lines from a file and breaks
369 it up into words at whitespace (blanks and tabs), and at
370 certain sequences of
371 characters called
372 .Dq operators ,
373 which are special to the shell.
374 There are two types of operators: control operators and
375 redirection operators (their meaning is discussed later).
376 The following is a list of valid operators:
377 .Bl -tag -width indent
378 .It Control operators:
379 .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact
380 .It Li & Ta Li && Ta Li ( Ta Li ) Ta Li \en
381 .It Li ;; Ta Li ; Ta Li | Ta Li ||
382 .El
383 .It Redirection operators:
384 .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact
385 .It Li < Ta Li > Ta Li << Ta Li >> Ta Li <>
386 .It Li <& Ta Li >& Ta Li <<- Ta Li >|
387 .El
388 .El
389 .Pp
390 The character
391 .Ql #
392 introduces a comment if used at the beginning of a word.
393 The word starting with
394 .Ql #
395 and the rest of the line are ignored.
396 .Pp
397 .Tn ASCII
398 .Dv NUL
399 characters (character code 0) are not allowed in shell input.
400 .Ss Quoting
401 Quoting is used to remove the special meaning of certain characters
402 or words to the shell, such as operators, whitespace, keywords,
403 or alias names.
404 .Pp
405 There are three types of quoting: matched single quotes,
406 matched double quotes, and backslash.
407 .Bl -tag -width indent
408 .It Single Quotes
409 Enclosing characters in single quotes preserves the literal
410 meaning of all the characters (except single quotes, making
411 it impossible to put single-quotes in a single-quoted string).
412 .It Double Quotes
413 Enclosing characters within double quotes preserves the literal
414 meaning of all characters except dollar sign
415 .Pq Ql $ ,
416 backquote
417 .Pq Ql ` ,
418 and backslash
419 .Pq Ql \e .
420 The backslash inside double quotes is historically weird.
421 It remains literal unless it precedes the following characters,
422 which it serves to quote:
423 .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact
424 .It Li $ Ta Li ` Ta Li \&" Ta Li \e\  Ta Li \en
425 .El
426 .It Backslash
427 A backslash preserves the literal meaning of the following
428 character, with the exception of the newline character
429 .Pq Ql \en .
430 A backslash preceding a newline is treated as a line continuation.
431 .El
432 .Ss Keywords
433 Keywords or reserved words are words that have special meaning to the
434 shell and are recognized at the beginning of a line and
435 after a control operator.
436 The following are keywords:
437 .Bl -column "doneXX" "elifXX" "elseXX" "untilXX" "whileX" -offset center
438 .It Li \&! Ta { Ta } Ta Ic case Ta Ic do
439 .It Ic done Ta Ic elif Ta Ic else Ta Ic esac Ta Ic fi
440 .It Ic for Ta Ic if Ta Ic then Ta Ic until Ta Ic while
441 .El
442 .Ss Aliases
443 An alias is a name and corresponding value set using the
444 .Ic alias
445 built-in command.
446 Whenever a keyword may occur (see above),
447 and after checking for keywords, the shell
448 checks the word to see if it matches an alias.
449 If it does, it replaces it in the input stream with its value.
450 For example, if there is an alias called
451 .Dq Li lf
452 with the value
453 .Dq Li "ls -F" ,
454 then the input
455 .Pp
456 .Dl "lf foobar"
457 .Pp
458 would become
459 .Pp
460 .Dl "ls -F foobar"
461 .Pp
462 Aliases provide a convenient way for naive users to
463 create shorthands for commands without having to learn how
464 to create functions with arguments.
465 They can also be
466 used to create lexically obscure code.
467 This use is discouraged.
468 .Pp
469 An alias name may be escaped in a command line, so that it is not
470 replaced by its alias value, by using quoting characters within or
471 adjacent to the alias name.
472 This is most often done by prefixing
473 an alias name with a backslash to execute a function, built-in, or
474 normal program with the same name.
475 See the
476 .Sx Quoting
477 subsection.
478 .Ss Commands
479 The shell interprets the words it reads according to a
480 language, the specification of which is outside the scope
481 of this man page (refer to the BNF in the
482 .St -p1003.2
483 document).
484 Essentially though, a line is read and if
485 the first word of the line (or after a control operator)
486 is not a keyword, then the shell has recognized a
487 simple command.
488 Otherwise, a complex command or some
489 other special construct may have been recognized.
490 .Ss Simple Commands
491 If a simple command has been recognized, the shell performs
492 the following actions:
493 .Bl -enum
494 .It
495 Leading words of the form
496 .Dq Li name=value
497 are stripped off and assigned to the environment of
498 the simple command.
499 Redirection operators and
500 their arguments (as described below) are stripped
501 off and saved for processing.
502 .It
503 The remaining words are expanded as described in
504 the section called
505 .Sx Word Expansions ,
506 and the first remaining word is considered the command
507 name and the command is located.
508 The remaining
509 words are considered the arguments of the command.
510 If no command name resulted, then the
511 .Dq Li name=value
512 variable assignments recognized in 1) affect the
513 current shell.
514 .It
515 Redirections are performed as described in
516 the next section.
517 .El
518 .Ss Redirections
519 Redirections are used to change where a command reads its input
520 or sends its output.
521 In general, redirections open, close, or
522 duplicate an existing reference to a file.
523 The overall format
524 used for redirection is:
525 .Pp
526 .D1 Oo Ar n Oc Ar redir-op file
527 .Pp
528 The
529 .Ar redir-op
530 is one of the redirection operators mentioned
531 previously.
532 The following gives some examples of how these
533 operators can be used.
534 Note that stdin and stdout are commonly used abbreviations
535 for standard input and standard output respectively.
536 .Bl -tag -width "1234567890XX" -offset indent
537 .It Oo Ar n Oc Ns Li > Ar file
538 redirect stdout (or file descriptor
539 .Ar n )
540 to
541 .Ar file
542 .It Oo Ar n Oc Ns Li >| Ar file
543 same as above, but override the
544 .Fl C
545 option
546 .It Oo Ar n Oc Ns Li >> Ar file
547 append stdout (or file descriptor
548 .Ar n )
549 to
550 .Ar file
551 .It Oo Ar n Oc Ns Li < Ar file
552 redirect stdin (or file descriptor
553 .Ar n )
554 from
555 .Ar file
556 .It Oo Ar n Oc Ns Li <> Ar file
557 redirect stdin (or file descriptor
558 .Ar n )
559 to and from
560 .Ar file
561 .It Oo Ar n1 Oc Ns Li <& Ns Ar n2
562 duplicate stdin (or file descriptor
563 .Ar n1 )
564 from file descriptor
565 .Ar n2
566 .It Oo Ar n Oc Ns Li <&-
567 close stdin (or file descriptor
568 .Ar n )
569 .It Oo Ar n1 Oc Ns Li >& Ns Ar n2
570 duplicate stdout (or file descriptor
571 .Ar n1 )
572 to file descriptor
573 .Ar n2
574 .It Oo Ar n Oc Ns Li >&-
575 close stdout (or file descriptor
576 .Ar n )
577 .El
578 .Pp
579 The following redirection is often called a
580 .Dq here-document .
581 .Bd -unfilled -offset indent
582 .Oo Ar n Oc Ns Li << Ar delimiter
583 .D1 Ar here-doc-text
584 .D1 ...
585 .Ar delimiter
586 .Ed
587 .Pp
588 All the text on successive lines up to the delimiter is
589 saved away and made available to the command on standard
590 input, or file descriptor
591 .Ar n
592 if it is specified.
593 If the
594 .Ar delimiter
595 as specified on the initial line is quoted, then the
596 .Ar here-doc-text
597 is treated literally, otherwise the text is subjected to
598 parameter expansion, command substitution, and arithmetic
599 expansion (as described in the section on
600 .Sx Word Expansions ) .
601 If the operator is
602 .Dq Li <<-
603 instead of
604 .Dq Li << ,
605 then leading tabs
606 in the
607 .Ar here-doc-text
608 are stripped.
609 .Ss Search and Execution
610 There are three types of commands: shell functions,
611 built-in commands, and normal programs.
612 The command is searched for (by name) in that order.
613 The three types of commands are all executed in a different way.
614 .Pp
615 When a shell function is executed, all of the shell positional
616 parameters (except
617 .Li $0 ,
618 which remains unchanged) are
619 set to the arguments of the shell function.
620 The variables which are explicitly placed in the environment of
621 the command (by placing assignments to them before the
622 function name) are made local to the function and are set
623 to the values given.
624 Then the command given in the function definition is executed.
625 The positional parameters are restored to their original values
626 when the command completes.
627 This all occurs within the current shell.
628 .Pp
629 Shell built-in commands are executed internally to the shell, without
630 spawning a new process.
631 There are two kinds of built-in commands: regular and special.
632 Assignments before special builtins persist after they finish
633 executing and assignment errors, redirection errors and certain
634 operand errors cause a script to be aborted.
635 Both regular and special builtins can affect the shell in ways
636 normal programs cannot.
637 .Pp
638 Otherwise, if the command name does not match a function
639 or built-in command, the command is searched for as a normal
640 program in the file system (as described in the next section).
641 When a normal program is executed, the shell runs the program,
642 passing the arguments and the environment to the program.
643 If the program is not a normal executable file
644 (i.e., if it does not begin with the
645 .Dq "magic number"
646 whose
647 .Tn ASCII
648 representation is
649 .Dq Li #! ,
650 resulting in an
651 .Er ENOEXEC
652 return value from
653 .Xr execve 2 )
654 the shell will interpret the program in a subshell.
655 The child shell will reinitialize itself in this case,
656 so that the effect will be
657 as if a new shell had been invoked to handle the ad-hoc shell script,
658 except that the location of hashed commands located in
659 the parent shell will be remembered by the child
660 (see the description of the
661 .Ic hash
662 built-in command below).
663 .Pp
664 Note that previous versions of this document
665 and the source code itself misleadingly and sporadically
666 refer to a shell script without a magic number
667 as a
668 .Dq "shell procedure" .
669 .Ss Path Search
670 When locating a command, the shell first looks to see if
671 it has a shell function by that name.
672 Then it looks for a
673 built-in command by that name.
674 If a built-in command is not found,
675 one of two things happen:
676 .Bl -enum
677 .It
678 Command names containing a slash are simply executed without
679 performing any searches.
680 .It
681 The shell searches each entry in the
682 .Ev PATH
683 environment variable
684 in turn for the command.
685 The value of the
686 .Ev PATH
687 variable should be a series of
688 entries separated by colons.
689 Each entry consists of a
690 directory name.
691 The current directory
692 may be indicated implicitly by an empty directory name,
693 or explicitly by a single period.
694 .El
695 .Ss Command Exit Status
696 Each command has an exit status that can influence the behavior
697 of other shell commands.
698 The paradigm is that a command exits
699 with zero for normal or success, and non-zero for failure,
700 error, or a false indication.
701 The man page for each command
702 should indicate the various exit codes and what they mean.
703 Additionally, the built-in commands return exit codes, as does
704 an executed shell function.
705 .Pp
706 If a command is terminated by a signal, its exit status is 128 plus
707 the signal number.
708 Signal numbers are defined in the header file
709 .In sys/signal.h .
710 .Ss Complex Commands
711 Complex commands are combinations of simple commands
712 with control operators or keywords, together creating a larger complex
713 command.
714 More generally, a command is one of the following:
715 .Bl -item -offset indent
716 .It
717 simple command
718 .It
719 pipeline
720 .It
721 list or compound-list
722 .It
723 compound command
724 .It
725 function definition
726 .El
727 .Pp
728 Unless otherwise stated, the exit status of a command is
729 that of the last simple command executed by the command.
730 .Ss Pipelines
731 A pipeline is a sequence of one or more commands separated
732 by the control operator
733 .Ql \&| .
734 The standard output of all but
735 the last command is connected to the standard input
736 of the next command.
737 The standard output of the last
738 command is inherited from the shell, as usual.
739 .Pp
740 The format for a pipeline is:
741 .Pp
742 .D1 Oo Li \&! Oc Ar command1 Op Li \&| Ar command2 ...
743 .Pp
744 The standard output of
745 .Ar command1
746 is connected to the standard input of
747 .Ar command2 .
748 The standard input, standard output, or
749 both of a command is considered to be assigned by the
750 pipeline before any redirection specified by redirection
751 operators that are part of the command.
752 .Pp
753 Note that unlike some other shells,
754 .Nm
755 executes each process in a pipeline with more than one command
756 in a subshell environment and as a child of the
757 .Nm
758 process.
759 .Pp
760 If the pipeline is not in the background (discussed later),
761 the shell waits for all commands to complete.
762 .Pp
763 If the keyword
764 .Ic !\&
765 does not precede the pipeline, the
766 exit status is the exit status of the last command specified
767 in the pipeline.
768 Otherwise, the exit status is the logical
769 NOT of the exit status of the last command.
770 That is, if
771 the last command returns zero, the exit status is 1; if
772 the last command returns greater than zero, the exit status
773 is zero.
774 .Pp
775 Because pipeline assignment of standard input or standard
776 output or both takes place before redirection, it can be
777 modified by redirection.
778 For example:
779 .Pp
780 .Dl "command1 2>&1 | command2"
781 .Pp
782 sends both the standard output and standard error of
783 .Ar command1
784 to the standard input of
785 .Ar command2 .
786 .Pp
787 A
788 .Ql \&;
789 or newline terminator causes the preceding
790 AND-OR-list
791 (described below in the section called
792 .Sx Short-Circuit List Operators )
793 to be executed sequentially;
794 an
795 .Ql &
796 causes asynchronous execution of the preceding AND-OR-list.
797 .Ss Background Commands (&)
798 If a command is terminated by the control operator ampersand
799 .Pq Ql & ,
800 the shell executes the command asynchronously;
801 the shell does not wait for the command to finish
802 before executing the next command.
803 .Pp
804 The format for running a command in background is:
805 .Pp
806 .D1 Ar command1 Li & Op Ar command2 Li & Ar ...
807 .Pp
808 If the shell is not interactive, the standard input of an
809 asynchronous command is set to
810 .Pa /dev/null .
811 .Ss Lists (Generally Speaking)
812 A list is a sequence of zero or more commands separated by
813 newlines, semicolons, or ampersands,
814 and optionally terminated by one of these three characters.
815 The commands in a
816 list are executed in the order they are written.
817 If command is followed by an ampersand, the shell starts the
818 command and immediately proceeds onto the next command;
819 otherwise it waits for the command to terminate before
820 proceeding to the next one.
821 .Ss Short-Circuit List Operators
822 .Dq Li &&
823 and
824 .Dq Li ||
825 are AND-OR list operators.
826 .Dq Li &&
827 executes the first command, and then executes the second command
828 if the exit status of the first command is zero.
829 .Dq Li ||
830 is similar, but executes the second command if the exit
831 status of the first command is nonzero.
832 .Dq Li &&
833 and
834 .Dq Li ||
835 both have the same priority.
836 .Ss Flow-Control Constructs (if, while, for, case)
837 The syntax of the
838 .Ic if
839 command is:
840 .Bd -unfilled -offset indent -compact
841 .Ic if Ar list
842 .Ic then Ar list
843 .Oo Ic elif Ar list
844 .Ic then Ar list Oc Ar ...
845 .Op Ic else Ar list
846 .Ic fi
847 .Ed
848 .Pp
849 The syntax of the
850 .Ic while
851 command is:
852 .Bd -unfilled -offset indent -compact
853 .Ic while Ar list
854 .Ic do Ar list
855 .Ic done
856 .Ed
857 .Pp
858 The two lists are executed repeatedly while the exit status of the
859 first list is zero.
860 The
861 .Ic until
862 command is similar, but has the word
863 .Ic until
864 in place of
865 .Ic while ,
866 which causes it to
867 repeat until the exit status of the first list is zero.
868 .Pp
869 The syntax of the
870 .Ic for
871 command is:
872 .Bd -unfilled -offset indent -compact
873 .Ic for Ar variable Op Ic in Ar word ...
874 .Ic do Ar list
875 .Ic done
876 .Ed
877 .Pp
878 If
879 .Ic in
880 and the following words are omitted,
881 .Ic in Li \&"$@\&"
882 is used instead.
883 The words are expanded, and then the list is executed
884 repeatedly with the variable set to each word in turn.
885 The
886 .Ic do
887 and
888 .Ic done
889 commands may be replaced with
890 .Ql {
891 and
892 .Ql } .
893 .Pp
894 The syntax of the
895 .Ic break
896 and
897 .Ic continue
898 commands is:
899 .D1 Ic break Op Ar num
900 .D1 Ic continue Op Ar num
901 .Pp
902 The
903 .Ic break
904 command terminates the
905 .Ar num
906 innermost
907 .Ic for
908 or
909 .Ic while
910 loops.
911 The
912 .Ic continue
913 command continues with the next iteration of the innermost loop.
914 These are implemented as special built-in commands.
915 .Pp
916 The syntax of the
917 .Ic case
918 command is:
919 .Bd -unfilled -offset indent -compact
920 .Ic case Ar word Ic in
921 .Ar pattern Ns Li ) Ar list Li ;;
922 .Ar ...
923 .Ic esac
924 .Ed
925 .Pp
926 The pattern can actually be one or more patterns
927 (see
928 .Sx Shell Patterns
929 described later),
930 separated by
931 .Ql \&|
932 characters.
933 The exit code of the
934 .Ic case
935 command is the exit code of the last command executed in the list or
936 zero if no patterns were matched.
937 .Ss Grouping Commands Together
938 Commands may be grouped by writing either
939 .Pp
940 .D1 Li \&( Ns Ar list Ns Li \%)
941 .Pp
942 or
943 .Pp
944 .D1 Li { Ar list Ns Li \&; }
945 .Pp
946 The first form executes the commands in a subshell.
947 Note that built-in commands thus executed do not affect the current shell.
948 The second form does not fork another shell,
949 so it is slightly more efficient.
950 Grouping commands together this way allows the user to
951 redirect their output as though they were one program:
952 .Bd -literal -offset indent
953 { echo -n "hello"; echo " world"; } > greeting
954 .Ed
955 .Ss Functions
956 The syntax of a function definition is
957 .Pp
958 .D1 Ar name Li \&( \&) Ar command
959 .Pp
960 A function definition is an executable statement; when
961 executed it installs a function named
962 .Ar name
963 and returns an
964 exit status of zero.
965 The
966 .Ar command
967 is normally a list
968 enclosed between
969 .Ql {
970 and
971 .Ql } .
972 .Pp
973 Variables may be declared to be local to a function by
974 using the
975 .Ic local
976 command.
977 This should appear as the first statement of a function,
978 and the syntax is:
979 .Pp
980 .D1 Ic local Oo Ar variable ... Oc Op Fl
981 .Pp
982 The
983 .Ic local
984 command is implemented as a built-in command.
985 .Pp
986 When a variable is made local, it inherits the initial
987 value and exported and readonly flags from the variable
988 with the same name in the surrounding scope, if there is
989 one.
990 Otherwise, the variable is initially unset.
991 The shell
992 uses dynamic scoping, so that if the variable
993 .Va x
994 is made local to function
995 .Em f ,
996 which then calls function
997 .Em g ,
998 references to the variable
999 .Va x
1000 made inside
1001 .Em g
1002 will refer to the variable
1003 .Va x
1004 declared inside
1005 .Em f ,
1006 not to the global variable named
1007 .Va x .
1008 .Pp
1009 The only special parameter that can be made local is
1010 .Ql - .
1011 Making
1012 .Ql -
1013 local causes any shell options that are
1014 changed via the
1015 .Ic set
1016 command inside the function to be
1017 restored to their original values when the function
1018 returns.
1019 .Pp
1020 The syntax of the
1021 .Ic return
1022 command is
1023 .Pp
1024 .D1 Ic return Op Ar exitstatus
1025 .Pp
1026 It terminates the current executional scope, returning from the previous
1027 nested function, sourced script, or shell instance, in that order.
1028 The
1029 .Ic return
1030 command is implemented as a special built-in command.
1031 .Ss Variables and Parameters
1032 The shell maintains a set of parameters.
1033 A parameter
1034 denoted by a name is called a variable.
1035 When starting up,
1036 the shell turns all the environment variables into shell
1037 variables.
1038 New variables can be set using the form
1039 .Pp
1040 .D1 Ar name Ns = Ns Ar value
1041 .Pp
1042 Variables set by the user must have a name consisting solely
1043 of alphabetics, numerics, and underscores.
1044 The first letter of a variable name must not be numeric.
1045 A parameter can also be denoted by a number
1046 or a special character as explained below.
1047 .Ss Positional Parameters
1048 A positional parameter is a parameter denoted by a number greater than zero.
1049 The shell sets these initially to the values of its command line
1050 arguments that follow the name of the shell script.
1051 The
1052 .Ic set
1053 built-in command can also be used to set or reset them.
1054 .Ss Special Parameters
1055 Special parameters are parameters denoted by a single special character
1056 or the digit zero.
1057 They are shown in the following list, exactly as they would appear in input
1058 typed by the user or in the source of a shell script.
1059 .Bl -hang
1060 .It Li $*
1061 Expands to the positional parameters, starting from one.
1062 When
1063 the expansion occurs within a double-quoted string
1064 it expands to a single field with the value of each parameter
1065 separated by the first character of the
1066 .Va IFS
1067 variable,
1068 or by a space if
1069 .Va IFS
1070 is unset.
1071 .It Li $@
1072 Expands to the positional parameters, starting from one.
1073 When
1074 the expansion occurs within double-quotes, each positional
1075 parameter expands as a separate argument.
1076 If there are no positional parameters, the
1077 expansion of
1078 .Li @
1079 generates zero arguments, even when
1080 .Li @
1081 is double-quoted.
1082 What this basically means, for example, is
1083 if
1084 .Li $1
1085 is
1086 .Dq Li abc
1087 and
1088 .Li $2
1089 is
1090 .Dq Li "def ghi" ,
1091 then
1092 .Li \&"$@\&"
1093 expands to
1094 the two arguments:
1095 .Bd -literal -offset indent
1096 "abc"   "def ghi"
1097 .Ed
1098 .It Li $#
1099 Expands to the number of positional parameters.
1100 .It Li $?
1101 Expands to the exit status of the most recent pipeline.
1102 .It Li $-
1103 (hyphen) Expands to the current option flags (the single-letter
1104 option names concatenated into a string) as specified on
1105 invocation, by the
1106 .Ic set
1107 built-in command, or implicitly
1108 by the shell.
1109 .It Li $$
1110 Expands to the process ID of the invoked shell.
1111 A subshell
1112 retains the same value of
1113 .Va $
1114 as its parent.
1115 .It Li $!
1116 Expands to the process ID of the most recent background
1117 command executed from the current shell.
1118 For a
1119 pipeline, the process ID is that of the last command in the
1120 pipeline.
1121 .It Li $0
1122 (zero) Expands to the name of the shell script if passed on the command line,
1123 the
1124 .Ar name
1125 operand if given (with
1126 .Fl c )
1127 or otherwise argument 0 passed to the shell.
1128 .El
1129 .Ss Word Expansions
1130 This clause describes the various expansions that are
1131 performed on words.
1132 Not all expansions are performed on
1133 every word, as explained later.
1134 .Pp
1135 Tilde expansions, parameter expansions, command substitutions,
1136 arithmetic expansions, and quote removals that occur within
1137 a single word expand to a single field.
1138 It is only field
1139 splitting or pathname expansion that can create multiple
1140 fields from a single word.
1141 The single exception to this rule is
1142 the expansion of the special parameter
1143 .Va @
1144 within double-quotes,
1145 as was described above.
1146 .Pp
1147 The order of word expansion is:
1148 .Bl -enum
1149 .It
1150 Tilde Expansion, Parameter Expansion, Command Substitution,
1151 Arithmetic Expansion (these all occur at the same time).
1152 .It
1153 Field Splitting is performed on fields generated by step (1)
1154 unless the
1155 .Va IFS
1156 variable is null.
1157 .It
1158 Pathname Expansion (unless the
1159 .Fl f
1160 option is in effect).
1161 .It
1162 Quote Removal.
1163 .El
1164 .Pp
1165 The
1166 .Ql $
1167 character is used to introduce parameter expansion, command
1168 substitution, or arithmetic expansion.
1169 .Ss Tilde Expansion (substituting a user's home directory)
1170 A word beginning with an unquoted tilde character
1171 .Pq Ql ~
1172 is
1173 subjected to tilde expansion.
1174 All the characters up to a slash
1175 .Pq Ql /
1176 or the end of the word are treated as a username
1177 and are replaced with the user's home directory.
1178 If the
1179 username is missing (as in
1180 .Pa ~/foobar ) ,
1181 the tilde is replaced with the value of the
1182 .Ev HOME
1183 variable (the current user's home directory).
1184 .Ss Parameter Expansion
1185 The format for parameter expansion is as follows:
1186 .Pp
1187 .D1 Li ${ Ns Ar expression Ns Li }
1188 .Pp
1189 where
1190 .Ar expression
1191 consists of all characters until the matching
1192 .Ql } .
1193 Any
1194 .Ql }
1195 escaped by a backslash or within a quoted string, and characters in
1196 embedded arithmetic expansions, command substitutions, and variable
1197 expansions, are not examined in determining the matching
1198 .Ql } .
1199 .Pp
1200 The simplest form for parameter expansion is:
1201 .Pp
1202 .D1 Li ${ Ns Ar parameter Ns Li }
1203 .Pp
1204 The value, if any, of
1205 .Ar parameter
1206 is substituted.
1207 .Pp
1208 The parameter name or symbol can be enclosed in braces, which are
1209 optional except for positional parameters with more than one digit or
1210 when parameter is followed by a character that could be interpreted as
1211 part of the name.
1212 If a parameter expansion occurs inside double-quotes:
1213 .Bl -enum
1214 .It
1215 Pathname expansion is not performed on the results of the
1216 expansion.
1217 .It
1218 Field splitting is not performed on the results of the
1219 expansion, with the exception of the special parameter
1220 .Va @ .
1221 .El
1222 .Pp
1223 In addition, a parameter expansion can be modified by using one of the
1224 following formats.
1225 .Bl -tag -width indent
1226 .It Li ${ Ns Ar parameter Ns Li :- Ns Ar word Ns Li }
1227 Use Default Values.
1228 If
1229 .Ar parameter
1230 is unset or null, the expansion of
1231 .Ar word
1232 is substituted; otherwise, the value of
1233 .Ar parameter
1234 is substituted.
1235 .It Li ${ Ns Ar parameter Ns Li := Ns Ar word Ns Li }
1236 Assign Default Values.
1237 If
1238 .Ar parameter
1239 is unset or null, the expansion of
1240 .Ar word
1241 is assigned to
1242 .Ar parameter .
1243 In all cases, the
1244 final value of
1245 .Ar parameter
1246 is substituted.
1247 Quoting inside
1248 .Ar word
1249 does not prevent field splitting or pathname expansion.
1250 Only variables, not positional
1251 parameters or special parameters, can be
1252 assigned in this way.
1253 .It Li ${ Ns Ar parameter Ns Li :? Ns Oo Ar word Oc Ns Li }
1254 Indicate Error if Null or Unset.
1255 If
1256 .Ar parameter
1257 is unset or null, the expansion of
1258 .Ar word
1259 (or a message indicating it is unset if
1260 .Ar word
1261 is omitted) is written to standard
1262 error and the shell exits with a nonzero
1263 exit status.
1264 Otherwise, the value of
1265 .Ar parameter
1266 is substituted.
1267 An
1268 interactive shell need not exit.
1269 .It Li ${ Ns Ar parameter Ns Li :+ Ns Ar word Ns Li }
1270 Use Alternate Value.
1271 If
1272 .Ar parameter
1273 is unset or null, null is substituted;
1274 otherwise, the expansion of
1275 .Ar word
1276 is substituted.
1277 .El
1278 .Pp
1279 In the parameter expansions shown previously, use of the colon in the
1280 format results in a test for a parameter that is unset or null; omission
1281 of the colon results in a test for a parameter that is only unset.
1282 .Bl -tag -width indent
1283 .It Li ${# Ns Ar parameter Ns Li }
1284 String Length.
1285 The length in characters of
1286 the value of
1287 .Ar parameter .
1288 .El
1289 .Pp
1290 The following four varieties of parameter expansion provide for substring
1291 processing.
1292 In each case, pattern matching notation
1293 (see
1294 .Sx Shell Patterns ) ,
1295 rather than regular expression notation,
1296 is used to evaluate the patterns.
1297 If parameter is one of the special parameters
1298 .Va *
1299 or
1300 .Va @ ,
1301 the result of the expansion is unspecified.
1302 Enclosing the full parameter expansion string in double-quotes does not
1303 cause the following four varieties of pattern characters to be quoted,
1304 whereas quoting characters within the braces has this effect.
1305 .Bl -tag -width indent
1306 .It Li ${ Ns Ar parameter Ns Li % Ns Ar word Ns Li }
1307 Remove Smallest Suffix Pattern.
1308 The
1309 .Ar word
1310 is expanded to produce a pattern.
1311 The
1312 parameter expansion then results in
1313 .Ar parameter ,
1314 with the smallest portion of the
1315 suffix matched by the pattern deleted.
1316 .It Li ${ Ns Ar parameter Ns Li %% Ns Ar word Ns Li }
1317 Remove Largest Suffix Pattern.
1318 The
1319 .Ar word
1320 is expanded to produce a pattern.
1321 The
1322 parameter expansion then results in
1323 .Ar parameter ,
1324 with the largest portion of the
1325 suffix matched by the pattern deleted.
1326 .It Li ${ Ns Ar parameter Ns Li # Ns Ar word Ns Li }
1327 Remove Smallest Prefix Pattern.
1328 The
1329 .Ar word
1330 is expanded to produce a pattern.
1331 The
1332 parameter expansion then results in
1333 .Ar parameter ,
1334 with the smallest portion of the
1335 prefix matched by the pattern deleted.
1336 .It Li ${ Ns Ar parameter Ns Li ## Ns Ar word Ns Li }
1337 Remove Largest Prefix Pattern.
1338 The
1339 .Ar word
1340 is expanded to produce a pattern.
1341 The
1342 parameter expansion then results in
1343 .Ar parameter ,
1344 with the largest portion of the
1345 prefix matched by the pattern deleted.
1346 .El
1347 .Ss Command Substitution
1348 Command substitution allows the output of a command to be substituted in
1349 place of the command name itself.
1350 Command substitution occurs when
1351 the command is enclosed as follows:
1352 .Pp
1353 .D1 Li $( Ns Ar command Ns Li )\&
1354 .Pp
1355 or the backquoted version:
1356 .Pp
1357 .D1 Li ` Ns Ar command Ns Li `
1358 .Pp
1359 The shell expands the command substitution by executing command in a
1360 subshell environment and replacing the command substitution
1361 with the standard output of the command,
1362 removing sequences of one or more newlines at the end of the substitution.
1363 Embedded newlines before the end of the output are not removed;
1364 however, during field splitting, they may be translated into spaces
1365 depending on the value of
1366 .Va IFS
1367 and the quoting that is in effect.
1368 .Ss Arithmetic Expansion
1369 Arithmetic expansion provides a mechanism for evaluating an arithmetic
1370 expression and substituting its value.
1371 The format for arithmetic expansion is as follows:
1372 .Pp
1373 .D1 Li $(( Ns Ar expression Ns Li ))
1374 .Pp
1375 The
1376 .Ar expression
1377 is treated as if it were in double-quotes, except
1378 that a double-quote inside the expression is not treated specially.
1379 The
1380 shell expands all tokens in the
1381 .Ar expression
1382 for parameter expansion,
1383 command substitution,
1384 arithmetic expansion
1385 and quote removal.
1386 .Pp
1387 The allowed expressions are a subset of C expressions,
1388 summarized below.
1389 .Bl -tag -width "Variables" -offset indent
1390 .It Values
1391 All values are of type
1392 .Ft intmax_t .
1393 .It Constants
1394 Decimal, octal (starting with
1395 .Li 0 )
1396 and hexadecimal (starting with 
1397 .Li 0x )
1398 integer constants.
1399 .It Variables
1400 Shell variables can be read and written
1401 and contain integer constants.
1402 .It Unary operators
1403 .Li "! ~ + -"
1404 .It Binary operators
1405 .Li "* / % + - << >> < <= > >= == != & ^ | && ||"
1406 .It Assignment operators
1407 .Li "= += -= *= /= %= <<= >>= &= ^= |="
1408 .It Short-circuit evaluation
1409 The
1410 .Li &&
1411 and
1412 .Li ||
1413 operators always evaluate both sides.
1414 This is a bug.
1415 .El
1416 .Pp
1417 The result of the expression is substituted in decimal.
1418 .Ss White Space Splitting (Field Splitting)
1419 After parameter expansion, command substitution, and
1420 arithmetic expansion the shell scans the results of
1421 expansions and substitutions that did not occur in double-quotes for
1422 field splitting and multiple fields can result.
1423 .Pp
1424 The shell treats each character of the
1425 .Va IFS
1426 variable as a delimiter and uses
1427 the delimiters to split the results of parameter expansion and command
1428 substitution into fields.
1429 .Ss Pathname Expansion (File Name Generation)
1430 Unless the
1431 .Fl f
1432 option is set,
1433 file name generation is performed
1434 after word splitting is complete.
1435 Each word is
1436 viewed as a series of patterns, separated by slashes.
1437 The
1438 process of expansion replaces the word with the names of
1439 all existing files whose names can be formed by replacing
1440 each pattern with a string that matches the specified pattern.
1441 There are two restrictions on this: first, a pattern cannot match
1442 a string containing a slash, and second,
1443 a pattern cannot match a string starting with a period
1444 unless the first character of the pattern is a period.
1445 The next section describes the patterns used for both
1446 Pathname Expansion and the
1447 .Ic case
1448 command.
1449 .Ss Shell Patterns
1450 A pattern consists of normal characters, which match themselves,
1451 and meta-characters.
1452 The meta-characters are
1453 .Ql \&! ,
1454 .Ql * ,
1455 .Ql \&? ,
1456 and
1457 .Ql \&[ .
1458 These characters lose their special meanings if they are quoted.
1459 When command or variable substitution is performed and the dollar sign
1460 or back quotes are not double-quoted, the value of the
1461 variable or the output of the command is scanned for these
1462 characters and they are turned into meta-characters.
1463 .Pp
1464 An asterisk
1465 .Pq Ql *
1466 matches any string of characters.
1467 A question mark
1468 .Pq Ql \&?
1469 matches any single character.
1470 A left bracket
1471 .Pq Ql \&[
1472 introduces a character class.
1473 The end of the character class is indicated by a
1474 .Ql \&] ;
1475 if the
1476 .Ql \&]
1477 is missing then the
1478 .Ql \&[
1479 matches a
1480 .Ql \&[
1481 rather than introducing a character class.
1482 A character class matches any of the characters between the square brackets.
1483 A range of characters may be specified using a minus sign.
1484 The character class may be complemented by making an exclamation point
1485 .Pq Ql !\&
1486 the first character of the character class.
1487 .Pp
1488 To include a
1489 .Ql \&]
1490 in a character class, make it the first character listed
1491 (after the
1492 .Ql \&! ,
1493 if any).
1494 To include a
1495 .Ql - ,
1496 make it the first or last character listed.
1497 .Ss Built-in Commands
1498 This section lists the commands which
1499 are built-in because they need to perform some operation
1500 that cannot be performed by a separate process.
1501 In addition to
1502 these, built-in versions of essential utilities
1503 are provided for efficiency.
1504 .Bl -tag -width indent
1505 .It Ic \&:
1506 A null command that returns a 0 (true) exit value.
1507 .It Ic \&. Ar file
1508 The commands in the specified file are read and executed by the shell.
1509 The
1510 .Ic return
1511 command may be used to return to the
1512 .Ic \&.
1513 command's caller.
1514 If
1515 .Ar file
1516 contains any
1517 .Ql /
1518 characters, it is used as is.
1519 Otherwise, the shell searches the
1520 .Ev PATH
1521 for the file.
1522 If it is not found in the
1523 .Ev PATH ,
1524 it is sought in the current working directory.
1525 .It Ic \&[
1526 A built-in equivalent of
1527 .Xr test 1 .
1528 .It Ic alias Oo Ar name Ns Oo = Ns Ar string Oc ... Oc
1529 If
1530 .Ar name Ns = Ns Ar string
1531 is specified, the shell defines the alias
1532 .Ar name
1533 with value
1534 .Ar string .
1535 If just
1536 .Ar name
1537 is specified, the value of the alias
1538 .Ar name
1539 is printed.
1540 With no arguments, the
1541 .Ic alias
1542 built-in command prints the names and values of all defined aliases
1543 (see
1544 .Ic unalias ) .
1545 Alias values are written with appropriate quoting so that they are
1546 suitable for re-input to the shell.
1547 Also see the
1548 .Sx Aliases
1549 subsection.
1550 .It Ic bg Op Ar job ...
1551 Continue the specified jobs
1552 (or the current job if no jobs are given)
1553 in the background.
1554 .It Ic builtin Ar cmd Op Ar arg ...
1555 Execute the specified built-in command,
1556 .Ar cmd .
1557 This is useful when the user wishes to override a shell function
1558 with the same name as a built-in command.
1559 .It Ic bind Oo Fl aeklrsv Oc Oo Ar key Oo Ar command Oc Oc
1560 List or alter key bindings for the line editor.
1561 This command is documented in
1562 .Xr editrc 5 .
1563 .It Ic cd Oo Fl L | P Oc Op Ar directory
1564 Switch to the specified
1565 .Ar directory ,
1566 or to the directory specified in the
1567 .Ev HOME
1568 environment variable if no
1569 .Ar directory
1570 is specified.
1571 If
1572 .Ar directory
1573 does not begin with
1574 .Pa / , \&. ,
1575 or
1576 .Pa .. ,
1577 then the directories listed in the
1578 .Ev CDPATH
1579 variable will be
1580 searched for the specified
1581 .Ar directory .
1582 If
1583 .Ev CDPATH
1584 is unset, the current directory is searched.
1585 The format of
1586 .Ev CDPATH
1587 is the same as that of
1588 .Ev PATH .
1589 In an interactive shell,
1590 the
1591 .Ic cd
1592 command will print out the name of the directory
1593 that it actually switched to
1594 if this is different from the name that the user gave.
1595 These may be different either because the
1596 .Ev CDPATH
1597 mechanism was used or because a symbolic link was crossed.
1598 .Pp
1599 If the
1600 .Fl P
1601 option is specified,
1602 .Pa ..
1603 is handled physically and symbolic links are resolved before
1604 .Pa ..
1605 components are processed.
1606 If the
1607 .Fl L
1608 option is specified,
1609 .Pa ..
1610 is handled logically.
1611 This is the default.
1612 .It Ic chdir
1613 A synonym for the
1614 .Ic cd
1615 built-in command.
1616 .It Ic command Oo Fl p Oc Op Ar utility Op Ar argument ...
1617 .It Ic command Oo Fl v | V Oc Op Ar utility
1618 The first form of invocation executes the specified
1619 .Ar utility
1620 as a simple command (see the
1621 .Sx Simple Commands
1622 section).
1623 .Pp
1624 If the
1625 .Fl p
1626 option is specified, the command search is performed using a
1627 default value of
1628 .Ev PATH
1629 that is guaranteed to find all of the standard utilities.
1630 .Pp
1631 If the
1632 .Fl v
1633 option is specified,
1634 .Ar utility
1635 is not executed but a description of its interpretation by the shell is
1636 printed.
1637 For ordinary commands the output is the path name; for shell built-in
1638 commands, shell functions and keywords only the name is written.
1639 Aliases are printed as
1640 .Dq Ic alias Ar name Ns = Ns Ar value .
1641 .Pp
1642 The
1643 .Fl V
1644 option is identical to
1645 .Fl v
1646 except for the output.
1647 It prints
1648 .Dq Ar utility Ic is Ar description
1649 where
1650 .Ar description
1651 is either
1652 the path name to
1653 .Ar utility ,
1654 a special shell builtin,
1655 a shell builtin,
1656 a shell function,
1657 a shell keyword
1658 or
1659 an alias for
1660 .Ar value .
1661 .It Ic echo Oo Fl e | n Oc Op Ar string ...
1662 Print a space-separated list of the arguments to the standard output
1663 and append a newline character.
1664 .Bl -tag -width indent
1665 .It Fl n
1666 Suppress the output of the trailing newline.
1667 .It Fl e
1668 Process C-style backslash escape sequences.
1669 The
1670 .Ic echo
1671 command understands the following character escapes:
1672 .Bl -tag -width indent
1673 .It \ea
1674 Alert (ring the terminal bell)
1675 .It \eb
1676 Backspace
1677 .It \ec
1678 Suppress the trailing newline (this has the side-effect of truncating the
1679 line if it is not the last character)
1680 .It \ee
1681 The ESC character
1682 .Tn ( ASCII
1683 0x1b)
1684 .It \ef
1685 Formfeed
1686 .It \en
1687 Newline
1688 .It \er
1689 Carriage return
1690 .It \et
1691 Horizontal tab
1692 .It \ev
1693 Vertical tab
1694 .It \e\e
1695 Literal backslash
1696 .It \e0nnn
1697 (Zero) The character whose octal value is
1698 .Ar nnn
1699 .El
1700 .Pp
1701 If
1702 .Ar string
1703 is not enclosed in quotes then the backslash itself must be escaped
1704 with a backslash to protect it from the shell.
1705 For example
1706 .Bd -literal -offset indent
1707 $ echo -e "a\evb"
1708 a
1709  b
1710 $ echo -e a\e\evb
1711 a
1712  b
1713 $ echo -e "a\e\eb"
1714 a\eb
1715 $ echo -e a\e\e\e\eb
1716 a\eb
1717 .Ed
1718 .El
1719 .Pp
1720 Only one of the
1721 .Fl e
1722 and
1723 .Fl n
1724 options may be specified.
1725 .It Ic eval Ar string ...
1726 Concatenate all the arguments with spaces.
1727 Then re-parse and execute the command.
1728 .It Ic exec Op Ar command Op arg ...
1729 Unless
1730 .Ar command
1731 is omitted,
1732 the shell process is replaced with the specified program
1733 (which must be a real program, not a shell built-in command or function).
1734 Any redirections on the
1735 .Ic exec
1736 command are marked as permanent,
1737 so that they are not undone when the
1738 .Ic exec
1739 command finishes.
1740 .It Ic exit Op Ar exitstatus
1741 Terminate the shell process.
1742 If
1743 .Ar exitstatus
1744 is given
1745 it is used as the exit status of the shell;
1746 otherwise the exit status of the preceding command is used.
1747 The exit status should be an integer between 0 and 255.
1748 .It Ic export Ar name ...
1749 .It Ic export Op Fl p
1750 The specified names are exported so that they will
1751 appear in the environment of subsequent commands.
1752 The only way to un-export a variable is to
1753 .Ic unset
1754 it.
1755 The shell allows the value of a variable to be set
1756 at the same time as it is exported by writing
1757 .Pp
1758 .D1 Ic export Ar name Ns = Ns Ar value
1759 .Pp
1760 With no arguments the
1761 .Ic export
1762 command lists the names
1763 of all exported variables.
1764 If the
1765 .Fl p
1766 option is specified, the exported variables are printed as
1767 .Dq Ic export Ar name Ns = Ns Ar value
1768 lines, suitable for re-input to the shell.
1769 .It Ic false
1770 A null command that returns a non-zero (false) exit value.
1771 .It Ic fc Oo Fl e Ar editor Oc Op Ar first Op Ar last
1772 .It Ic fc Fl l Oo Fl nr Oc Op Ar first Op Ar last
1773 .It Ic fc Fl s Oo Ar old Ns = Ns Ar new Oc Op Ar first
1774 The
1775 .Ic fc
1776 built-in command lists, or edits and re-executes,
1777 commands previously entered to an interactive shell.
1778 .Bl -tag -width indent
1779 .It Fl e Ar editor
1780 Use the editor named by
1781 .Ar editor
1782 to edit the commands.
1783 The
1784 .Ar editor
1785 string is a command name,
1786 subject to search via the
1787 .Ev PATH
1788 variable.
1789 The value in the
1790 .Ev FCEDIT
1791 variable is used as a default when
1792 .Fl e
1793 is not specified.
1794 If
1795 .Ev FCEDIT
1796 is null or unset, the value of the
1797 .Ev EDITOR
1798 variable is used.
1799 If
1800 .Ev EDITOR
1801 is null or unset,
1802 .Xr ed 1
1803 is used as the editor.
1804 .It Fl l No (ell)
1805 List the commands rather than invoking
1806 an editor on them.
1807 The commands are written in the
1808 sequence indicated by the
1809 .Ar first
1810 and
1811 .Ar last
1812 operands, as affected by
1813 .Fl r ,
1814 with each command preceded by the command number.
1815 .It Fl n
1816 Suppress command numbers when listing with
1817 .Fl l .
1818 .It Fl r
1819 Reverse the order of the commands listed
1820 (with
1821 .Fl l )
1822 or edited
1823 (with neither
1824 .Fl l
1825 nor
1826 .Fl s ) .
1827 .It Fl s
1828 Re-execute the command without invoking an editor.
1829 .It Ar first
1830 .It Ar last
1831 Select the commands to list or edit.
1832 The number of previous commands that can be accessed
1833 are determined by the value of the
1834 .Ev HISTSIZE
1835 variable.
1836 The value of
1837 .Ar first
1838 or
1839 .Ar last
1840 or both are one of the following:
1841 .Bl -tag -width indent
1842 .It Oo Cm + Oc Ns Ar num
1843 A positive number representing a command number;
1844 command numbers can be displayed with the
1845 .Fl l
1846 option.
1847 .It Fl Ar num
1848 A negative decimal number representing the
1849 command that was executed
1850 .Ar num
1851 of
1852 commands previously.
1853 For example, \-1 is the immediately previous command.
1854 .It Ar string
1855 A string indicating the most recently entered command
1856 that begins with that string.
1857 If the
1858 .Ar old Ns = Ns Ar new
1859 operand is not also specified with
1860 .Fl s ,
1861 the string form of the first operand cannot contain an embedded equal sign.
1862 .El
1863 .El
1864 .Pp
1865 The following environment variables affect the execution of
1866 .Ic fc :
1867 .Bl -tag -width ".Ev HISTSIZE"
1868 .It Ev FCEDIT
1869 Name of the editor to use for history editing.
1870 .It Ev HISTSIZE
1871 The number of previous commands that are accessible.
1872 .El
1873 .It Ic fg Op Ar job
1874 Move the specified
1875 .Ar job
1876 or the current job to the foreground.
1877 .It Ic getopts Ar optstring var
1878 The
1879 .Tn POSIX
1880 .Ic getopts
1881 command.
1882 The
1883 .Ic getopts
1884 command deprecates the older
1885 .Xr getopt 1
1886 command.
1887 The first argument should be a series of letters, each possibly
1888 followed by a colon which indicates that the option takes an argument.
1889 The specified variable is set to the parsed option.
1890 The index of
1891 the next argument is placed into the shell variable
1892 .Va OPTIND .
1893 If an option takes an argument, it is placed into the shell variable
1894 .Va OPTARG .
1895 If an invalid option is encountered,
1896 .Ar var
1897 is set to
1898 .Ql \&? .
1899 It returns a false value (1) when it encounters the end of the options.
1900 .It Ic hash Oo Fl rv Oc Op Ar command ...
1901 The shell maintains a hash table which remembers the locations of commands.
1902 With no arguments whatsoever, the
1903 .Ic hash
1904 command prints out the contents of this table.
1905 Entries which have not been looked at since the last
1906 .Ic cd
1907 command are marked with an asterisk;
1908 it is possible for these entries to be invalid.
1909 .Pp
1910 With arguments, the
1911 .Ic hash
1912 command removes each specified
1913 .Ar command
1914 from the hash table (unless they are functions) and then locates it.
1915 With the
1916 .Fl v
1917 option,
1918 .Ic hash
1919 prints the locations of the commands as it finds them.
1920 The
1921 .Fl r
1922 option causes the
1923 .Ic hash
1924 command to delete all the entries in the hash table except for functions.
1925 .It Ic jobid Op Ar job
1926 Print the process IDs of the processes in the specified
1927 .Ar job .
1928 If the
1929 .Ar job
1930 argument is omitted, use the current job.
1931 .It Ic jobs Oo Fl lps Oc Op Ar job ...
1932 Print information about the specified jobs, or all jobs if no
1933 .Ar job
1934 argument is given.
1935 The information printed includes job ID, status and command name.
1936 .Pp
1937 If the
1938 .Fl l
1939 option is specified, the PID of each job is also printed.
1940 If the
1941 .Fl p
1942 option is specified, only the process IDs for the process group leaders
1943 are printed, one per line.
1944 If the
1945 .Fl s
1946 option is specified, only the PIDs of the job commands are printed, one per
1947 line.
1948 .It Ic local Oo Ar variable ... Oc Op Fl
1949 See the
1950 .Sx Functions
1951 subsection.
1952 .It Ic pwd Op Fl L | P
1953 Print the path of the current directory.
1954 The built-in command may
1955 differ from the program of the same name because the
1956 built-in command remembers what the current directory
1957 is rather than recomputing it each time.
1958 This makes
1959 it faster.
1960 However, if the current directory is
1961 renamed,
1962 the built-in version of
1963 .Xr pwd 1
1964 will continue to print the old name for the directory.
1965 .Pp
1966 If the
1967 .Fl P
1968 option is specified, symbolic links are resolved.
1969 If the
1970 .Fl L
1971 option is specified, the shell's notion of the current directory
1972 is printed (symbolic links are not resolved).
1973 This is the default.
1974 .It Ic read Oo Fl p Ar prompt Oc Oo
1975 .Fl t Ar timeout Oc Oo Fl er Oc Ar variable ...
1976 The
1977 .Ar prompt
1978 is printed if the
1979 .Fl p
1980 option is specified
1981 and the standard input is a terminal.
1982 Then a line is
1983 read from the standard input.
1984 The trailing newline
1985 is deleted from the line and the line is split as
1986 described in the section on
1987 .Sx White Space Splitting (Field Splitting)
1988 above, and
1989 the pieces are assigned to the variables in order.
1990 If there are more pieces than variables, the remaining
1991 pieces (along with the characters in
1992 .Va IFS
1993 that separated them)
1994 are assigned to the last variable.
1995 If there are more variables than pieces, the remaining
1996 variables are assigned the null string.
1997 .Pp
1998 Backslashes are treated specially, unless the
1999 .Fl r
2000 option is
2001 specified.
2002 If a backslash is followed by
2003 a newline, the backslash and the newline will be
2004 deleted.
2005 If a backslash is followed by any other
2006 character, the backslash will be deleted and the following
2007 character will be treated as though it were not in
2008 .Va IFS ,
2009 even if it is.
2010 .Pp
2011 If the
2012 .Fl t
2013 option is specified and the
2014 .Ar timeout
2015 elapses before a complete line of input is supplied,
2016 the
2017 .Ic read
2018 command will return an exit status of 1 without assigning any values.
2019 The
2020 .Ar timeout
2021 value may optionally be followed by one of
2022 .Ql s ,
2023 .Ql m
2024 or
2025 .Ql h
2026 to explicitly specify seconds, minutes or hours.
2027 If none is supplied,
2028 .Ql s
2029 is assumed.
2030 .Pp
2031 The
2032 .Fl e
2033 option exists only for backward compatibility with older scripts.
2034 .It Ic readonly Oo Fl p Oc Op Ar name ...
2035 Each specified
2036 .Ar name
2037 is marked as read only,
2038 so that it cannot be subsequently modified or unset.
2039 The shell allows the value of a variable to be set
2040 at the same time as it is marked read only
2041 by using the following form:
2042 .Pp
2043 .D1 Ic readonly Ar name Ns = Ns Ar value
2044 .Pp
2045 With no arguments the
2046 .Ic readonly
2047 command lists the names of all read only variables.
2048 If the
2049 .Fl p
2050 option is specified, the read-only variables are printed as
2051 .Dq Ic readonly Ar name Ns = Ns Ar value
2052 lines, suitable for re-input to the shell.
2053 .It Ic return Op Ar exitstatus
2054 See the
2055 .Sx Functions
2056 subsection.
2057 .It Ic set Oo Fl /+abCEefIimnpTuVvx Oc Oo Fl /+o Ar longname Oc Oo
2058 .Fl c Ar string Oc Op Fl - Ar arg ...
2059 The
2060 .Ic set
2061 command performs three different functions:
2062 .Bl -item
2063 .It
2064 With no arguments, it lists the values of all shell variables.
2065 .It
2066 If options are given,
2067 either in short form or using the long
2068 .Dq Fl /+o Ar longname
2069 form,
2070 it sets or clears the specified options as described in the section called
2071 .Sx Argument List Processing .
2072 .It
2073 If the
2074 .Dq Fl -
2075 option is specified,
2076 .Ic set
2077 will replace the shell's positional parameters with the subsequent
2078 arguments.
2079 If no arguments follow the
2080 .Dq Fl -
2081 option,
2082 all the positional parameters will be cleared,
2083 which is equivalent to executing the command
2084 .Dq Li "shift $#" .
2085 The
2086 .Dq Fl -
2087 flag may be omitted when specifying arguments to be used
2088 as positional replacement parameters.
2089 This is not recommended,
2090 because the first argument may begin with a dash
2091 .Pq Ql -
2092 or a plus
2093 .Pq Ql + ,
2094 which the
2095 .Ic set
2096 command will interpret as a request to enable or disable options.
2097 .El
2098 .It Ic setvar Ar variable value
2099 Assigns the specified
2100 .Ar value
2101 to the specified
2102 .Ar variable .
2103 The
2104 .Ic setvar
2105 command is intended to be used in functions that
2106 assign values to variables whose names are passed as parameters.
2107 In general it is better to write
2108 .Dq Ar variable Ns = Ns Ar value
2109 rather than using
2110 .Ic setvar .
2111 .It Ic shift Op Ar n
2112 Shift the positional parameters
2113 .Ar n
2114 times, or once if
2115 .Ar n
2116 is not specified.
2117 A shift sets the value of
2118 .Li $1
2119 to the value of
2120 .Li $2 ,
2121 the value of
2122 .Li $2
2123 to the value of
2124 .Li $3 ,
2125 and so on,
2126 decreasing the value of
2127 .Li $#
2128 by one.
2129 If there are zero positional parameters, shifting does not do anything.
2130 .It Ic test
2131 A built-in equivalent of
2132 .Xr test 1 .
2133 .It Ic times
2134 Print the amount of time spent executing the shell and its children.
2135 The first output line shows the user and system times for the shell
2136 itself, the second one contains the user and system times for the
2137 children.
2138 .It Ic trap Oo Ar action Oc Ar signal ...
2139 .It Ic trap Fl l
2140 Cause the shell to parse and execute
2141 .Ar action
2142 when any specified
2143 .Ar signal
2144 is received.
2145 The signals are specified by name or number.
2146 In addition, the pseudo-signal
2147 .Cm EXIT
2148 may be used to specify an
2149 .Ar action
2150 that is performed when the shell terminates.
2151 The
2152 .Ar action
2153 may be an empty string or a dash
2154 .Pq Ql - ;
2155 the former causes the specified signal to be ignored
2156 and the latter causes the default action to be taken.
2157 Omitting the
2158 .Ar action
2159 is another way to request the default action, for compatibility reasons this
2160 usage is not recommended though.
2161 When the shell forks off a subshell,
2162 it resets trapped (but not ignored) signals to the default action.
2163 The
2164 .Ic trap
2165 command has no effect on signals that were ignored on entry to the shell.
2166 .Pp
2167 Option
2168 .Fl l
2169 causes the
2170 .Ic trap
2171 command to display a list of valid signal names.
2172 .It Ic true
2173 A null command that returns a 0 (true) exit value.
2174 .It Ic type Op Ar name ...
2175 Interpret each
2176 .Ar name
2177 as a command and print the resolution of the command search.
2178 Possible resolutions are:
2179 shell keyword, alias, special shell builtin, shell builtin, command,
2180 tracked alias
2181 and not found.
2182 For aliases the alias expansion is printed;
2183 for commands and tracked aliases
2184 the complete pathname of the command is printed.
2185 .It Ic ulimit Oo Fl HSabcdflmnpstuvw Oc Op Ar limit
2186 Set or display resource limits (see
2187 .Xr getrlimit 2 ) .
2188 If
2189 .Ar limit
2190 is specified, the named resource will be set;
2191 otherwise the current resource value will be displayed.
2192 .Pp
2193 If
2194 .Fl H
2195 is specified, the hard limits will be set or displayed.
2196 While everybody is allowed to reduce a hard limit,
2197 only the superuser can increase it.
2198 The
2199 .Fl S
2200 option
2201 specifies the soft limits instead.
2202 When displaying limits,
2203 only one of
2204 .Fl S
2205 or
2206 .Fl H
2207 can be given.
2208 The default is to display the soft limits,
2209 and to set both the hard and the soft limits.
2210 .Pp
2211 Option
2212 .Fl a
2213 causes the
2214 .Ic ulimit
2215 command to display all resources.
2216 The parameter
2217 .Ar limit
2218 is not acceptable in this mode.
2219 .Pp
2220 The remaining options specify which resource value is to be
2221 displayed or modified.
2222 They are mutually exclusive.
2223 .Bl -tag -width indent
2224 .It Fl b Ar sbsize
2225 The maximum size of socket buffer usage, in bytes.
2226 .It Fl c Ar coredumpsize
2227 The maximal size of core dump files, in 512-byte blocks.
2228 .It Fl d Ar datasize
2229 The maximal size of the data segment of a process, in kilobytes.
2230 .It Fl f Ar filesize
2231 The maximal size of a file, in 512-byte blocks.
2232 .It Fl l Ar lockedmem
2233 The maximal size of memory that can be locked by a process, in
2234 kilobytes.
2235 .It Fl m Ar memoryuse
2236 The maximal resident set size of a process, in kilobytes.
2237 .It Fl n Ar nofiles
2238 The maximal number of descriptors that could be opened by a process.
2239 .It Fl p Ar pseudoterminals
2240 The maximal number of pseudo-terminals for this user ID.
2241 .It Fl s Ar stacksize
2242 The maximal size of the stack segment, in kilobytes.
2243 .It Fl t Ar time
2244 The maximal amount of CPU time to be used by each process, in seconds.
2245 .It Fl u Ar userproc
2246 The maximal number of simultaneous processes for this user ID.
2247 .It Fl v Ar virtualmem
2248 The maximal virtual size of a process, in kilobytes.
2249 .It Fl w Ar swapuse
2250 The maximum amount of swap space reserved or used for this user ID,
2251 in kilobytes.
2252 .El
2253 .It Ic umask Oo Fl S Oc Op Ar mask
2254 Set the file creation mask (see
2255 .Xr umask 2 )
2256 to the octal or symbolic (see
2257 .Xr chmod 1 )
2258 value specified by
2259 .Ar mask .
2260 If the argument is omitted, the current mask value is printed.
2261 If the
2262 .Fl S
2263 option is specified, the output is symbolic, otherwise the output is octal.
2264 .It Ic unalias Oo Fl a Oc Op Ar name ...
2265 The specified alias names are removed.
2266 If
2267 .Fl a
2268 is specified, all aliases are removed.
2269 .It Ic unset Oo Fl fv Oc Ar name ...
2270 The specified variables or functions are unset and unexported.
2271 If the
2272 .Fl v
2273 option is specified or no options are given, the
2274 .Ar name
2275 arguments are treated as variable names.
2276 If the
2277 .Fl f
2278 option is specified, the
2279 .Ar name
2280 arguments are treated as function names.
2281 .It Ic wait Op Ar job
2282 Wait for the specified
2283 .Ar job
2284 to complete and return the exit status of the last process in the
2285 .Ar job .
2286 If the argument is omitted, wait for all jobs to complete
2287 and return an exit status of zero.
2288 .El
2289 .Ss Commandline Editing
2290 When
2291 .Nm
2292 is being used interactively from a terminal, the current command
2293 and the command history
2294 (see
2295 .Ic fc
2296 in
2297 .Sx Built-in Commands )
2298 can be edited using
2299 .Nm vi Ns -mode
2300 command line editing.
2301 This mode uses commands similar
2302 to a subset of those described in the
2303 .Xr vi 1
2304 man page.
2305 The command
2306 .Dq Li "set -o vi"
2307 (or
2308 .Dq Li "set -V" )
2309 enables
2310 .Nm vi Ns -mode
2311 editing and places
2312 .Nm
2313 into
2314 .Nm vi
2315 insert mode.
2316 With
2317 .Nm vi Ns -mode
2318 enabled,
2319 .Nm
2320 can be switched between insert mode and command mode by typing
2321 .Aq ESC .
2322 Hitting
2323 .Aq return
2324 while in command mode will pass the line to the shell.
2325 .Pp
2326 Similarly, the
2327 .Dq Li "set -o emacs"
2328 (or
2329 .Dq Li "set -E" )
2330 command can be used to enable a subset of
2331 .Nm emacs Ns -style
2332 command line editing features.
2333 .Sh ENVIRONMENT
2334 The following environment variables affect the execution of
2335 .Nm :
2336 .Bl -tag -width ".Ev HISTSIZE"
2337 .It Ev CDPATH
2338 The search path used with the
2339 .Ic cd
2340 built-in.
2341 .It Ev EDITOR
2342 The fallback editor used with the
2343 .Ic fc
2344 built-in.
2345 If not set, the default editor is
2346 .Xr ed 1 .
2347 .It Ev FCEDIT
2348 The default editor used with the
2349 .Ic fc
2350 built-in.
2351 .It Ev HISTSIZE
2352 The number of previous commands that are accessible.
2353 .It Ev HOME
2354 The starting directory of
2355 .Nm .
2356 .It Ev IFS
2357 Input Field Separators.
2358 This is normally set to
2359 .Aq space ,
2360 .Aq tab ,
2361 and
2362 .Aq newline .
2363 See the
2364 .Sx White Space Splitting
2365 section for more details.
2366 .It Ev MAIL
2367 The name of a mail file, that will be checked for the arrival of new
2368 mail.
2369 Overridden by
2370 .Ev MAILPATH .
2371 .It Ev MAILPATH
2372 A colon
2373 .Pq Ql \&:
2374 separated list of file names, for the shell to check for incoming
2375 mail.
2376 This environment setting overrides the
2377 .Ev MAIL
2378 setting.
2379 There is a maximum of 10 mailboxes that can be monitored at once.
2380 .It Ev PATH
2381 The default search path for executables.
2382 See the
2383 .Sx Path Search
2384 section for details.
2385 .It Ev PS1
2386 The primary prompt string, which defaults to
2387 .Dq Li "$ " ,
2388 unless you are the superuser, in which case it defaults to
2389 .Dq Li "# " .
2390 .It Ev PS2
2391 The secondary prompt string, which defaults to
2392 .Dq Li "> " .
2393 .It Ev PS4
2394 The prefix for the trace output (if
2395 .Fl x
2396 is active).
2397 The default is
2398 .Dq Li "+ " .
2399 .It Ev TERM
2400 The default terminal setting for the shell.
2401 This is inherited by children of the shell, and is used in the history
2402 editing modes.
2403 .El
2404 .Sh EXIT STATUS
2405 Errors that are detected by the shell, such as a syntax error, will
2406 cause the shell to exit with a non-zero exit status.
2407 If the shell is not an interactive shell, the execution of the shell
2408 file will be aborted.
2409 Otherwise the shell will return the exit status of the last command
2410 executed, or if the
2411 .Ic exit
2412 builtin is used with a numeric argument, it
2413 will return the argument.
2414 .Sh SEE ALSO
2415 .Xr builtin 1 ,
2416 .Xr chsh 1 ,
2417 .Xr echo 1 ,
2418 .Xr ed 1 ,
2419 .Xr emacs 1 ,
2420 .Xr pwd 1 ,
2421 .Xr test 1 ,
2422 .Xr vi 1 ,
2423 .Xr execve 2 ,
2424 .Xr getrlimit 2 ,
2425 .Xr umask 2 ,
2426 .Xr editrc 5
2427 .Sh HISTORY
2428 A
2429 .Nm
2430 command, the Thompson shell, appeared in
2431 .At v1 .
2432 It was superseded in
2433 .At v7
2434 by the Bourne shell, which inherited the name
2435 .Nm .
2436 .Pp
2437 This version of
2438 .Nm
2439 was rewritten in 1989 under the
2440 .Bx
2441 license after the Bourne shell from
2442 .At V.4 .
2443 .Sh AUTHORS
2444 This version of
2445 .Nm
2446 was originally written by
2447 .An Kenneth Almquist .
2448 .Sh BUGS
2449 The
2450 .Nm
2451 utility does not recognize multibyte characters.