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