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