]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/sh/sh.1
Merge ACPICA 20120620.
[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 November 5, 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 >| Ta \&
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 in a subshell environment (see
865 .Sx Grouping Commands Together
866 below) and asynchronously;
867 the shell does not wait for the command to finish
868 before executing the next command.
869 .Pp
870 The format for running a command in background is:
871 .Pp
872 .D1 Ar command1 Li & Op Ar command2 Li & Ar ...
873 .Pp
874 If the shell is not interactive, the standard input of an
875 asynchronous command is set to
876 .Pa /dev/null .
877 .Ss Lists (Generally Speaking)
878 A list is a sequence of zero or more commands separated by
879 newlines, semicolons, or ampersands,
880 and optionally terminated by one of these three characters.
881 The commands in a
882 list are executed in the order they are written.
883 If command is followed by an ampersand, the shell starts the
884 command and immediately proceeds onto the next command;
885 otherwise it waits for the command to terminate before
886 proceeding to the next one.
887 .Ss Short-Circuit List Operators
888 .Dq Li &&
889 and
890 .Dq Li ||
891 are AND-OR list operators.
892 .Dq Li &&
893 executes the first command, and then executes the second command
894 if the exit status of the first command is zero.
895 .Dq Li ||
896 is similar, but executes the second command if the exit
897 status of the first command is nonzero.
898 .Dq Li &&
899 and
900 .Dq Li ||
901 both have the same priority.
902 .Ss Flow-Control Constructs (if, while, for, case)
903 The syntax of the
904 .Ic if
905 command is:
906 .Bd -unfilled -offset indent -compact
907 .Ic if Ar list
908 .Ic then Ar list
909 .Oo Ic elif Ar list
910 .Ic then Ar list Oc Ar ...
911 .Op Ic else Ar list
912 .Ic fi
913 .Ed
914 .Pp
915 The syntax of the
916 .Ic while
917 command is:
918 .Bd -unfilled -offset indent -compact
919 .Ic while Ar list
920 .Ic do Ar list
921 .Ic done
922 .Ed
923 .Pp
924 The two lists are executed repeatedly while the exit status of the
925 first list is zero.
926 The
927 .Ic until
928 command is similar, but has the word
929 .Ic until
930 in place of
931 .Ic while ,
932 which causes it to
933 repeat until the exit status of the first list is zero.
934 .Pp
935 The syntax of the
936 .Ic for
937 command is:
938 .Bd -unfilled -offset indent -compact
939 .Ic for Ar variable Op Ic in Ar word ...
940 .Ic do Ar list
941 .Ic done
942 .Ed
943 .Pp
944 If
945 .Ic in
946 and the following words are omitted,
947 .Ic in Li \&"$@\&"
948 is used instead.
949 The words are expanded, and then the list is executed
950 repeatedly with the variable set to each word in turn.
951 The
952 .Ic do
953 and
954 .Ic done
955 commands may be replaced with
956 .Ql {
957 and
958 .Ql } .
959 .Pp
960 The syntax of the
961 .Ic break
962 and
963 .Ic continue
964 commands is:
965 .D1 Ic break Op Ar num
966 .D1 Ic continue Op Ar num
967 .Pp
968 The
969 .Ic break
970 command terminates the
971 .Ar num
972 innermost
973 .Ic for
974 or
975 .Ic while
976 loops.
977 The
978 .Ic continue
979 command continues with the next iteration of the innermost loop.
980 These are implemented as special built-in commands.
981 .Pp
982 The syntax of the
983 .Ic case
984 command is:
985 .Bd -unfilled -offset indent -compact
986 .Ic case Ar word Ic in
987 .Ar pattern Ns Li ) Ar list Li ;;
988 .Ar ...
989 .Ic esac
990 .Ed
991 .Pp
992 The pattern can actually be one or more patterns
993 (see
994 .Sx Shell Patterns
995 described later),
996 separated by
997 .Ql \&|
998 characters.
999 Tilde expansion, parameter expansion, command substitution,
1000 arithmetic expansion and quote removal are applied to the word.
1001 Then, each pattern is expanded in turn using tilde expansion,
1002 parameter expansion, command substitution and arithmetic expansion and
1003 the expanded form of the word is checked against it.
1004 If a match is found, the corresponding list is executed.
1005 If the selected list is terminated by the control operator
1006 .Ql ;&
1007 instead of
1008 .Ql ;; ,
1009 execution continues with the next list,
1010 continuing until a list terminated with
1011 .Ql ;;
1012 or the end of the
1013 .Ic case
1014 command.
1015 The exit code of the
1016 .Ic case
1017 command is the exit code of the last command executed in the list or
1018 zero if no patterns were matched.
1019 .Ss Grouping Commands Together
1020 Commands may be grouped by writing either
1021 .Pp
1022 .D1 Li \&( Ns Ar list Ns Li \%)
1023 .Pp
1024 or
1025 .Pp
1026 .D1 Li { Ar list Ns Li \&; }
1027 .Pp
1028 The first form executes the commands in a subshell environment.
1029 A subshell environment has its own copy of:
1030 .Bl -enum
1031 .It
1032 The current working directory as set by
1033 .Ic cd .
1034 .It
1035 The file creation mask as set by
1036 .Ic umask .
1037 .It
1038 References to open files.
1039 .It
1040 Traps as set by
1041 .Ic trap .
1042 .It
1043 Known jobs.
1044 .It
1045 Positional parameters and variables.
1046 .It
1047 Shell options.
1048 .It
1049 Shell functions.
1050 .It
1051 Shell aliases.
1052 .El
1053 .Pp
1054 These are copied from the parent shell environment,
1055 except that trapped (but not ignored) signals are reset to the default action
1056 and known jobs are cleared.
1057 Any changes do not affect the parent shell environment.
1058 .Pp
1059 A subshell environment may be implemented as a child process or differently.
1060 If job control is enabled in an interactive shell,
1061 commands grouped in parentheses can be suspended and continued as a unit.
1062 .Pp
1063 The second form never forks another shell,
1064 so it is slightly more efficient.
1065 Grouping commands together this way allows the user to
1066 redirect their output as though they were one program:
1067 .Bd -literal -offset indent
1068 { echo -n "hello"; echo " world"; } > greeting
1069 .Ed
1070 .Ss Functions
1071 The syntax of a function definition is
1072 .Pp
1073 .D1 Ar name Li \&( \&) Ar command
1074 .Pp
1075 A function definition is an executable statement; when
1076 executed it installs a function named
1077 .Ar name
1078 and returns an
1079 exit status of zero.
1080 The
1081 .Ar command
1082 is normally a list
1083 enclosed between
1084 .Ql {
1085 and
1086 .Ql } .
1087 .Pp
1088 Variables may be declared to be local to a function by
1089 using the
1090 .Ic local
1091 command.
1092 This should appear as the first statement of a function,
1093 and the syntax is:
1094 .Pp
1095 .D1 Ic local Oo Ar variable ... Oc Op Fl
1096 .Pp
1097 The
1098 .Ic local
1099 command is implemented as a built-in command.
1100 .Pp
1101 When a variable is made local, it inherits the initial
1102 value and exported and readonly flags from the variable
1103 with the same name in the surrounding scope, if there is
1104 one.
1105 Otherwise, the variable is initially unset.
1106 The shell
1107 uses dynamic scoping, so that if the variable
1108 .Va x
1109 is made local to function
1110 .Em f ,
1111 which then calls function
1112 .Em g ,
1113 references to the variable
1114 .Va x
1115 made inside
1116 .Em g
1117 will refer to the variable
1118 .Va x
1119 declared inside
1120 .Em f ,
1121 not to the global variable named
1122 .Va x .
1123 .Pp
1124 The only special parameter that can be made local is
1125 .Ql - .
1126 Making
1127 .Ql -
1128 local causes any shell options that are
1129 changed via the
1130 .Ic set
1131 command inside the function to be
1132 restored to their original values when the function
1133 returns.
1134 .Pp
1135 The syntax of the
1136 .Ic return
1137 command is
1138 .Pp
1139 .D1 Ic return Op Ar exitstatus
1140 .Pp
1141 It terminates the current executional scope, returning from the previous
1142 nested function, sourced script, or shell instance, in that order.
1143 The
1144 .Ic return
1145 command is implemented as a special built-in command.
1146 .Ss Variables and Parameters
1147 The shell maintains a set of parameters.
1148 A parameter
1149 denoted by a name is called a variable.
1150 When starting up,
1151 the shell turns all the environment variables into shell
1152 variables.
1153 New variables can be set using the form
1154 .Pp
1155 .D1 Ar name Ns = Ns Ar value
1156 .Pp
1157 Variables set by the user must have a name consisting solely
1158 of alphabetics, numerics, and underscores.
1159 The first letter of a variable name must not be numeric.
1160 A parameter can also be denoted by a number
1161 or a special character as explained below.
1162 .Pp
1163 Assignments are expanded differently from other words:
1164 tilde expansion is also performed after the equals sign and after any colon
1165 and usernames are also terminated by colons,
1166 and field splitting and pathname expansion are not performed.
1167 .Ss Positional Parameters
1168 A positional parameter is a parameter denoted by a number greater than zero.
1169 The shell sets these initially to the values of its command line
1170 arguments that follow the name of the shell script.
1171 The
1172 .Ic set
1173 built-in command can also be used to set or reset them.
1174 .Ss Special Parameters
1175 Special parameters are parameters denoted by a single special character
1176 or the digit zero.
1177 They are shown in the following list, exactly as they would appear in input
1178 typed by the user or in the source of a shell script.
1179 .Bl -hang
1180 .It Li $*
1181 Expands to the positional parameters, starting from one.
1182 When
1183 the expansion occurs within a double-quoted string
1184 it expands to a single field with the value of each parameter
1185 separated by the first character of the
1186 .Va IFS
1187 variable,
1188 or by a space if
1189 .Va IFS
1190 is unset.
1191 .It Li $@
1192 Expands to the positional parameters, starting from one.
1193 When
1194 the expansion occurs within double-quotes, each positional
1195 parameter expands as a separate argument.
1196 If there are no positional parameters, the
1197 expansion of
1198 .Li @
1199 generates zero arguments, even when
1200 .Li @
1201 is double-quoted.
1202 What this basically means, for example, is
1203 if
1204 .Li $1
1205 is
1206 .Dq Li abc
1207 and
1208 .Li $2
1209 is
1210 .Dq Li "def ghi" ,
1211 then
1212 .Li \&"$@\&"
1213 expands to
1214 the two arguments:
1215 .Bd -literal -offset indent
1216 "abc"   "def ghi"
1217 .Ed
1218 .It Li $#
1219 Expands to the number of positional parameters.
1220 .It Li $?
1221 Expands to the exit status of the most recent pipeline.
1222 .It Li $-
1223 (hyphen) Expands to the current option flags (the single-letter
1224 option names concatenated into a string) as specified on
1225 invocation, by the
1226 .Ic set
1227 built-in command, or implicitly
1228 by the shell.
1229 .It Li $$
1230 Expands to the process ID of the invoked shell.
1231 A subshell
1232 retains the same value of
1233 .Va $
1234 as its parent.
1235 .It Li $!
1236 Expands to the process ID of the most recent background
1237 command executed from the current shell.
1238 For a
1239 pipeline, the process ID is that of the last command in the
1240 pipeline.
1241 If this parameter is referenced, the shell will remember
1242 the process ID and its exit status until the
1243 .Ic wait
1244 built-in command reports completion of the process.
1245 .It Li $0
1246 (zero) Expands to the name of the shell script if passed on the command line,
1247 the
1248 .Ar name
1249 operand if given (with
1250 .Fl c )
1251 or otherwise argument 0 passed to the shell.
1252 .El
1253 .Ss Special Variables
1254 The following variables are set by the shell or
1255 have special meaning to it:
1256 .Bl -tag -width ".Va HISTSIZE"
1257 .It Va CDPATH
1258 The search path used with the
1259 .Ic cd
1260 built-in.
1261 .It Va EDITOR
1262 The fallback editor used with the
1263 .Ic fc
1264 built-in.
1265 If not set, the default editor is
1266 .Xr ed 1 .
1267 .It Va FCEDIT
1268 The default editor used with the
1269 .Ic fc
1270 built-in.
1271 .It Va HISTSIZE
1272 The number of previous commands that are accessible.
1273 .It Va HOME
1274 The user's home directory,
1275 used in tilde expansion and as a default directory for the
1276 .Ic cd
1277 built-in.
1278 .It Va IFS
1279 Input Field Separators.
1280 The default value is
1281 .Aq space ,
1282 .Aq tab ,
1283 and
1284 .Aq newline
1285 in that order.
1286 This default also applies if
1287 .Va IFS
1288 is unset, but not if it is set to the empty string.
1289 See the
1290 .Sx White Space Splitting
1291 section for more details.
1292 .It Va LINENO
1293 The current line number in the script or function.
1294 .It Va MAIL
1295 The name of a mail file, that will be checked for the arrival of new
1296 mail.
1297 Overridden by
1298 .Va MAILPATH .
1299 .It Va MAILPATH
1300 A colon
1301 .Pq Ql \&:
1302 separated list of file names, for the shell to check for incoming
1303 mail.
1304 This variable overrides the
1305 .Va MAIL
1306 setting.
1307 There is a maximum of 10 mailboxes that can be monitored at once.
1308 .It Va PATH
1309 The default search path for executables.
1310 See the
1311 .Sx Path Search
1312 section for details.
1313 .It Va PPID
1314 The parent process ID of the invoked shell.
1315 This is set at startup
1316 unless this variable is in the environment.
1317 A later change of parent process ID is not reflected.
1318 A subshell retains the same value of
1319 .Va PPID .
1320 .It Va PS1
1321 The primary prompt string, which defaults to
1322 .Dq Li "$ " ,
1323 unless you are the superuser, in which case it defaults to
1324 .Dq Li "# " .
1325 .It Va PS2
1326 The secondary prompt string, which defaults to
1327 .Dq Li "> " .
1328 .It Va PS4
1329 The prefix for the trace output (if
1330 .Fl x
1331 is active).
1332 The default is
1333 .Dq Li "+ " .
1334 .El
1335 .Ss Word Expansions
1336 This clause describes the various expansions that are
1337 performed on words.
1338 Not all expansions are performed on
1339 every word, as explained later.
1340 .Pp
1341 Tilde expansions, parameter expansions, command substitutions,
1342 arithmetic expansions, and quote removals that occur within
1343 a single word expand to a single field.
1344 It is only field
1345 splitting or pathname expansion that can create multiple
1346 fields from a single word.
1347 The single exception to this rule is
1348 the expansion of the special parameter
1349 .Va @
1350 within double-quotes,
1351 as was described above.
1352 .Pp
1353 The order of word expansion is:
1354 .Bl -enum
1355 .It
1356 Tilde Expansion, Parameter Expansion, Command Substitution,
1357 Arithmetic Expansion (these all occur at the same time).
1358 .It
1359 Field Splitting is performed on fields generated by step (1)
1360 unless the
1361 .Va IFS
1362 variable is null.
1363 .It
1364 Pathname Expansion (unless the
1365 .Fl f
1366 option is in effect).
1367 .It
1368 Quote Removal.
1369 .El
1370 .Pp
1371 The
1372 .Ql $
1373 character is used to introduce parameter expansion, command
1374 substitution, or arithmetic expansion.
1375 .Ss Tilde Expansion (substituting a user's home directory)
1376 A word beginning with an unquoted tilde character
1377 .Pq Ql ~
1378 is
1379 subjected to tilde expansion.
1380 All the characters up to a slash
1381 .Pq Ql /
1382 or the end of the word are treated as a username
1383 and are replaced with the user's home directory.
1384 If the
1385 username is missing (as in
1386 .Pa ~/foobar ) ,
1387 the tilde is replaced with the value of the
1388 .Va HOME
1389 variable (the current user's home directory).
1390 .Ss Parameter Expansion
1391 The format for parameter expansion is as follows:
1392 .Pp
1393 .D1 Li ${ Ns Ar expression Ns Li }
1394 .Pp
1395 where
1396 .Ar expression
1397 consists of all characters until the matching
1398 .Ql } .
1399 Any
1400 .Ql }
1401 escaped by a backslash or within a single-quoted or double-quoted
1402 string, and characters in
1403 embedded arithmetic expansions, command substitutions, and variable
1404 expansions, are not examined in determining the matching
1405 .Ql } .
1406 If the variants with
1407 .Ql + ,
1408 .Ql - ,
1409 .Ql =
1410 or
1411 .Ql ?\&
1412 occur within a double-quoted string,
1413 as an extension there may be unquoted parts
1414 (via double-quotes inside the expansion);
1415 .Ql }
1416 within such parts are also not examined in determining the matching
1417 .Ql } .
1418 .Pp
1419 The simplest form for parameter expansion is:
1420 .Pp
1421 .D1 Li ${ Ns Ar parameter Ns Li }
1422 .Pp
1423 The value, if any, of
1424 .Ar parameter
1425 is substituted.
1426 .Pp
1427 The parameter name or symbol can be enclosed in braces, which are
1428 optional except for positional parameters with more than one digit or
1429 when parameter is followed by a character that could be interpreted as
1430 part of the name.
1431 If a parameter expansion occurs inside double-quotes:
1432 .Bl -enum
1433 .It
1434 Field splitting is not performed on the results of the
1435 expansion, with the exception of the special parameter
1436 .Va @ .
1437 .It
1438 Pathname expansion is not performed on the results of the
1439 expansion.
1440 .El
1441 .Pp
1442 In addition, a parameter expansion can be modified by using one of the
1443 following formats.
1444 .Bl -tag -width indent
1445 .It Li ${ Ns Ar parameter Ns Li :- Ns Ar word Ns Li }
1446 Use Default Values.
1447 If
1448 .Ar parameter
1449 is unset or null, the expansion of
1450 .Ar word
1451 is substituted; otherwise, the value of
1452 .Ar parameter
1453 is substituted.
1454 .It Li ${ Ns Ar parameter Ns Li := Ns Ar word Ns Li }
1455 Assign Default Values.
1456 If
1457 .Ar parameter
1458 is unset or null, the expansion of
1459 .Ar word
1460 is assigned to
1461 .Ar parameter .
1462 In all cases, the
1463 final value of
1464 .Ar parameter
1465 is substituted.
1466 Quoting inside
1467 .Ar word
1468 does not prevent field splitting or pathname expansion.
1469 Only variables, not positional
1470 parameters or special parameters, can be
1471 assigned in this way.
1472 .It Li ${ Ns Ar parameter Ns Li :? Ns Oo Ar word Oc Ns Li }
1473 Indicate Error if Null or Unset.
1474 If
1475 .Ar parameter
1476 is unset or null, the expansion of
1477 .Ar word
1478 (or a message indicating it is unset if
1479 .Ar word
1480 is omitted) is written to standard
1481 error and the shell exits with a nonzero
1482 exit status.
1483 Otherwise, the value of
1484 .Ar parameter
1485 is substituted.
1486 An
1487 interactive shell need not exit.
1488 .It Li ${ Ns Ar parameter Ns Li :+ Ns Ar word Ns Li }
1489 Use Alternate Value.
1490 If
1491 .Ar parameter
1492 is unset or null, null is substituted;
1493 otherwise, the expansion of
1494 .Ar word
1495 is substituted.
1496 .El
1497 .Pp
1498 In the parameter expansions shown previously, use of the colon in the
1499 format results in a test for a parameter that is unset or null; omission
1500 of the colon results in a test for a parameter that is only unset.
1501 .Pp
1502 The
1503 .Ar word
1504 inherits the type of quoting
1505 (unquoted, double-quoted or here-document)
1506 from the surroundings,
1507 with the exception that a backslash that quotes a closing brace is removed
1508 during quote removal.
1509 .Bl -tag -width indent
1510 .It Li ${# Ns Ar parameter Ns Li }
1511 String Length.
1512 The length in characters of
1513 the value of
1514 .Ar parameter .
1515 .El
1516 .Pp
1517 The following four varieties of parameter expansion provide for substring
1518 processing.
1519 In each case, pattern matching notation
1520 (see
1521 .Sx Shell Patterns ) ,
1522 rather than regular expression notation,
1523 is used to evaluate the patterns.
1524 If parameter is one of the special parameters
1525 .Va *
1526 or
1527 .Va @ ,
1528 the result of the expansion is unspecified.
1529 Enclosing the full parameter expansion string in double-quotes does not
1530 cause the following four varieties of pattern characters to be quoted,
1531 whereas quoting characters within the braces has this effect.
1532 .Bl -tag -width indent
1533 .It Li ${ Ns Ar parameter Ns Li % Ns Ar word Ns Li }
1534 Remove Smallest Suffix Pattern.
1535 The
1536 .Ar word
1537 is expanded to produce a pattern.
1538 The
1539 parameter expansion then results in
1540 .Ar parameter ,
1541 with the smallest portion of the
1542 suffix matched by the pattern deleted.
1543 .It Li ${ Ns Ar parameter Ns Li %% Ns Ar word Ns Li }
1544 Remove Largest Suffix Pattern.
1545 The
1546 .Ar word
1547 is expanded to produce a pattern.
1548 The
1549 parameter expansion then results in
1550 .Ar parameter ,
1551 with the largest portion of the
1552 suffix matched by the pattern deleted.
1553 .It Li ${ Ns Ar parameter Ns Li # Ns Ar word Ns Li }
1554 Remove Smallest Prefix Pattern.
1555 The
1556 .Ar word
1557 is expanded to produce a pattern.
1558 The
1559 parameter expansion then results in
1560 .Ar parameter ,
1561 with the smallest portion of the
1562 prefix matched by the pattern deleted.
1563 .It Li ${ Ns Ar parameter Ns Li ## Ns Ar word Ns Li }
1564 Remove Largest Prefix Pattern.
1565 The
1566 .Ar word
1567 is expanded to produce a pattern.
1568 The
1569 parameter expansion then results in
1570 .Ar parameter ,
1571 with the largest portion of the
1572 prefix matched by the pattern deleted.
1573 .El
1574 .Ss Command Substitution
1575 Command substitution allows the output of a command to be substituted in
1576 place of the command name itself.
1577 Command substitution occurs when
1578 the command is enclosed as follows:
1579 .Pp
1580 .D1 Li $( Ns Ar command Ns Li )\&
1581 .Pp
1582 or the backquoted version:
1583 .Pp
1584 .D1 Li ` Ns Ar command Ns Li `
1585 .Pp
1586 The shell expands the command substitution by executing command
1587 and replacing the command substitution
1588 with the standard output of the command,
1589 removing sequences of one or more newlines at the end of the substitution.
1590 Embedded newlines before the end of the output are not removed;
1591 however, during field splitting, they may be translated into spaces
1592 depending on the value of
1593 .Va IFS
1594 and the quoting that is in effect.
1595 The command is executed in a subshell environment,
1596 except that the built-in commands
1597 .Ic jobid ,
1598 .Ic jobs ,
1599 and
1600 .Ic trap
1601 return information about the parent shell environment
1602 and
1603 .Ic times
1604 returns information about the same process
1605 if they are the only command in a command substitution.
1606 .Ss Arithmetic Expansion
1607 Arithmetic expansion provides a mechanism for evaluating an arithmetic
1608 expression and substituting its value.
1609 The format for arithmetic expansion is as follows:
1610 .Pp
1611 .D1 Li $(( Ns Ar expression Ns Li ))
1612 .Pp
1613 The
1614 .Ar expression
1615 is treated as if it were in double-quotes, except
1616 that a double-quote inside the expression is not treated specially.
1617 The
1618 shell expands all tokens in the
1619 .Ar expression
1620 for parameter expansion,
1621 command substitution,
1622 arithmetic expansion
1623 and quote removal.
1624 .Pp
1625 The allowed expressions are a subset of C expressions,
1626 summarized below.
1627 .Bl -tag -width "Variables" -offset indent
1628 .It Values
1629 All values are of type
1630 .Ft intmax_t .
1631 .It Constants
1632 Decimal, octal (starting with
1633 .Li 0 )
1634 and hexadecimal (starting with
1635 .Li 0x )
1636 integer constants.
1637 .It Variables
1638 Shell variables can be read and written
1639 and contain integer constants.
1640 .It Unary operators
1641 .Li "! ~ + -"
1642 .It Binary operators
1643 .Li "* / % + - << >> < <= > >= == != & ^ | && ||"
1644 .It Assignment operators
1645 .Li "= += -= *= /= %= <<= >>= &= ^= |="
1646 .It Conditional operator
1647 .Li "? :"
1648 .El
1649 .Pp
1650 The result of the expression is substituted in decimal.
1651 .Ss White Space Splitting (Field Splitting)
1652 In certain contexts,
1653 after parameter expansion, command substitution, and
1654 arithmetic expansion the shell scans the results of
1655 expansions and substitutions that did not occur in double-quotes for
1656 field splitting and multiple fields can result.
1657 .Pp
1658 Characters in
1659 .Va IFS
1660 that are whitespace
1661 .Po
1662 .Aq space ,
1663 .Aq tab ,
1664 and
1665 .Aq newline
1666 .Pc
1667 are treated differently from other characters in
1668 .Va IFS .
1669 .Pp
1670 Whitespace in
1671 .Va IFS
1672 at the beginning or end of a word is discarded.
1673 .Pp
1674 Subsequently, a field is delimited by either
1675 .Bl -enum
1676 .It
1677 a non-whitespace character in
1678 .Va IFS
1679 with any whitespace in
1680 .Va IFS
1681 surrounding it, or
1682 .It
1683 one or more whitespace characters in
1684 .Va IFS .
1685 .El
1686 .Pp
1687 If a word ends with a non-whitespace character in
1688 .Va IFS ,
1689 there is no empty field after this character.
1690 .Pp
1691 If no field is delimited, the word is discarded.
1692 In particular, if a word consists solely of an unquoted substitution
1693 and the result of the substitution is null,
1694 it is removed by field splitting even if
1695 .Va IFS
1696 is null.
1697 .Ss Pathname Expansion (File Name Generation)
1698 Unless the
1699 .Fl f
1700 option is set,
1701 file name generation is performed
1702 after word splitting is complete.
1703 Each word is
1704 viewed as a series of patterns, separated by slashes.
1705 The
1706 process of expansion replaces the word with the names of
1707 all existing files whose names can be formed by replacing
1708 each pattern with a string that matches the specified pattern.
1709 There are two restrictions on this: first, a pattern cannot match
1710 a string containing a slash, and second,
1711 a pattern cannot match a string starting with a period
1712 unless the first character of the pattern is a period.
1713 The next section describes the patterns used for
1714 Pathname Expansion,
1715 the four varieties of parameter expansion for substring processing and the
1716 .Ic case
1717 command.
1718 .Ss Shell Patterns
1719 A pattern consists of normal characters, which match themselves,
1720 and meta-characters.
1721 The meta-characters are
1722 .Ql * ,
1723 .Ql \&? ,
1724 and
1725 .Ql \&[ .
1726 These characters lose their special meanings if they are quoted.
1727 When command or variable substitution is performed and the dollar sign
1728 or back quotes are not double-quoted, the value of the
1729 variable or the output of the command is scanned for these
1730 characters and they are turned into meta-characters.
1731 .Pp
1732 An asterisk
1733 .Pq Ql *
1734 matches any string of characters.
1735 A question mark
1736 .Pq Ql \&?
1737 matches any single character.
1738 A left bracket
1739 .Pq Ql \&[
1740 introduces a character class.
1741 The end of the character class is indicated by a
1742 .Ql \&] ;
1743 if the
1744 .Ql \&]
1745 is missing then the
1746 .Ql \&[
1747 matches a
1748 .Ql \&[
1749 rather than introducing a character class.
1750 A character class matches any of the characters between the square brackets.
1751 A locale-dependent range of characters may be specified using a minus sign.
1752 A named class of characters (see
1753 .Xr wctype 3 )
1754 may be specified by surrounding the name with
1755 .Ql \&[:
1756 and
1757 .Ql :\&] .
1758 For example,
1759 .Ql \&[\&[:alpha:\&]\&]
1760 is a shell pattern that matches a single letter.
1761 The character class may be complemented by making an exclamation point
1762 .Pq Ql !\&
1763 the first character of the character class.
1764 A caret
1765 .Pq Ql ^
1766 has the same effect but is non-standard.
1767 .Pp
1768 To include a
1769 .Ql \&]
1770 in a character class, make it the first character listed
1771 (after the
1772 .Ql \&!
1773 or
1774 .Ql ^ ,
1775 if any).
1776 To include a
1777 .Ql - ,
1778 make it the first or last character listed.
1779 .Ss Built-in Commands
1780 This section lists the built-in commands.
1781 .Bl -tag -width indent
1782 .It Ic \&:
1783 A null command that returns a 0 (true) exit value.
1784 .It Ic \&. Ar file
1785 The commands in the specified file are read and executed by the shell.
1786 The
1787 .Ic return
1788 command may be used to return to the
1789 .Ic \&.
1790 command's caller.
1791 If
1792 .Ar file
1793 contains any
1794 .Ql /
1795 characters, it is used as is.
1796 Otherwise, the shell searches the
1797 .Va PATH
1798 for the file.
1799 If it is not found in the
1800 .Va PATH ,
1801 it is sought in the current working directory.
1802 .It Ic \&[
1803 A built-in equivalent of
1804 .Xr test 1 .
1805 .It Ic alias Oo Ar name Ns Oo = Ns Ar string Oc ... Oc
1806 If
1807 .Ar name Ns = Ns Ar string
1808 is specified, the shell defines the alias
1809 .Ar name
1810 with value
1811 .Ar string .
1812 If just
1813 .Ar name
1814 is specified, the value of the alias
1815 .Ar name
1816 is printed.
1817 With no arguments, the
1818 .Ic alias
1819 built-in command prints the names and values of all defined aliases
1820 (see
1821 .Ic unalias ) .
1822 Alias values are written with appropriate quoting so that they are
1823 suitable for re-input to the shell.
1824 Also see the
1825 .Sx Aliases
1826 subsection.
1827 .It Ic bg Op Ar job ...
1828 Continue the specified jobs
1829 (or the current job if no jobs are given)
1830 in the background.
1831 .It Ic bind Oo Fl aeklrsv Oc Oo Ar key Oo Ar command Oc Oc
1832 List or alter key bindings for the line editor.
1833 This command is documented in
1834 .Xr editrc 5 .
1835 .It Ic break Op Ar num
1836 See the
1837 .Sx Flow-Control Constructs
1838 subsection.
1839 .It Ic builtin Ar cmd Op Ar arg ...
1840 Execute the specified built-in command,
1841 .Ar cmd .
1842 This is useful when the user wishes to override a shell function
1843 with the same name as a built-in command.
1844 .It Ic cd Oo Fl L | P Oc Oo Fl e Oc Op Ar directory
1845 Switch to the specified
1846 .Ar directory ,
1847 or to the directory specified in the
1848 .Va HOME
1849 environment variable if no
1850 .Ar directory
1851 is specified.
1852 If
1853 .Ar directory
1854 does not begin with
1855 .Pa / , \&. ,
1856 or
1857 .Pa .. ,
1858 then the directories listed in the
1859 .Va CDPATH
1860 variable will be
1861 searched for the specified
1862 .Ar directory .
1863 If
1864 .Va CDPATH
1865 is unset, the current directory is searched.
1866 The format of
1867 .Va CDPATH
1868 is the same as that of
1869 .Va PATH .
1870 In an interactive shell,
1871 the
1872 .Ic cd
1873 command will print out the name of the directory
1874 that it actually switched to
1875 if this is different from the name that the user gave.
1876 These may be different either because the
1877 .Va CDPATH
1878 mechanism was used or because a symbolic link was crossed.
1879 .Pp
1880 If the
1881 .Fl P
1882 option is specified,
1883 .Pa ..
1884 is handled physically and symbolic links are resolved before
1885 .Pa ..
1886 components are processed.
1887 If the
1888 .Fl L
1889 option is specified,
1890 .Pa ..
1891 is handled logically.
1892 This is the default.
1893 .Pp
1894 The
1895 .Fl e
1896 option causes
1897 .Ic cd
1898 to return exit status 1 if the full pathname of the new directory
1899 cannot be determined reliably or at all.
1900 Normally this is not considered an error,
1901 although a warning is printed.
1902 .It Ic chdir
1903 A synonym for the
1904 .Ic cd
1905 built-in command.
1906 .It Ic command Oo Fl p Oc Op Ar utility Op Ar argument ...
1907 .It Ic command Oo Fl p Oc Fl v Ar utility
1908 .It Ic command Oo Fl p Oc Fl V Ar utility
1909 The first form of invocation executes the specified
1910 .Ar utility ,
1911 ignoring shell functions in the search.
1912 If
1913 .Ar utility
1914 is a special builtin,
1915 it is executed as if it were a regular builtin.
1916 .Pp
1917 If the
1918 .Fl p
1919 option is specified, the command search is performed using a
1920 default value of
1921 .Va PATH
1922 that is guaranteed to find all of the standard utilities.
1923 .Pp
1924 If the
1925 .Fl v
1926 option is specified,
1927 .Ar utility
1928 is not executed but a description of its interpretation by the shell is
1929 printed.
1930 For ordinary commands the output is the path name; for shell built-in
1931 commands, shell functions and keywords only the name is written.
1932 Aliases are printed as
1933 .Dq Ic alias Ar name Ns = Ns Ar value .
1934 .Pp
1935 The
1936 .Fl V
1937 option is identical to
1938 .Fl v
1939 except for the output.
1940 It prints
1941 .Dq Ar utility Ic is Ar description
1942 where
1943 .Ar description
1944 is either
1945 the path name to
1946 .Ar utility ,
1947 a special shell builtin,
1948 a shell builtin,
1949 a shell function,
1950 a shell keyword
1951 or
1952 an alias for
1953 .Ar value .
1954 .It Ic continue Op Ar num
1955 See the
1956 .Sx Flow-Control Constructs
1957 subsection.
1958 .It Ic echo Oo Fl e | n Oc Op Ar string ...
1959 Print a space-separated list of the arguments to the standard output
1960 and append a newline character.
1961 .Bl -tag -width indent
1962 .It Fl n
1963 Suppress the output of the trailing newline.
1964 .It Fl e
1965 Process C-style backslash escape sequences.
1966 The
1967 .Ic echo
1968 command understands the following character escapes:
1969 .Bl -tag -width indent
1970 .It \ea
1971 Alert (ring the terminal bell)
1972 .It \eb
1973 Backspace
1974 .It \ec
1975 Suppress the trailing newline (this has the side-effect of truncating the
1976 line if it is not the last character)
1977 .It \ee
1978 The ESC character
1979 .Tn ( ASCII
1980 0x1b)
1981 .It \ef
1982 Formfeed
1983 .It \en
1984 Newline
1985 .It \er
1986 Carriage return
1987 .It \et
1988 Horizontal tab
1989 .It \ev
1990 Vertical tab
1991 .It \e\e
1992 Literal backslash
1993 .It \e0nnn
1994 (Zero) The character whose octal value is
1995 .Ar nnn
1996 .El
1997 .Pp
1998 If
1999 .Ar string
2000 is not enclosed in quotes then the backslash itself must be escaped
2001 with a backslash to protect it from the shell.
2002 For example
2003 .Bd -literal -offset indent
2004 $ echo -e "a\evb"
2005 a
2006  b
2007 $ echo -e a\e\evb
2008 a
2009  b
2010 $ echo -e "a\e\eb"
2011 a\eb
2012 $ echo -e a\e\e\e\eb
2013 a\eb
2014 .Ed
2015 .El
2016 .Pp
2017 Only one of the
2018 .Fl e
2019 and
2020 .Fl n
2021 options may be specified.
2022 .It Ic eval Ar string ...
2023 Concatenate all the arguments with spaces.
2024 Then re-parse and execute the command.
2025 .It Ic exec Op Ar command Op arg ...
2026 Unless
2027 .Ar command
2028 is omitted,
2029 the shell process is replaced with the specified program
2030 (which must be a real program, not a shell built-in command or function).
2031 Any redirections on the
2032 .Ic exec
2033 command are marked as permanent,
2034 so that they are not undone when the
2035 .Ic exec
2036 command finishes.
2037 .It Ic exit Op Ar exitstatus
2038 Terminate the shell process.
2039 If
2040 .Ar exitstatus
2041 is given
2042 it is used as the exit status of the shell.
2043 Otherwise, if the shell is executing an
2044 .Cm EXIT
2045 trap, the exit status of the last command before the trap is used;
2046 if the shell is executing a trap for a signal,
2047 the shell exits by resending the signal to itself.
2048 Otherwise, the exit status of the preceding command is used.
2049 The exit status should be an integer between 0 and 255.
2050 .It Ic export Ar name ...
2051 .It Ic export Op Fl p
2052 The specified names are exported so that they will
2053 appear in the environment of subsequent commands.
2054 The only way to un-export a variable is to
2055 .Ic unset
2056 it.
2057 The shell allows the value of a variable to be set
2058 at the same time as it is exported by writing
2059 .Pp
2060 .D1 Ic export Ar name Ns = Ns Ar value
2061 .Pp
2062 With no arguments the
2063 .Ic export
2064 command lists the names
2065 of all exported variables.
2066 If the
2067 .Fl p
2068 option is specified, the exported variables are printed as
2069 .Dq Ic export Ar name Ns = Ns Ar value
2070 lines, suitable for re-input to the shell.
2071 .It Ic false
2072 A null command that returns a non-zero (false) exit value.
2073 .It Ic fc Oo Fl e Ar editor Oc Op Ar first Op Ar last
2074 .It Ic fc Fl l Oo Fl nr Oc Op Ar first Op Ar last
2075 .It Ic fc Fl s Oo Ar old Ns = Ns Ar new Oc Op Ar first
2076 The
2077 .Ic fc
2078 built-in command lists, or edits and re-executes,
2079 commands previously entered to an interactive shell.
2080 .Bl -tag -width indent
2081 .It Fl e Ar editor
2082 Use the editor named by
2083 .Ar editor
2084 to edit the commands.
2085 The
2086 .Ar editor
2087 string is a command name,
2088 subject to search via the
2089 .Va PATH
2090 variable.
2091 The value in the
2092 .Va FCEDIT
2093 variable is used as a default when
2094 .Fl e
2095 is not specified.
2096 If
2097 .Va FCEDIT
2098 is null or unset, the value of the
2099 .Va EDITOR
2100 variable is used.
2101 If
2102 .Va EDITOR
2103 is null or unset,
2104 .Xr ed 1
2105 is used as the editor.
2106 .It Fl l No (ell)
2107 List the commands rather than invoking
2108 an editor on them.
2109 The commands are written in the
2110 sequence indicated by the
2111 .Ar first
2112 and
2113 .Ar last
2114 operands, as affected by
2115 .Fl r ,
2116 with each command preceded by the command number.
2117 .It Fl n
2118 Suppress command numbers when listing with
2119 .Fl l .
2120 .It Fl r
2121 Reverse the order of the commands listed
2122 (with
2123 .Fl l )
2124 or edited
2125 (with neither
2126 .Fl l
2127 nor
2128 .Fl s ) .
2129 .It Fl s
2130 Re-execute the command without invoking an editor.
2131 .It Ar first
2132 .It Ar last
2133 Select the commands to list or edit.
2134 The number of previous commands that can be accessed
2135 are determined by the value of the
2136 .Va HISTSIZE
2137 variable.
2138 The value of
2139 .Ar first
2140 or
2141 .Ar last
2142 or both are one of the following:
2143 .Bl -tag -width indent
2144 .It Oo Cm + Oc Ns Ar num
2145 A positive number representing a command number;
2146 command numbers can be displayed with the
2147 .Fl l
2148 option.
2149 .It Fl Ar num
2150 A negative decimal number representing the
2151 command that was executed
2152 .Ar num
2153 of
2154 commands previously.
2155 For example, \-1 is the immediately previous command.
2156 .It Ar string
2157 A string indicating the most recently entered command
2158 that begins with that string.
2159 If the
2160 .Ar old Ns = Ns Ar new
2161 operand is not also specified with
2162 .Fl s ,
2163 the string form of the first operand cannot contain an embedded equal sign.
2164 .El
2165 .El
2166 .Pp
2167 The following variables affect the execution of
2168 .Ic fc :
2169 .Bl -tag -width ".Va HISTSIZE"
2170 .It Va FCEDIT
2171 Name of the editor to use for history editing.
2172 .It Va HISTSIZE
2173 The number of previous commands that are accessible.
2174 .El
2175 .It Ic fg Op Ar job
2176 Move the specified
2177 .Ar job
2178 or the current job to the foreground.
2179 .It Ic getopts Ar optstring var
2180 The
2181 .Tn POSIX
2182 .Ic getopts
2183 command.
2184 The
2185 .Ic getopts
2186 command deprecates the older
2187 .Xr getopt 1
2188 command.
2189 The first argument should be a series of letters, each possibly
2190 followed by a colon which indicates that the option takes an argument.
2191 The specified variable is set to the parsed option.
2192 The index of
2193 the next argument is placed into the shell variable
2194 .Va OPTIND .
2195 If an option takes an argument, it is placed into the shell variable
2196 .Va OPTARG .
2197 If an invalid option is encountered,
2198 .Ar var
2199 is set to
2200 .Ql \&? .
2201 It returns a false value (1) when it encounters the end of the options.
2202 .It Ic hash Oo Fl rv Oc Op Ar command ...
2203 The shell maintains a hash table which remembers the locations of commands.
2204 With no arguments whatsoever, the
2205 .Ic hash
2206 command prints out the contents of this table.
2207 Entries which have not been looked at since the last
2208 .Ic cd
2209 command are marked with an asterisk;
2210 it is possible for these entries to be invalid.
2211 .Pp
2212 With arguments, the
2213 .Ic hash
2214 command removes each specified
2215 .Ar command
2216 from the hash table (unless they are functions) and then locates it.
2217 With the
2218 .Fl v
2219 option,
2220 .Ic hash
2221 prints the locations of the commands as it finds them.
2222 The
2223 .Fl r
2224 option causes the
2225 .Ic hash
2226 command to delete all the entries in the hash table except for functions.
2227 .It Ic jobid Op Ar job
2228 Print the process IDs of the processes in the specified
2229 .Ar job .
2230 If the
2231 .Ar job
2232 argument is omitted, use the current job.
2233 .It Ic jobs Oo Fl lps Oc Op Ar job ...
2234 Print information about the specified jobs, or all jobs if no
2235 .Ar job
2236 argument is given.
2237 The information printed includes job ID, status and command name.
2238 .Pp
2239 If the
2240 .Fl l
2241 option is specified, the PID of each job is also printed.
2242 If the
2243 .Fl p
2244 option is specified, only the process IDs for the process group leaders
2245 are printed, one per line.
2246 If the
2247 .Fl s
2248 option is specified, only the PIDs of the job commands are printed, one per
2249 line.
2250 .It Ic kill
2251 A built-in equivalent of
2252 .Xr kill 1
2253 that additionally supports sending signals to jobs.
2254 .It Ic local Oo Ar variable ... Oc Op Fl
2255 See the
2256 .Sx Functions
2257 subsection.
2258 .It Ic printf
2259 A built-in equivalent of
2260 .Xr printf 1 .
2261 .It Ic pwd Op Fl L | P
2262 Print the path of the current directory.
2263 The built-in command may
2264 differ from the program of the same name because the
2265 built-in command remembers what the current directory
2266 is rather than recomputing it each time.
2267 This makes
2268 it faster.
2269 However, if the current directory is
2270 renamed,
2271 the built-in version of
2272 .Xr pwd 1
2273 will continue to print the old name for the directory.
2274 .Pp
2275 If the
2276 .Fl P
2277 option is specified, symbolic links are resolved.
2278 If the
2279 .Fl L
2280 option is specified, the shell's notion of the current directory
2281 is printed (symbolic links are not resolved).
2282 This is the default.
2283 .It Ic read Oo Fl p Ar prompt Oc Oo
2284 .Fl t Ar timeout Oc Oo Fl er Oc Ar variable ...
2285 The
2286 .Ar prompt
2287 is printed if the
2288 .Fl p
2289 option is specified
2290 and the standard input is a terminal.
2291 Then a line is
2292 read from the standard input.
2293 The trailing newline
2294 is deleted from the line and the line is split as
2295 described in the section on
2296 .Sx White Space Splitting (Field Splitting)
2297 above, and
2298 the pieces are assigned to the variables in order.
2299 If there are more pieces than variables, the remaining
2300 pieces (along with the characters in
2301 .Va IFS
2302 that separated them)
2303 are assigned to the last variable.
2304 If there are more variables than pieces, the remaining
2305 variables are assigned the null string.
2306 .Pp
2307 Backslashes are treated specially, unless the
2308 .Fl r
2309 option is
2310 specified.
2311 If a backslash is followed by
2312 a newline, the backslash and the newline will be
2313 deleted.
2314 If a backslash is followed by any other
2315 character, the backslash will be deleted and the following
2316 character will be treated as though it were not in
2317 .Va IFS ,
2318 even if it is.
2319 .Pp
2320 If the
2321 .Fl t
2322 option is specified and the
2323 .Ar timeout
2324 elapses before a complete line of input is supplied,
2325 the
2326 .Ic read
2327 command will return an exit status of 1 without assigning any values.
2328 The
2329 .Ar timeout
2330 value may optionally be followed by one of
2331 .Ql s ,
2332 .Ql m
2333 or
2334 .Ql h
2335 to explicitly specify seconds, minutes or hours.
2336 If none is supplied,
2337 .Ql s
2338 is assumed.
2339 .Pp
2340 The
2341 .Fl e
2342 option exists only for backward compatibility with older scripts.
2343 .It Ic readonly Oo Fl p Oc Op Ar name ...
2344 Each specified
2345 .Ar name
2346 is marked as read only,
2347 so that it cannot be subsequently modified or unset.
2348 The shell allows the value of a variable to be set
2349 at the same time as it is marked read only
2350 by using the following form:
2351 .Pp
2352 .D1 Ic readonly Ar name Ns = Ns Ar value
2353 .Pp
2354 With no arguments the
2355 .Ic readonly
2356 command lists the names of all read only variables.
2357 If the
2358 .Fl p
2359 option is specified, the read-only variables are printed as
2360 .Dq Ic readonly Ar name Ns = Ns Ar value
2361 lines, suitable for re-input to the shell.
2362 .It Ic return Op Ar exitstatus
2363 See the
2364 .Sx Functions
2365 subsection.
2366 .It Ic set Oo Fl /+abCEefIimnpTuVvx Oc Oo Fl /+o Ar longname Oc Oo
2367 .Fl c Ar string Oc Op Fl - Ar arg ...
2368 The
2369 .Ic set
2370 command performs three different functions:
2371 .Bl -item
2372 .It
2373 With no arguments, it lists the values of all shell variables.
2374 .It
2375 If options are given,
2376 either in short form or using the long
2377 .Dq Fl /+o Ar longname
2378 form,
2379 it sets or clears the specified options as described in the section called
2380 .Sx Argument List Processing .
2381 .It
2382 If the
2383 .Dq Fl -
2384 option is specified,
2385 .Ic set
2386 will replace the shell's positional parameters with the subsequent
2387 arguments.
2388 If no arguments follow the
2389 .Dq Fl -
2390 option,
2391 all the positional parameters will be cleared,
2392 which is equivalent to executing the command
2393 .Dq Li "shift $#" .
2394 The
2395 .Dq Fl -
2396 flag may be omitted when specifying arguments to be used
2397 as positional replacement parameters.
2398 This is not recommended,
2399 because the first argument may begin with a dash
2400 .Pq Ql -
2401 or a plus
2402 .Pq Ql + ,
2403 which the
2404 .Ic set
2405 command will interpret as a request to enable or disable options.
2406 .El
2407 .It Ic setvar Ar variable value
2408 Assigns the specified
2409 .Ar value
2410 to the specified
2411 .Ar variable .
2412 The
2413 .Ic setvar
2414 command is intended to be used in functions that
2415 assign values to variables whose names are passed as parameters.
2416 In general it is better to write
2417 .Dq Ar variable Ns = Ns Ar value
2418 rather than using
2419 .Ic setvar .
2420 .It Ic shift Op Ar n
2421 Shift the positional parameters
2422 .Ar n
2423 times, or once if
2424 .Ar n
2425 is not specified.
2426 A shift sets the value of
2427 .Li $1
2428 to the value of
2429 .Li $2 ,
2430 the value of
2431 .Li $2
2432 to the value of
2433 .Li $3 ,
2434 and so on,
2435 decreasing the value of
2436 .Li $#
2437 by one.
2438 If there are zero positional parameters, shifting does not do anything.
2439 .It Ic test
2440 A built-in equivalent of
2441 .Xr test 1 .
2442 .It Ic times
2443 Print the amount of time spent executing the shell process and its children.
2444 The first output line shows the user and system times for the shell process
2445 itself, the second one contains the user and system times for the
2446 children.
2447 .It Ic trap Oo Ar action Oc Ar signal ...
2448 .It Ic trap Fl l
2449 Cause the shell to parse and execute
2450 .Ar action
2451 when any specified
2452 .Ar signal
2453 is received.
2454 The signals are specified by name or number.
2455 In addition, the pseudo-signal
2456 .Cm EXIT
2457 may be used to specify an
2458 .Ar action
2459 that is performed when the shell terminates.
2460 The
2461 .Ar action
2462 may be an empty string or a dash
2463 .Pq Ql - ;
2464 the former causes the specified signal to be ignored
2465 and the latter causes the default action to be taken.
2466 Omitting the
2467 .Ar action
2468 is another way to request the default action, for compatibility reasons this
2469 usage is not recommended though.
2470 In a subshell or utility environment,
2471 the shell resets trapped (but not ignored) signals to the default action.
2472 The
2473 .Ic trap
2474 command has no effect on signals that were ignored on entry to the shell.
2475 .Pp
2476 Option
2477 .Fl l
2478 causes the
2479 .Ic trap
2480 command to display a list of valid signal names.
2481 .It Ic true
2482 A null command that returns a 0 (true) exit value.
2483 .It Ic type Op Ar name ...
2484 Interpret each
2485 .Ar name
2486 as a command and print the resolution of the command search.
2487 Possible resolutions are:
2488 shell keyword, alias, special shell builtin, shell builtin, command,
2489 tracked alias
2490 and not found.
2491 For aliases the alias expansion is printed;
2492 for commands and tracked aliases
2493 the complete pathname of the command is printed.
2494 .It Ic ulimit Oo Fl HSabcdflmnpstuvw Oc Op Ar limit
2495 Set or display resource limits (see
2496 .Xr getrlimit 2 ) .
2497 If
2498 .Ar limit
2499 is specified, the named resource will be set;
2500 otherwise the current resource value will be displayed.
2501 .Pp
2502 If
2503 .Fl H
2504 is specified, the hard limits will be set or displayed.
2505 While everybody is allowed to reduce a hard limit,
2506 only the superuser can increase it.
2507 The
2508 .Fl S
2509 option
2510 specifies the soft limits instead.
2511 When displaying limits,
2512 only one of
2513 .Fl S
2514 or
2515 .Fl H
2516 can be given.
2517 The default is to display the soft limits,
2518 and to set both the hard and the soft limits.
2519 .Pp
2520 Option
2521 .Fl a
2522 causes the
2523 .Ic ulimit
2524 command to display all resources.
2525 The parameter
2526 .Ar limit
2527 is not acceptable in this mode.
2528 .Pp
2529 The remaining options specify which resource value is to be
2530 displayed or modified.
2531 They are mutually exclusive.
2532 .Bl -tag -width indent
2533 .It Fl b Ar sbsize
2534 The maximum size of socket buffer usage, in bytes.
2535 .It Fl c Ar coredumpsize
2536 The maximal size of core dump files, in 512-byte blocks.
2537 .It Fl d Ar datasize
2538 The maximal size of the data segment of a process, in kilobytes.
2539 .It Fl f Ar filesize
2540 The maximal size of a file, in 512-byte blocks.
2541 .It Fl l Ar lockedmem
2542 The maximal size of memory that can be locked by a process, in
2543 kilobytes.
2544 .It Fl m Ar memoryuse
2545 The maximal resident set size of a process, in kilobytes.
2546 .It Fl n Ar nofiles
2547 The maximal number of descriptors that could be opened by a process.
2548 .It Fl p Ar pseudoterminals
2549 The maximal number of pseudo-terminals for this user ID.
2550 .It Fl s Ar stacksize
2551 The maximal size of the stack segment, in kilobytes.
2552 .It Fl t Ar time
2553 The maximal amount of CPU time to be used by each process, in seconds.
2554 .It Fl u Ar userproc
2555 The maximal number of simultaneous processes for this user ID.
2556 .It Fl v Ar virtualmem
2557 The maximal virtual size of a process, in kilobytes.
2558 .It Fl w Ar swapuse
2559 The maximum amount of swap space reserved or used for this user ID,
2560 in kilobytes.
2561 .El
2562 .It Ic umask Oo Fl S Oc Op Ar mask
2563 Set the file creation mask (see
2564 .Xr umask 2 )
2565 to the octal or symbolic (see
2566 .Xr chmod 1 )
2567 value specified by
2568 .Ar mask .
2569 If the argument is omitted, the current mask value is printed.
2570 If the
2571 .Fl S
2572 option is specified, the output is symbolic, otherwise the output is octal.
2573 .It Ic unalias Oo Fl a Oc Op Ar name ...
2574 The specified alias names are removed.
2575 If
2576 .Fl a
2577 is specified, all aliases are removed.
2578 .It Ic unset Oo Fl fv Oc Ar name ...
2579 The specified variables or functions are unset and unexported.
2580 If the
2581 .Fl v
2582 option is specified or no options are given, the
2583 .Ar name
2584 arguments are treated as variable names.
2585 If the
2586 .Fl f
2587 option is specified, the
2588 .Ar name
2589 arguments are treated as function names.
2590 .It Ic wait Op Ar job
2591 Wait for the specified
2592 .Ar job
2593 to complete and return the exit status of the last process in the
2594 .Ar job .
2595 If the argument is omitted, wait for all jobs to complete
2596 and return an exit status of zero.
2597 .El
2598 .Ss Commandline Editing
2599 When
2600 .Nm
2601 is being used interactively from a terminal, the current command
2602 and the command history
2603 (see
2604 .Ic fc
2605 in
2606 .Sx Built-in Commands )
2607 can be edited using
2608 .Nm vi Ns -mode
2609 command line editing.
2610 This mode uses commands similar
2611 to a subset of those described in the
2612 .Xr vi 1
2613 man page.
2614 The command
2615 .Dq Li "set -o vi"
2616 (or
2617 .Dq Li "set -V" )
2618 enables
2619 .Nm vi Ns -mode
2620 editing and places
2621 .Nm
2622 into
2623 .Nm vi
2624 insert mode.
2625 With
2626 .Nm vi Ns -mode
2627 enabled,
2628 .Nm
2629 can be switched between insert mode and command mode by typing
2630 .Aq ESC .
2631 Hitting
2632 .Aq return
2633 while in command mode will pass the line to the shell.
2634 .Pp
2635 Similarly, the
2636 .Dq Li "set -o emacs"
2637 (or
2638 .Dq Li "set -E" )
2639 command can be used to enable a subset of
2640 .Nm emacs Ns -style
2641 command line editing features.
2642 .Sh ENVIRONMENT
2643 The following environment variables affect the execution of
2644 .Nm :
2645 .Bl -tag -width ".Ev LANGXXXXXX"
2646 .It Ev ENV
2647 Initialization file for interactive shells.
2648 .It Ev LANG , Ev LC_*
2649 Locale settings.
2650 These are inherited by children of the shell,
2651 and is used in a limited manner by the shell itself.
2652 .It Ev PWD
2653 An absolute pathname for the current directory,
2654 possibly containing symbolic links.
2655 This is used and updated by the shell.
2656 .It Ev TERM
2657 The default terminal setting for the shell.
2658 This is inherited by children of the shell, and is used in the history
2659 editing modes.
2660 .El
2661 .Pp
2662 Additionally, all environment variables are turned into shell variables
2663 at startup,
2664 which may affect the shell as described under
2665 .Sx Special Variables .
2666 .Sh EXIT STATUS
2667 Errors that are detected by the shell, such as a syntax error, will
2668 cause the shell to exit with a non-zero exit status.
2669 If the shell is not an interactive shell, the execution of the shell
2670 file will be aborted.
2671 Otherwise the shell will return the exit status of the last command
2672 executed, or if the
2673 .Ic exit
2674 builtin is used with a numeric argument, it
2675 will return the argument.
2676 .Sh SEE ALSO
2677 .Xr builtin 1 ,
2678 .Xr chsh 1 ,
2679 .Xr echo 1 ,
2680 .Xr ed 1 ,
2681 .Xr emacs 1 ,
2682 .Xr kill 1 ,
2683 .Xr printf 1 ,
2684 .Xr pwd 1 ,
2685 .Xr test 1 ,
2686 .Xr vi 1 ,
2687 .Xr execve 2 ,
2688 .Xr getrlimit 2 ,
2689 .Xr umask 2 ,
2690 .Xr wctype 3 ,
2691 .Xr editrc 5
2692 .Sh HISTORY
2693 A
2694 .Nm
2695 command, the Thompson shell, appeared in
2696 .At v1 .
2697 It was superseded in
2698 .At v7
2699 by the Bourne shell, which inherited the name
2700 .Nm .
2701 .Pp
2702 This version of
2703 .Nm
2704 was rewritten in 1989 under the
2705 .Bx
2706 license after the Bourne shell from
2707 .At V.4 .
2708 .Sh AUTHORS
2709 This version of
2710 .Nm
2711 was originally written by
2712 .An Kenneth Almquist .
2713 .Sh BUGS
2714 The
2715 .Nm
2716 utility does not recognize multibyte characters other than UTF-8.
2717 Splitting using
2718 .Va IFS
2719 and the line editing library
2720 .Xr editline 3
2721 do not recognize multibyte characters.