]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - bin/sh/sh.1
MFC r208505: sh(1): Rework documentation of shell variables.
[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 .Va PATH
683 variable
684 in turn for the command.
685 The value of the
686 .Va 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 Special Variables
1130 The following variables are set by the shell or
1131 have special meaning to it:
1132 .Bl -tag -width ".Va HISTSIZE"
1133 .It Va CDPATH
1134 The search path used with the
1135 .Ic cd
1136 built-in.
1137 .It Va EDITOR
1138 The fallback editor used with the
1139 .Ic fc
1140 built-in.
1141 If not set, the default editor is
1142 .Xr ed 1 .
1143 .It Va FCEDIT
1144 The default editor used with the
1145 .Ic fc
1146 built-in.
1147 .It Va HISTSIZE
1148 The number of previous commands that are accessible.
1149 .It Va HOME
1150 The user's home directory,
1151 used in tilde expansion and as a default directory for the
1152 .Ic cd
1153 built-in.
1154 .It Va IFS
1155 Input Field Separators.
1156 This is normally set to
1157 .Aq space ,
1158 .Aq tab ,
1159 and
1160 .Aq newline .
1161 See the
1162 .Sx White Space Splitting
1163 section for more details.
1164 .It Va LINENO
1165 The current line number in the script or function.
1166 .It Va MAIL
1167 The name of a mail file, that will be checked for the arrival of new
1168 mail.
1169 Overridden by
1170 .Va MAILPATH .
1171 .It Va MAILPATH
1172 A colon
1173 .Pq Ql \&:
1174 separated list of file names, for the shell to check for incoming
1175 mail.
1176 This variable overrides the
1177 .Va MAIL
1178 setting.
1179 There is a maximum of 10 mailboxes that can be monitored at once.
1180 .It Va PATH
1181 The default search path for executables.
1182 See the
1183 .Sx Path Search
1184 section for details.
1185 .It Va PPID
1186 The parent process ID of the invoked shell.
1187 This is set at startup
1188 unless this variable is in the environment.
1189 A later change of parent process ID is not reflected.
1190 A subshell retains the same value of
1191 .Va PPID .
1192 .It Va PS1
1193 The primary prompt string, which defaults to
1194 .Dq Li "$ " ,
1195 unless you are the superuser, in which case it defaults to
1196 .Dq Li "# " .
1197 .It Va PS2
1198 The secondary prompt string, which defaults to
1199 .Dq Li "> " .
1200 .It Va PS4
1201 The prefix for the trace output (if
1202 .Fl x
1203 is active).
1204 The default is
1205 .Dq Li "+ " .
1206 .El
1207 .Ss Word Expansions
1208 This clause describes the various expansions that are
1209 performed on words.
1210 Not all expansions are performed on
1211 every word, as explained later.
1212 .Pp
1213 Tilde expansions, parameter expansions, command substitutions,
1214 arithmetic expansions, and quote removals that occur within
1215 a single word expand to a single field.
1216 It is only field
1217 splitting or pathname expansion that can create multiple
1218 fields from a single word.
1219 The single exception to this rule is
1220 the expansion of the special parameter
1221 .Va @
1222 within double-quotes,
1223 as was described above.
1224 .Pp
1225 The order of word expansion is:
1226 .Bl -enum
1227 .It
1228 Tilde Expansion, Parameter Expansion, Command Substitution,
1229 Arithmetic Expansion (these all occur at the same time).
1230 .It
1231 Field Splitting is performed on fields generated by step (1)
1232 unless the
1233 .Va IFS
1234 variable is null.
1235 .It
1236 Pathname Expansion (unless the
1237 .Fl f
1238 option is in effect).
1239 .It
1240 Quote Removal.
1241 .El
1242 .Pp
1243 The
1244 .Ql $
1245 character is used to introduce parameter expansion, command
1246 substitution, or arithmetic expansion.
1247 .Ss Tilde Expansion (substituting a user's home directory)
1248 A word beginning with an unquoted tilde character
1249 .Pq Ql ~
1250 is
1251 subjected to tilde expansion.
1252 All the characters up to a slash
1253 .Pq Ql /
1254 or the end of the word are treated as a username
1255 and are replaced with the user's home directory.
1256 If the
1257 username is missing (as in
1258 .Pa ~/foobar ) ,
1259 the tilde is replaced with the value of the
1260 .Va HOME
1261 variable (the current user's home directory).
1262 .Ss Parameter Expansion
1263 The format for parameter expansion is as follows:
1264 .Pp
1265 .D1 Li ${ Ns Ar expression Ns Li }
1266 .Pp
1267 where
1268 .Ar expression
1269 consists of all characters until the matching
1270 .Ql } .
1271 Any
1272 .Ql }
1273 escaped by a backslash or within a quoted string, and characters in
1274 embedded arithmetic expansions, command substitutions, and variable
1275 expansions, are not examined in determining the matching
1276 .Ql } .
1277 .Pp
1278 The simplest form for parameter expansion is:
1279 .Pp
1280 .D1 Li ${ Ns Ar parameter Ns Li }
1281 .Pp
1282 The value, if any, of
1283 .Ar parameter
1284 is substituted.
1285 .Pp
1286 The parameter name or symbol can be enclosed in braces, which are
1287 optional except for positional parameters with more than one digit or
1288 when parameter is followed by a character that could be interpreted as
1289 part of the name.
1290 If a parameter expansion occurs inside double-quotes:
1291 .Bl -enum
1292 .It
1293 Pathname expansion is not performed on the results of the
1294 expansion.
1295 .It
1296 Field splitting is not performed on the results of the
1297 expansion, with the exception of the special parameter
1298 .Va @ .
1299 .El
1300 .Pp
1301 In addition, a parameter expansion can be modified by using one of the
1302 following formats.
1303 .Bl -tag -width indent
1304 .It Li ${ Ns Ar parameter Ns Li :- Ns Ar word Ns Li }
1305 Use Default Values.
1306 If
1307 .Ar parameter
1308 is unset or null, the expansion of
1309 .Ar word
1310 is substituted; otherwise, the value of
1311 .Ar parameter
1312 is substituted.
1313 .It Li ${ Ns Ar parameter Ns Li := Ns Ar word Ns Li }
1314 Assign Default Values.
1315 If
1316 .Ar parameter
1317 is unset or null, the expansion of
1318 .Ar word
1319 is assigned to
1320 .Ar parameter .
1321 In all cases, the
1322 final value of
1323 .Ar parameter
1324 is substituted.
1325 Quoting inside
1326 .Ar word
1327 does not prevent field splitting or pathname expansion.
1328 Only variables, not positional
1329 parameters or special parameters, can be
1330 assigned in this way.
1331 .It Li ${ Ns Ar parameter Ns Li :? Ns Oo Ar word Oc Ns Li }
1332 Indicate Error if Null or Unset.
1333 If
1334 .Ar parameter
1335 is unset or null, the expansion of
1336 .Ar word
1337 (or a message indicating it is unset if
1338 .Ar word
1339 is omitted) is written to standard
1340 error and the shell exits with a nonzero
1341 exit status.
1342 Otherwise, the value of
1343 .Ar parameter
1344 is substituted.
1345 An
1346 interactive shell need not exit.
1347 .It Li ${ Ns Ar parameter Ns Li :+ Ns Ar word Ns Li }
1348 Use Alternate Value.
1349 If
1350 .Ar parameter
1351 is unset or null, null is substituted;
1352 otherwise, the expansion of
1353 .Ar word
1354 is substituted.
1355 .El
1356 .Pp
1357 In the parameter expansions shown previously, use of the colon in the
1358 format results in a test for a parameter that is unset or null; omission
1359 of the colon results in a test for a parameter that is only unset.
1360 .Bl -tag -width indent
1361 .It Li ${# Ns Ar parameter Ns Li }
1362 String Length.
1363 The length in characters of
1364 the value of
1365 .Ar parameter .
1366 .El
1367 .Pp
1368 The following four varieties of parameter expansion provide for substring
1369 processing.
1370 In each case, pattern matching notation
1371 (see
1372 .Sx Shell Patterns ) ,
1373 rather than regular expression notation,
1374 is used to evaluate the patterns.
1375 If parameter is one of the special parameters
1376 .Va *
1377 or
1378 .Va @ ,
1379 the result of the expansion is unspecified.
1380 Enclosing the full parameter expansion string in double-quotes does not
1381 cause the following four varieties of pattern characters to be quoted,
1382 whereas quoting characters within the braces has this effect.
1383 .Bl -tag -width indent
1384 .It Li ${ Ns Ar parameter Ns Li % Ns Ar word Ns Li }
1385 Remove Smallest Suffix Pattern.
1386 The
1387 .Ar word
1388 is expanded to produce a pattern.
1389 The
1390 parameter expansion then results in
1391 .Ar parameter ,
1392 with the smallest portion of the
1393 suffix matched by the pattern deleted.
1394 .It Li ${ Ns Ar parameter Ns Li %% Ns Ar word Ns Li }
1395 Remove Largest Suffix Pattern.
1396 The
1397 .Ar word
1398 is expanded to produce a pattern.
1399 The
1400 parameter expansion then results in
1401 .Ar parameter ,
1402 with the largest portion of the
1403 suffix matched by the pattern deleted.
1404 .It Li ${ Ns Ar parameter Ns Li # Ns Ar word Ns Li }
1405 Remove Smallest Prefix Pattern.
1406 The
1407 .Ar word
1408 is expanded to produce a pattern.
1409 The
1410 parameter expansion then results in
1411 .Ar parameter ,
1412 with the smallest portion of the
1413 prefix matched by the pattern deleted.
1414 .It Li ${ Ns Ar parameter Ns Li ## Ns Ar word Ns Li }
1415 Remove Largest Prefix Pattern.
1416 The
1417 .Ar word
1418 is expanded to produce a pattern.
1419 The
1420 parameter expansion then results in
1421 .Ar parameter ,
1422 with the largest portion of the
1423 prefix matched by the pattern deleted.
1424 .El
1425 .Ss Command Substitution
1426 Command substitution allows the output of a command to be substituted in
1427 place of the command name itself.
1428 Command substitution occurs when
1429 the command is enclosed as follows:
1430 .Pp
1431 .D1 Li $( Ns Ar command Ns Li )\&
1432 .Pp
1433 or the backquoted version:
1434 .Pp
1435 .D1 Li ` Ns Ar command Ns Li `
1436 .Pp
1437 The shell expands the command substitution by executing command in a
1438 subshell environment and replacing the command substitution
1439 with the standard output of the command,
1440 removing sequences of one or more newlines at the end of the substitution.
1441 Embedded newlines before the end of the output are not removed;
1442 however, during field splitting, they may be translated into spaces
1443 depending on the value of
1444 .Va IFS
1445 and the quoting that is in effect.
1446 .Ss Arithmetic Expansion
1447 Arithmetic expansion provides a mechanism for evaluating an arithmetic
1448 expression and substituting its value.
1449 The format for arithmetic expansion is as follows:
1450 .Pp
1451 .D1 Li $(( Ns Ar expression Ns Li ))
1452 .Pp
1453 The
1454 .Ar expression
1455 is treated as if it were in double-quotes, except
1456 that a double-quote inside the expression is not treated specially.
1457 The
1458 shell expands all tokens in the
1459 .Ar expression
1460 for parameter expansion,
1461 command substitution,
1462 arithmetic expansion
1463 and quote removal.
1464 .Pp
1465 The allowed expressions are a subset of C expressions,
1466 summarized below.
1467 .Bl -tag -width "Variables" -offset indent
1468 .It Values
1469 All values are of type
1470 .Ft intmax_t .
1471 .It Constants
1472 Decimal, octal (starting with
1473 .Li 0 )
1474 and hexadecimal (starting with 
1475 .Li 0x )
1476 integer constants.
1477 .It Variables
1478 Shell variables can be read and written
1479 and contain integer constants.
1480 .It Unary operators
1481 .Li "! ~ + -"
1482 .It Binary operators
1483 .Li "* / % + - << >> < <= > >= == != & ^ | && ||"
1484 .It Assignment operators
1485 .Li "= += -= *= /= %= <<= >>= &= ^= |="
1486 .It Short-circuit evaluation
1487 The
1488 .Li &&
1489 and
1490 .Li ||
1491 operators always evaluate both sides.
1492 This is a bug.
1493 .El
1494 .Pp
1495 The result of the expression is substituted in decimal.
1496 .Ss White Space Splitting (Field Splitting)
1497 After parameter expansion, command substitution, and
1498 arithmetic expansion the shell scans the results of
1499 expansions and substitutions that did not occur in double-quotes for
1500 field splitting and multiple fields can result.
1501 .Pp
1502 The shell treats each character of the
1503 .Va IFS
1504 variable as a delimiter and uses
1505 the delimiters to split the results of parameter expansion and command
1506 substitution into fields.
1507 .Ss Pathname Expansion (File Name Generation)
1508 Unless the
1509 .Fl f
1510 option is set,
1511 file name generation is performed
1512 after word splitting is complete.
1513 Each word is
1514 viewed as a series of patterns, separated by slashes.
1515 The
1516 process of expansion replaces the word with the names of
1517 all existing files whose names can be formed by replacing
1518 each pattern with a string that matches the specified pattern.
1519 There are two restrictions on this: first, a pattern cannot match
1520 a string containing a slash, and second,
1521 a pattern cannot match a string starting with a period
1522 unless the first character of the pattern is a period.
1523 The next section describes the patterns used for both
1524 Pathname Expansion and the
1525 .Ic case
1526 command.
1527 .Ss Shell Patterns
1528 A pattern consists of normal characters, which match themselves,
1529 and meta-characters.
1530 The meta-characters are
1531 .Ql \&! ,
1532 .Ql * ,
1533 .Ql \&? ,
1534 and
1535 .Ql \&[ .
1536 These characters lose their special meanings if they are quoted.
1537 When command or variable substitution is performed and the dollar sign
1538 or back quotes are not double-quoted, the value of the
1539 variable or the output of the command is scanned for these
1540 characters and they are turned into meta-characters.
1541 .Pp
1542 An asterisk
1543 .Pq Ql *
1544 matches any string of characters.
1545 A question mark
1546 .Pq Ql \&?
1547 matches any single character.
1548 A left bracket
1549 .Pq Ql \&[
1550 introduces a character class.
1551 The end of the character class is indicated by a
1552 .Ql \&] ;
1553 if the
1554 .Ql \&]
1555 is missing then the
1556 .Ql \&[
1557 matches a
1558 .Ql \&[
1559 rather than introducing a character class.
1560 A character class matches any of the characters between the square brackets.
1561 A range of characters may be specified using a minus sign.
1562 The character class may be complemented by making an exclamation point
1563 .Pq Ql !\&
1564 the first character of the character class.
1565 .Pp
1566 To include a
1567 .Ql \&]
1568 in a character class, make it the first character listed
1569 (after the
1570 .Ql \&! ,
1571 if any).
1572 To include a
1573 .Ql - ,
1574 make it the first or last character listed.
1575 .Ss Built-in Commands
1576 This section lists the commands which
1577 are built-in because they need to perform some operation
1578 that cannot be performed by a separate process.
1579 In addition to
1580 these, built-in versions of essential utilities
1581 are provided for efficiency.
1582 .Bl -tag -width indent
1583 .It Ic \&:
1584 A null command that returns a 0 (true) exit value.
1585 .It Ic \&. Ar file
1586 The commands in the specified file are read and executed by the shell.
1587 The
1588 .Ic return
1589 command may be used to return to the
1590 .Ic \&.
1591 command's caller.
1592 If
1593 .Ar file
1594 contains any
1595 .Ql /
1596 characters, it is used as is.
1597 Otherwise, the shell searches the
1598 .Va PATH
1599 for the file.
1600 If it is not found in the
1601 .Va PATH ,
1602 it is sought in the current working directory.
1603 .It Ic \&[
1604 A built-in equivalent of
1605 .Xr test 1 .
1606 .It Ic alias Oo Ar name Ns Oo = Ns Ar string Oc ... Oc
1607 If
1608 .Ar name Ns = Ns Ar string
1609 is specified, the shell defines the alias
1610 .Ar name
1611 with value
1612 .Ar string .
1613 If just
1614 .Ar name
1615 is specified, the value of the alias
1616 .Ar name
1617 is printed.
1618 With no arguments, the
1619 .Ic alias
1620 built-in command prints the names and values of all defined aliases
1621 (see
1622 .Ic unalias ) .
1623 Alias values are written with appropriate quoting so that they are
1624 suitable for re-input to the shell.
1625 Also see the
1626 .Sx Aliases
1627 subsection.
1628 .It Ic bg Op Ar job ...
1629 Continue the specified jobs
1630 (or the current job if no jobs are given)
1631 in the background.
1632 .It Ic builtin Ar cmd Op Ar arg ...
1633 Execute the specified built-in command,
1634 .Ar cmd .
1635 This is useful when the user wishes to override a shell function
1636 with the same name as a built-in command.
1637 .It Ic bind Oo Fl aeklrsv Oc Oo Ar key Oo Ar command Oc Oc
1638 List or alter key bindings for the line editor.
1639 This command is documented in
1640 .Xr editrc 5 .
1641 .It Ic cd Oo Fl L | P Oc Op Ar directory
1642 Switch to the specified
1643 .Ar directory ,
1644 or to the directory specified in the
1645 .Va HOME
1646 environment variable if no
1647 .Ar directory
1648 is specified.
1649 If
1650 .Ar directory
1651 does not begin with
1652 .Pa / , \&. ,
1653 or
1654 .Pa .. ,
1655 then the directories listed in the
1656 .Va CDPATH
1657 variable will be
1658 searched for the specified
1659 .Ar directory .
1660 If
1661 .Va CDPATH
1662 is unset, the current directory is searched.
1663 The format of
1664 .Va CDPATH
1665 is the same as that of
1666 .Va PATH .
1667 In an interactive shell,
1668 the
1669 .Ic cd
1670 command will print out the name of the directory
1671 that it actually switched to
1672 if this is different from the name that the user gave.
1673 These may be different either because the
1674 .Va CDPATH
1675 mechanism was used or because a symbolic link was crossed.
1676 .Pp
1677 If the
1678 .Fl P
1679 option is specified,
1680 .Pa ..
1681 is handled physically and symbolic links are resolved before
1682 .Pa ..
1683 components are processed.
1684 If the
1685 .Fl L
1686 option is specified,
1687 .Pa ..
1688 is handled logically.
1689 This is the default.
1690 .It Ic chdir
1691 A synonym for the
1692 .Ic cd
1693 built-in command.
1694 .It Ic command Oo Fl p Oc Op Ar utility Op Ar argument ...
1695 .It Ic command Oo Fl v | V Oc Op Ar utility
1696 The first form of invocation executes the specified
1697 .Ar utility
1698 as a simple command (see the
1699 .Sx Simple Commands
1700 section).
1701 .Pp
1702 If the
1703 .Fl p
1704 option is specified, the command search is performed using a
1705 default value of
1706 .Va PATH
1707 that is guaranteed to find all of the standard utilities.
1708 .Pp
1709 If the
1710 .Fl v
1711 option is specified,
1712 .Ar utility
1713 is not executed but a description of its interpretation by the shell is
1714 printed.
1715 For ordinary commands the output is the path name; for shell built-in
1716 commands, shell functions and keywords only the name is written.
1717 Aliases are printed as
1718 .Dq Ic alias Ar name Ns = Ns Ar value .
1719 .Pp
1720 The
1721 .Fl V
1722 option is identical to
1723 .Fl v
1724 except for the output.
1725 It prints
1726 .Dq Ar utility Ic is Ar description
1727 where
1728 .Ar description
1729 is either
1730 the path name to
1731 .Ar utility ,
1732 a special shell builtin,
1733 a shell builtin,
1734 a shell function,
1735 a shell keyword
1736 or
1737 an alias for
1738 .Ar value .
1739 .It Ic echo Oo Fl e | n Oc Op Ar string ...
1740 Print a space-separated list of the arguments to the standard output
1741 and append a newline character.
1742 .Bl -tag -width indent
1743 .It Fl n
1744 Suppress the output of the trailing newline.
1745 .It Fl e
1746 Process C-style backslash escape sequences.
1747 The
1748 .Ic echo
1749 command understands the following character escapes:
1750 .Bl -tag -width indent
1751 .It \ea
1752 Alert (ring the terminal bell)
1753 .It \eb
1754 Backspace
1755 .It \ec
1756 Suppress the trailing newline (this has the side-effect of truncating the
1757 line if it is not the last character)
1758 .It \ee
1759 The ESC character
1760 .Tn ( ASCII
1761 0x1b)
1762 .It \ef
1763 Formfeed
1764 .It \en
1765 Newline
1766 .It \er
1767 Carriage return
1768 .It \et
1769 Horizontal tab
1770 .It \ev
1771 Vertical tab
1772 .It \e\e
1773 Literal backslash
1774 .It \e0nnn
1775 (Zero) The character whose octal value is
1776 .Ar nnn
1777 .El
1778 .Pp
1779 If
1780 .Ar string
1781 is not enclosed in quotes then the backslash itself must be escaped
1782 with a backslash to protect it from the shell.
1783 For example
1784 .Bd -literal -offset indent
1785 $ echo -e "a\evb"
1786 a
1787  b
1788 $ echo -e a\e\evb
1789 a
1790  b
1791 $ echo -e "a\e\eb"
1792 a\eb
1793 $ echo -e a\e\e\e\eb
1794 a\eb
1795 .Ed
1796 .El
1797 .Pp
1798 Only one of the
1799 .Fl e
1800 and
1801 .Fl n
1802 options may be specified.
1803 .It Ic eval Ar string ...
1804 Concatenate all the arguments with spaces.
1805 Then re-parse and execute the command.
1806 .It Ic exec Op Ar command Op arg ...
1807 Unless
1808 .Ar command
1809 is omitted,
1810 the shell process is replaced with the specified program
1811 (which must be a real program, not a shell built-in command or function).
1812 Any redirections on the
1813 .Ic exec
1814 command are marked as permanent,
1815 so that they are not undone when the
1816 .Ic exec
1817 command finishes.
1818 .It Ic exit Op Ar exitstatus
1819 Terminate the shell process.
1820 If
1821 .Ar exitstatus
1822 is given
1823 it is used as the exit status of the shell;
1824 otherwise the exit status of the preceding command is used.
1825 The exit status should be an integer between 0 and 255.
1826 .It Ic export Ar name ...
1827 .It Ic export Op Fl p
1828 The specified names are exported so that they will
1829 appear in the environment of subsequent commands.
1830 The only way to un-export a variable is to
1831 .Ic unset
1832 it.
1833 The shell allows the value of a variable to be set
1834 at the same time as it is exported by writing
1835 .Pp
1836 .D1 Ic export Ar name Ns = Ns Ar value
1837 .Pp
1838 With no arguments the
1839 .Ic export
1840 command lists the names
1841 of all exported variables.
1842 If the
1843 .Fl p
1844 option is specified, the exported variables are printed as
1845 .Dq Ic export Ar name Ns = Ns Ar value
1846 lines, suitable for re-input to the shell.
1847 .It Ic false
1848 A null command that returns a non-zero (false) exit value.
1849 .It Ic fc Oo Fl e Ar editor Oc Op Ar first Op Ar last
1850 .It Ic fc Fl l Oo Fl nr Oc Op Ar first Op Ar last
1851 .It Ic fc Fl s Oo Ar old Ns = Ns Ar new Oc Op Ar first
1852 The
1853 .Ic fc
1854 built-in command lists, or edits and re-executes,
1855 commands previously entered to an interactive shell.
1856 .Bl -tag -width indent
1857 .It Fl e Ar editor
1858 Use the editor named by
1859 .Ar editor
1860 to edit the commands.
1861 The
1862 .Ar editor
1863 string is a command name,
1864 subject to search via the
1865 .Va PATH
1866 variable.
1867 The value in the
1868 .Va FCEDIT
1869 variable is used as a default when
1870 .Fl e
1871 is not specified.
1872 If
1873 .Va FCEDIT
1874 is null or unset, the value of the
1875 .Va EDITOR
1876 variable is used.
1877 If
1878 .Va EDITOR
1879 is null or unset,
1880 .Xr ed 1
1881 is used as the editor.
1882 .It Fl l No (ell)
1883 List the commands rather than invoking
1884 an editor on them.
1885 The commands are written in the
1886 sequence indicated by the
1887 .Ar first
1888 and
1889 .Ar last
1890 operands, as affected by
1891 .Fl r ,
1892 with each command preceded by the command number.
1893 .It Fl n
1894 Suppress command numbers when listing with
1895 .Fl l .
1896 .It Fl r
1897 Reverse the order of the commands listed
1898 (with
1899 .Fl l )
1900 or edited
1901 (with neither
1902 .Fl l
1903 nor
1904 .Fl s ) .
1905 .It Fl s
1906 Re-execute the command without invoking an editor.
1907 .It Ar first
1908 .It Ar last
1909 Select the commands to list or edit.
1910 The number of previous commands that can be accessed
1911 are determined by the value of the
1912 .Va HISTSIZE
1913 variable.
1914 The value of
1915 .Ar first
1916 or
1917 .Ar last
1918 or both are one of the following:
1919 .Bl -tag -width indent
1920 .It Oo Cm + Oc Ns Ar num
1921 A positive number representing a command number;
1922 command numbers can be displayed with the
1923 .Fl l
1924 option.
1925 .It Fl Ar num
1926 A negative decimal number representing the
1927 command that was executed
1928 .Ar num
1929 of
1930 commands previously.
1931 For example, \-1 is the immediately previous command.
1932 .It Ar string
1933 A string indicating the most recently entered command
1934 that begins with that string.
1935 If the
1936 .Ar old Ns = Ns Ar new
1937 operand is not also specified with
1938 .Fl s ,
1939 the string form of the first operand cannot contain an embedded equal sign.
1940 .El
1941 .El
1942 .Pp
1943 The following variables affect the execution of
1944 .Ic fc :
1945 .Bl -tag -width ".Va HISTSIZE"
1946 .It Va FCEDIT
1947 Name of the editor to use for history editing.
1948 .It Va HISTSIZE
1949 The number of previous commands that are accessible.
1950 .El
1951 .It Ic fg Op Ar job
1952 Move the specified
1953 .Ar job
1954 or the current job to the foreground.
1955 .It Ic getopts Ar optstring var
1956 The
1957 .Tn POSIX
1958 .Ic getopts
1959 command.
1960 The
1961 .Ic getopts
1962 command deprecates the older
1963 .Xr getopt 1
1964 command.
1965 The first argument should be a series of letters, each possibly
1966 followed by a colon which indicates that the option takes an argument.
1967 The specified variable is set to the parsed option.
1968 The index of
1969 the next argument is placed into the shell variable
1970 .Va OPTIND .
1971 If an option takes an argument, it is placed into the shell variable
1972 .Va OPTARG .
1973 If an invalid option is encountered,
1974 .Ar var
1975 is set to
1976 .Ql \&? .
1977 It returns a false value (1) when it encounters the end of the options.
1978 .It Ic hash Oo Fl rv Oc Op Ar command ...
1979 The shell maintains a hash table which remembers the locations of commands.
1980 With no arguments whatsoever, the
1981 .Ic hash
1982 command prints out the contents of this table.
1983 Entries which have not been looked at since the last
1984 .Ic cd
1985 command are marked with an asterisk;
1986 it is possible for these entries to be invalid.
1987 .Pp
1988 With arguments, the
1989 .Ic hash
1990 command removes each specified
1991 .Ar command
1992 from the hash table (unless they are functions) and then locates it.
1993 With the
1994 .Fl v
1995 option,
1996 .Ic hash
1997 prints the locations of the commands as it finds them.
1998 The
1999 .Fl r
2000 option causes the
2001 .Ic hash
2002 command to delete all the entries in the hash table except for functions.
2003 .It Ic jobid Op Ar job
2004 Print the process IDs of the processes in the specified
2005 .Ar job .
2006 If the
2007 .Ar job
2008 argument is omitted, use the current job.
2009 .It Ic jobs Oo Fl lps Oc Op Ar job ...
2010 Print information about the specified jobs, or all jobs if no
2011 .Ar job
2012 argument is given.
2013 The information printed includes job ID, status and command name.
2014 .Pp
2015 If the
2016 .Fl l
2017 option is specified, the PID of each job is also printed.
2018 If the
2019 .Fl p
2020 option is specified, only the process IDs for the process group leaders
2021 are printed, one per line.
2022 If the
2023 .Fl s
2024 option is specified, only the PIDs of the job commands are printed, one per
2025 line.
2026 .It Ic local Oo Ar variable ... Oc Op Fl
2027 See the
2028 .Sx Functions
2029 subsection.
2030 .It Ic pwd Op Fl L | P
2031 Print the path of the current directory.
2032 The built-in command may
2033 differ from the program of the same name because the
2034 built-in command remembers what the current directory
2035 is rather than recomputing it each time.
2036 This makes
2037 it faster.
2038 However, if the current directory is
2039 renamed,
2040 the built-in version of
2041 .Xr pwd 1
2042 will continue to print the old name for the directory.
2043 .Pp
2044 If the
2045 .Fl P
2046 option is specified, symbolic links are resolved.
2047 If the
2048 .Fl L
2049 option is specified, the shell's notion of the current directory
2050 is printed (symbolic links are not resolved).
2051 This is the default.
2052 .It Ic read Oo Fl p Ar prompt Oc Oo
2053 .Fl t Ar timeout Oc Oo Fl er Oc Ar variable ...
2054 The
2055 .Ar prompt
2056 is printed if the
2057 .Fl p
2058 option is specified
2059 and the standard input is a terminal.
2060 Then a line is
2061 read from the standard input.
2062 The trailing newline
2063 is deleted from the line and the line is split as
2064 described in the section on
2065 .Sx White Space Splitting (Field Splitting)
2066 above, and
2067 the pieces are assigned to the variables in order.
2068 If there are more pieces than variables, the remaining
2069 pieces (along with the characters in
2070 .Va IFS
2071 that separated them)
2072 are assigned to the last variable.
2073 If there are more variables than pieces, the remaining
2074 variables are assigned the null string.
2075 .Pp
2076 Backslashes are treated specially, unless the
2077 .Fl r
2078 option is
2079 specified.
2080 If a backslash is followed by
2081 a newline, the backslash and the newline will be
2082 deleted.
2083 If a backslash is followed by any other
2084 character, the backslash will be deleted and the following
2085 character will be treated as though it were not in
2086 .Va IFS ,
2087 even if it is.
2088 .Pp
2089 If the
2090 .Fl t
2091 option is specified and the
2092 .Ar timeout
2093 elapses before a complete line of input is supplied,
2094 the
2095 .Ic read
2096 command will return an exit status of 1 without assigning any values.
2097 The
2098 .Ar timeout
2099 value may optionally be followed by one of
2100 .Ql s ,
2101 .Ql m
2102 or
2103 .Ql h
2104 to explicitly specify seconds, minutes or hours.
2105 If none is supplied,
2106 .Ql s
2107 is assumed.
2108 .Pp
2109 The
2110 .Fl e
2111 option exists only for backward compatibility with older scripts.
2112 .It Ic readonly Oo Fl p Oc Op Ar name ...
2113 Each specified
2114 .Ar name
2115 is marked as read only,
2116 so that it cannot be subsequently modified or unset.
2117 The shell allows the value of a variable to be set
2118 at the same time as it is marked read only
2119 by using the following form:
2120 .Pp
2121 .D1 Ic readonly Ar name Ns = Ns Ar value
2122 .Pp
2123 With no arguments the
2124 .Ic readonly
2125 command lists the names of all read only variables.
2126 If the
2127 .Fl p
2128 option is specified, the read-only variables are printed as
2129 .Dq Ic readonly Ar name Ns = Ns Ar value
2130 lines, suitable for re-input to the shell.
2131 .It Ic return Op Ar exitstatus
2132 See the
2133 .Sx Functions
2134 subsection.
2135 .It Ic set Oo Fl /+abCEefIimnpTuVvx Oc Oo Fl /+o Ar longname Oc Oo
2136 .Fl c Ar string Oc Op Fl - Ar arg ...
2137 The
2138 .Ic set
2139 command performs three different functions:
2140 .Bl -item
2141 .It
2142 With no arguments, it lists the values of all shell variables.
2143 .It
2144 If options are given,
2145 either in short form or using the long
2146 .Dq Fl /+o Ar longname
2147 form,
2148 it sets or clears the specified options as described in the section called
2149 .Sx Argument List Processing .
2150 .It
2151 If the
2152 .Dq Fl -
2153 option is specified,
2154 .Ic set
2155 will replace the shell's positional parameters with the subsequent
2156 arguments.
2157 If no arguments follow the
2158 .Dq Fl -
2159 option,
2160 all the positional parameters will be cleared,
2161 which is equivalent to executing the command
2162 .Dq Li "shift $#" .
2163 The
2164 .Dq Fl -
2165 flag may be omitted when specifying arguments to be used
2166 as positional replacement parameters.
2167 This is not recommended,
2168 because the first argument may begin with a dash
2169 .Pq Ql -
2170 or a plus
2171 .Pq Ql + ,
2172 which the
2173 .Ic set
2174 command will interpret as a request to enable or disable options.
2175 .El
2176 .It Ic setvar Ar variable value
2177 Assigns the specified
2178 .Ar value
2179 to the specified
2180 .Ar variable .
2181 The
2182 .Ic setvar
2183 command is intended to be used in functions that
2184 assign values to variables whose names are passed as parameters.
2185 In general it is better to write
2186 .Dq Ar variable Ns = Ns Ar value
2187 rather than using
2188 .Ic setvar .
2189 .It Ic shift Op Ar n
2190 Shift the positional parameters
2191 .Ar n
2192 times, or once if
2193 .Ar n
2194 is not specified.
2195 A shift sets the value of
2196 .Li $1
2197 to the value of
2198 .Li $2 ,
2199 the value of
2200 .Li $2
2201 to the value of
2202 .Li $3 ,
2203 and so on,
2204 decreasing the value of
2205 .Li $#
2206 by one.
2207 If there are zero positional parameters, shifting does not do anything.
2208 .It Ic test
2209 A built-in equivalent of
2210 .Xr test 1 .
2211 .It Ic times
2212 Print the amount of time spent executing the shell and its children.
2213 The first output line shows the user and system times for the shell
2214 itself, the second one contains the user and system times for the
2215 children.
2216 .It Ic trap Oo Ar action Oc Ar signal ...
2217 .It Ic trap Fl l
2218 Cause the shell to parse and execute
2219 .Ar action
2220 when any specified
2221 .Ar signal
2222 is received.
2223 The signals are specified by name or number.
2224 In addition, the pseudo-signal
2225 .Cm EXIT
2226 may be used to specify an
2227 .Ar action
2228 that is performed when the shell terminates.
2229 The
2230 .Ar action
2231 may be an empty string or a dash
2232 .Pq Ql - ;
2233 the former causes the specified signal to be ignored
2234 and the latter causes the default action to be taken.
2235 Omitting the
2236 .Ar action
2237 is another way to request the default action, for compatibility reasons this
2238 usage is not recommended though.
2239 When the shell forks off a subshell,
2240 it resets trapped (but not ignored) signals to the default action.
2241 The
2242 .Ic trap
2243 command has no effect on signals that were ignored on entry to the shell.
2244 .Pp
2245 Option
2246 .Fl l
2247 causes the
2248 .Ic trap
2249 command to display a list of valid signal names.
2250 .It Ic true
2251 A null command that returns a 0 (true) exit value.
2252 .It Ic type Op Ar name ...
2253 Interpret each
2254 .Ar name
2255 as a command and print the resolution of the command search.
2256 Possible resolutions are:
2257 shell keyword, alias, special shell builtin, shell builtin, command,
2258 tracked alias
2259 and not found.
2260 For aliases the alias expansion is printed;
2261 for commands and tracked aliases
2262 the complete pathname of the command is printed.
2263 .It Ic ulimit Oo Fl HSabcdflmnpstuvw Oc Op Ar limit
2264 Set or display resource limits (see
2265 .Xr getrlimit 2 ) .
2266 If
2267 .Ar limit
2268 is specified, the named resource will be set;
2269 otherwise the current resource value will be displayed.
2270 .Pp
2271 If
2272 .Fl H
2273 is specified, the hard limits will be set or displayed.
2274 While everybody is allowed to reduce a hard limit,
2275 only the superuser can increase it.
2276 The
2277 .Fl S
2278 option
2279 specifies the soft limits instead.
2280 When displaying limits,
2281 only one of
2282 .Fl S
2283 or
2284 .Fl H
2285 can be given.
2286 The default is to display the soft limits,
2287 and to set both the hard and the soft limits.
2288 .Pp
2289 Option
2290 .Fl a
2291 causes the
2292 .Ic ulimit
2293 command to display all resources.
2294 The parameter
2295 .Ar limit
2296 is not acceptable in this mode.
2297 .Pp
2298 The remaining options specify which resource value is to be
2299 displayed or modified.
2300 They are mutually exclusive.
2301 .Bl -tag -width indent
2302 .It Fl b Ar sbsize
2303 The maximum size of socket buffer usage, in bytes.
2304 .It Fl c Ar coredumpsize
2305 The maximal size of core dump files, in 512-byte blocks.
2306 .It Fl d Ar datasize
2307 The maximal size of the data segment of a process, in kilobytes.
2308 .It Fl f Ar filesize
2309 The maximal size of a file, in 512-byte blocks.
2310 .It Fl l Ar lockedmem
2311 The maximal size of memory that can be locked by a process, in
2312 kilobytes.
2313 .It Fl m Ar memoryuse
2314 The maximal resident set size of a process, in kilobytes.
2315 .It Fl n Ar nofiles
2316 The maximal number of descriptors that could be opened by a process.
2317 .It Fl p Ar pseudoterminals
2318 The maximal number of pseudo-terminals for this user ID.
2319 .It Fl s Ar stacksize
2320 The maximal size of the stack segment, in kilobytes.
2321 .It Fl t Ar time
2322 The maximal amount of CPU time to be used by each process, in seconds.
2323 .It Fl u Ar userproc
2324 The maximal number of simultaneous processes for this user ID.
2325 .It Fl v Ar virtualmem
2326 The maximal virtual size of a process, in kilobytes.
2327 .It Fl w Ar swapuse
2328 The maximum amount of swap space reserved or used for this user ID,
2329 in kilobytes.
2330 .El
2331 .It Ic umask Oo Fl S Oc Op Ar mask
2332 Set the file creation mask (see
2333 .Xr umask 2 )
2334 to the octal or symbolic (see
2335 .Xr chmod 1 )
2336 value specified by
2337 .Ar mask .
2338 If the argument is omitted, the current mask value is printed.
2339 If the
2340 .Fl S
2341 option is specified, the output is symbolic, otherwise the output is octal.
2342 .It Ic unalias Oo Fl a Oc Op Ar name ...
2343 The specified alias names are removed.
2344 If
2345 .Fl a
2346 is specified, all aliases are removed.
2347 .It Ic unset Oo Fl fv Oc Ar name ...
2348 The specified variables or functions are unset and unexported.
2349 If the
2350 .Fl v
2351 option is specified or no options are given, the
2352 .Ar name
2353 arguments are treated as variable names.
2354 If the
2355 .Fl f
2356 option is specified, the
2357 .Ar name
2358 arguments are treated as function names.
2359 .It Ic wait Op Ar job
2360 Wait for the specified
2361 .Ar job
2362 to complete and return the exit status of the last process in the
2363 .Ar job .
2364 If the argument is omitted, wait for all jobs to complete
2365 and return an exit status of zero.
2366 .El
2367 .Ss Commandline Editing
2368 When
2369 .Nm
2370 is being used interactively from a terminal, the current command
2371 and the command history
2372 (see
2373 .Ic fc
2374 in
2375 .Sx Built-in Commands )
2376 can be edited using
2377 .Nm vi Ns -mode
2378 command line editing.
2379 This mode uses commands similar
2380 to a subset of those described in the
2381 .Xr vi 1
2382 man page.
2383 The command
2384 .Dq Li "set -o vi"
2385 (or
2386 .Dq Li "set -V" )
2387 enables
2388 .Nm vi Ns -mode
2389 editing and places
2390 .Nm
2391 into
2392 .Nm vi
2393 insert mode.
2394 With
2395 .Nm vi Ns -mode
2396 enabled,
2397 .Nm
2398 can be switched between insert mode and command mode by typing
2399 .Aq ESC .
2400 Hitting
2401 .Aq return
2402 while in command mode will pass the line to the shell.
2403 .Pp
2404 Similarly, the
2405 .Dq Li "set -o emacs"
2406 (or
2407 .Dq Li "set -E" )
2408 command can be used to enable a subset of
2409 .Nm emacs Ns -style
2410 command line editing features.
2411 .Sh ENVIRONMENT
2412 The following environment variables affect the execution of
2413 .Nm :
2414 .Bl -tag -width ".Ev LANGXXXXXX"
2415 .It Ev ENV
2416 Initialization file for interactive shells.
2417 .It Ev LANG , Ev LC_*
2418 Locale settings.
2419 These are inherited by children of the shell,
2420 and is used in a limited manner by the shell itself.
2421 .It Ev PWD
2422 An absolute pathname for the current directory,
2423 possibly containing symbolic links.
2424 This is used and updated by the shell.
2425 .It Ev TERM
2426 The default terminal setting for the shell.
2427 This is inherited by children of the shell, and is used in the history
2428 editing modes.
2429 .El
2430 .Pp
2431 Additionally, all environment variables are turned into shell variables
2432 at startup,
2433 which may affect the shell as described under
2434 .Sx Special Variables .
2435 .Sh EXIT STATUS
2436 Errors that are detected by the shell, such as a syntax error, will
2437 cause the shell to exit with a non-zero exit status.
2438 If the shell is not an interactive shell, the execution of the shell
2439 file will be aborted.
2440 Otherwise the shell will return the exit status of the last command
2441 executed, or if the
2442 .Ic exit
2443 builtin is used with a numeric argument, it
2444 will return the argument.
2445 .Sh SEE ALSO
2446 .Xr builtin 1 ,
2447 .Xr chsh 1 ,
2448 .Xr echo 1 ,
2449 .Xr ed 1 ,
2450 .Xr emacs 1 ,
2451 .Xr pwd 1 ,
2452 .Xr test 1 ,
2453 .Xr vi 1 ,
2454 .Xr execve 2 ,
2455 .Xr getrlimit 2 ,
2456 .Xr umask 2 ,
2457 .Xr editrc 5
2458 .Sh HISTORY
2459 A
2460 .Nm
2461 command, the Thompson shell, appeared in
2462 .At v1 .
2463 It was superseded in
2464 .At v7
2465 by the Bourne shell, which inherited the name
2466 .Nm .
2467 .Pp
2468 This version of
2469 .Nm
2470 was rewritten in 1989 under the
2471 .Bx
2472 license after the Bourne shell from
2473 .At V.4 .
2474 .Sh AUTHORS
2475 This version of
2476 .Nm
2477 was originally written by
2478 .An Kenneth Almquist .
2479 .Sh BUGS
2480 The
2481 .Nm
2482 utility does not recognize multibyte characters.