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