]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - bin/sh/sh.1
vm_overcommit: put into __read_mostly section
[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 May 10, 2021
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 .El
1450 .It Va PS2
1451 The secondary prompt string, which defaults to
1452 .Dq Li "> " .
1453 .Va PS2
1454 may include any of the formatting sequences from
1455 .Va PS1 .
1456 .It Va PS4
1457 The prefix for the trace output (if
1458 .Fl x
1459 is active).
1460 The default is
1461 .Dq Li "+ " .
1462 .El
1463 .Ss Word Expansions
1464 This clause describes the various expansions that are
1465 performed on words.
1466 Not all expansions are performed on
1467 every word, as explained later.
1468 .Pp
1469 Tilde expansions, parameter expansions, command substitutions,
1470 arithmetic expansions, and quote removals that occur within
1471 a single word expand to a single field.
1472 It is only field
1473 splitting or pathname expansion that can create multiple
1474 fields from a single word.
1475 The single exception to this rule is
1476 the expansion of the special parameter
1477 .Va @
1478 within double-quotes,
1479 as was described above.
1480 .Pp
1481 The order of word expansion is:
1482 .Bl -enum
1483 .It
1484 Tilde Expansion, Parameter Expansion, Command Substitution,
1485 Arithmetic Expansion (these all occur at the same time).
1486 .It
1487 Field Splitting is performed on fields generated by step (1)
1488 unless the
1489 .Va IFS
1490 variable is null.
1491 .It
1492 Pathname Expansion (unless the
1493 .Fl f
1494 option is in effect).
1495 .It
1496 Quote Removal.
1497 .El
1498 .Pp
1499 The
1500 .Ql $
1501 character is used to introduce parameter expansion, command
1502 substitution, or arithmetic expansion.
1503 .Ss Tilde Expansion (substituting a user's home directory)
1504 A word beginning with an unquoted tilde character
1505 .Pq Ql ~
1506 is
1507 subjected to tilde expansion.
1508 All the characters up to a slash
1509 .Pq Ql /
1510 or the end of the word are treated as a username
1511 and are replaced with the user's home directory.
1512 If the
1513 username is missing (as in
1514 .Pa ~/foobar ) ,
1515 the tilde is replaced with the value of the
1516 .Va HOME
1517 variable (the current user's home directory).
1518 .Ss Parameter Expansion
1519 The format for parameter expansion is as follows:
1520 .Pp
1521 .D1 Li ${ Ns Ar expression Ns Li }
1522 .Pp
1523 where
1524 .Ar expression
1525 consists of all characters until the matching
1526 .Ql } .
1527 Any
1528 .Ql }
1529 escaped by a backslash or within a single-quoted or double-quoted
1530 string, and characters in
1531 embedded arithmetic expansions, command substitutions, and variable
1532 expansions, are not examined in determining the matching
1533 .Ql } .
1534 If the variants with
1535 .Ql + ,
1536 .Ql - ,
1537 .Ql =
1538 or
1539 .Ql ?\&
1540 occur within a double-quoted string,
1541 as an extension there may be unquoted parts
1542 (via double-quotes inside the expansion);
1543 .Ql }
1544 within such parts are also not examined in determining the matching
1545 .Ql } .
1546 .Pp
1547 The simplest form for parameter expansion is:
1548 .Pp
1549 .D1 Li ${ Ns Ar parameter Ns Li }
1550 .Pp
1551 The value, if any, of
1552 .Ar parameter
1553 is substituted.
1554 .Pp
1555 The parameter name or symbol can be enclosed in braces, which are
1556 optional except for positional parameters with more than one digit or
1557 when parameter is followed by a character that could be interpreted as
1558 part of the name.
1559 If a parameter expansion occurs inside double-quotes:
1560 .Bl -enum
1561 .It
1562 Field splitting is not performed on the results of the
1563 expansion, with the exception of the special parameter
1564 .Va @ .
1565 .It
1566 Pathname expansion is not performed on the results of the
1567 expansion.
1568 .El
1569 .Pp
1570 In addition, a parameter expansion can be modified by using one of the
1571 following formats.
1572 .Bl -tag -width indent
1573 .It Li ${ Ns Ar parameter Ns Li :- Ns Ar word Ns Li }
1574 Use Default Values.
1575 If
1576 .Ar parameter
1577 is unset or null, the expansion of
1578 .Ar word
1579 is substituted; otherwise, the value of
1580 .Ar parameter
1581 is substituted.
1582 .It Li ${ Ns Ar parameter Ns Li := Ns Ar word Ns Li }
1583 Assign Default Values.
1584 If
1585 .Ar parameter
1586 is unset or null, the expansion of
1587 .Ar word
1588 is assigned to
1589 .Ar parameter .
1590 In all cases, the
1591 final value of
1592 .Ar parameter
1593 is substituted.
1594 Quoting inside
1595 .Ar word
1596 does not prevent field splitting or pathname expansion.
1597 Only variables, not positional
1598 parameters or special parameters, can be
1599 assigned in this way.
1600 .It Li ${ Ns Ar parameter Ns Li :? Ns Oo Ar word Oc Ns Li }
1601 Indicate Error if Null or Unset.
1602 If
1603 .Ar parameter
1604 is unset or null, the expansion of
1605 .Ar word
1606 (or a message indicating it is unset if
1607 .Ar word
1608 is omitted) is written to standard
1609 error and the shell exits with a nonzero
1610 exit status.
1611 Otherwise, the value of
1612 .Ar parameter
1613 is substituted.
1614 An
1615 interactive shell need not exit.
1616 .It Li ${ Ns Ar parameter Ns Li :+ Ns Ar word Ns Li }
1617 Use Alternate Value.
1618 If
1619 .Ar parameter
1620 is unset or null, null is substituted;
1621 otherwise, the expansion of
1622 .Ar word
1623 is substituted.
1624 .El
1625 .Pp
1626 In the parameter expansions shown previously, use of the colon in the
1627 format results in a test for a parameter that is unset or null; omission
1628 of the colon results in a test for a parameter that is only unset.
1629 .Pp
1630 The
1631 .Ar word
1632 inherits the type of quoting
1633 (unquoted, double-quoted or here-document)
1634 from the surroundings,
1635 with the exception that a backslash that quotes a closing brace is removed
1636 during quote removal.
1637 .Bl -tag -width indent
1638 .It Li ${# Ns Ar parameter Ns Li }
1639 String Length.
1640 The length in characters of
1641 the value of
1642 .Ar parameter .
1643 .El
1644 .Pp
1645 The following four varieties of parameter expansion provide for substring
1646 processing.
1647 In each case, pattern matching notation
1648 (see
1649 .Sx Shell Patterns ) ,
1650 rather than regular expression notation,
1651 is used to evaluate the patterns.
1652 If parameter is one of the special parameters
1653 .Va *
1654 or
1655 .Va @ ,
1656 the result of the expansion is unspecified.
1657 Enclosing the full parameter expansion string in double-quotes does not
1658 cause the following four varieties of pattern characters to be quoted,
1659 whereas quoting characters within the braces has this effect.
1660 .Bl -tag -width indent
1661 .It Li ${ Ns Ar parameter Ns Li % Ns Ar word Ns Li }
1662 Remove Smallest Suffix Pattern.
1663 The
1664 .Ar word
1665 is expanded to produce a pattern.
1666 The
1667 parameter expansion then results in
1668 .Ar parameter ,
1669 with the smallest portion of the
1670 suffix matched by the pattern deleted.
1671 .It Li ${ Ns Ar parameter Ns Li %% Ns Ar word Ns Li }
1672 Remove Largest Suffix Pattern.
1673 The
1674 .Ar word
1675 is expanded to produce a pattern.
1676 The
1677 parameter expansion then results in
1678 .Ar parameter ,
1679 with the largest portion of the
1680 suffix matched by the pattern deleted.
1681 .It Li ${ Ns Ar parameter Ns Li # Ns Ar word Ns Li }
1682 Remove Smallest Prefix Pattern.
1683 The
1684 .Ar word
1685 is expanded to produce a pattern.
1686 The
1687 parameter expansion then results in
1688 .Ar parameter ,
1689 with the smallest portion of the
1690 prefix matched by the pattern deleted.
1691 .It Li ${ Ns Ar parameter Ns Li ## Ns Ar word Ns Li }
1692 Remove Largest Prefix Pattern.
1693 The
1694 .Ar word
1695 is expanded to produce a pattern.
1696 The
1697 parameter expansion then results in
1698 .Ar parameter ,
1699 with the largest portion of the
1700 prefix matched by the pattern deleted.
1701 .El
1702 .Ss Command Substitution
1703 Command substitution allows the output of a command to be substituted in
1704 place of the command name itself.
1705 Command substitution occurs when
1706 the command is enclosed as follows:
1707 .Pp
1708 .D1 Li $( Ns Ar command Ns Li )\&
1709 .Pp
1710 or the backquoted version:
1711 .Pp
1712 .D1 Li ` Ns Ar command Ns Li `
1713 .Pp
1714 The shell expands the command substitution by executing command
1715 and replacing the command substitution
1716 with the standard output of the command,
1717 removing sequences of one or more newlines at the end of the substitution.
1718 Embedded newlines before the end of the output are not removed;
1719 however, during field splitting, they may be translated into spaces
1720 depending on the value of
1721 .Va IFS
1722 and the quoting that is in effect.
1723 The command is executed in a subshell environment,
1724 except that the built-in commands
1725 .Ic jobid ,
1726 .Ic jobs ,
1727 and
1728 .Ic trap
1729 return information about the parent shell environment
1730 and
1731 .Ic times
1732 returns information about the same process
1733 if they are the only command in a command substitution.
1734 .Pp
1735 If a command substitution of the
1736 .Li $(
1737 form begins with a subshell,
1738 the
1739 .Li $(
1740 and
1741 .Li (\&
1742 must be separated by whitespace
1743 to avoid ambiguity with arithmetic expansion.
1744 .Ss Arithmetic Expansion
1745 Arithmetic expansion provides a mechanism for evaluating an arithmetic
1746 expression and substituting its value.
1747 The format for arithmetic expansion is as follows:
1748 .Pp
1749 .D1 Li $(( Ns Ar expression Ns Li ))
1750 .Pp
1751 The
1752 .Ar expression
1753 is treated as if it were in double-quotes, except
1754 that a double-quote inside the expression is not treated specially.
1755 The
1756 shell expands all tokens in the
1757 .Ar expression
1758 for parameter expansion,
1759 command substitution,
1760 arithmetic expansion
1761 and quote removal.
1762 .Pp
1763 The allowed expressions are a subset of C expressions,
1764 summarized below.
1765 .Bl -tag -width "Variables" -offset indent
1766 .It Values
1767 All values are of type
1768 .Ft intmax_t .
1769 .It Constants
1770 Decimal, octal (starting with
1771 .Li 0 )
1772 and hexadecimal (starting with
1773 .Li 0x )
1774 integer constants.
1775 .It Variables
1776 Shell variables can be read and written
1777 and contain integer constants.
1778 .It Unary operators
1779 .Li "! ~ + -"
1780 .It Binary operators
1781 .Li "* / % + - << >> < <= > >= == != & ^ | && ||"\&
1782 .It Assignment operators
1783 .Li "= += -= *= /= %= <<= >>= &= ^= |="
1784 .It Conditional operator
1785 .Li "? :"\&
1786 .El
1787 .Pp
1788 The result of the expression is substituted in decimal.
1789 .Ss White Space Splitting (Field Splitting)
1790 In certain contexts,
1791 after parameter expansion, command substitution, and
1792 arithmetic expansion the shell scans the results of
1793 expansions and substitutions that did not occur in double-quotes for
1794 field splitting and multiple fields can result.
1795 .Pp
1796 Characters in
1797 .Va IFS
1798 that are whitespace
1799 .Po
1800 .Aq space ,
1801 .Aq tab ,
1802 and
1803 .Aq newline
1804 .Pc
1805 are treated differently from other characters in
1806 .Va IFS .
1807 .Pp
1808 Whitespace in
1809 .Va IFS
1810 at the beginning or end of a word is discarded.
1811 .Pp
1812 Subsequently, a field is delimited by either
1813 .Bl -enum
1814 .It
1815 a non-whitespace character in
1816 .Va IFS
1817 with any whitespace in
1818 .Va IFS
1819 surrounding it, or
1820 .It
1821 one or more whitespace characters in
1822 .Va IFS .
1823 .El
1824 .Pp
1825 If a word ends with a non-whitespace character in
1826 .Va IFS ,
1827 there is no empty field after this character.
1828 .Pp
1829 If no field is delimited, the word is discarded.
1830 In particular, if a word consists solely of an unquoted substitution
1831 and the result of the substitution is null,
1832 it is removed by field splitting even if
1833 .Va IFS
1834 is null.
1835 .Ss Pathname Expansion (File Name Generation)
1836 Unless the
1837 .Fl f
1838 option is set,
1839 file name generation is performed
1840 after word splitting is complete.
1841 Each word is
1842 viewed as a series of patterns, separated by slashes.
1843 The
1844 process of expansion replaces the word with the names of
1845 all existing files whose names can be formed by replacing
1846 each pattern with a string that matches the specified pattern.
1847 There are two restrictions on this: first, a pattern cannot match
1848 a string containing a slash, and second,
1849 a pattern cannot match a string starting with a period
1850 unless the first character of the pattern is a period.
1851 The next section describes the patterns used for
1852 Pathname Expansion,
1853 the four varieties of parameter expansion for substring processing and the
1854 .Ic case
1855 command.
1856 .Ss Shell Patterns
1857 A pattern consists of normal characters, which match themselves,
1858 and meta-characters.
1859 The meta-characters are
1860 .Ql * ,
1861 .Ql \&? ,
1862 and
1863 .Ql \&[ .
1864 These characters lose their special meanings if they are quoted.
1865 When command or variable substitution is performed and the dollar sign
1866 or back quotes are not double-quoted, the value of the
1867 variable or the output of the command is scanned for these
1868 characters and they are turned into meta-characters.
1869 .Pp
1870 An asterisk
1871 .Pq Ql *
1872 matches any string of characters.
1873 A question mark
1874 .Pq Ql \&?
1875 matches any single character.
1876 A left bracket
1877 .Pq Ql \&[
1878 introduces a character class.
1879 The end of the character class is indicated by a
1880 .Ql \&] ;
1881 if the
1882 .Ql \&]
1883 is missing then the
1884 .Ql \&[
1885 matches a
1886 .Ql \&[
1887 rather than introducing a character class.
1888 A character class matches any of the characters between the square brackets.
1889 A locale-dependent range of characters may be specified using a minus sign.
1890 A named class of characters (see
1891 .Xr wctype 3 )
1892 may be specified by surrounding the name with
1893 .Ql \&[:\&
1894 and
1895 .Ql :\&] .
1896 For example,
1897 .Ql \&[\&[:alpha:\&]\&]
1898 is a shell pattern that matches a single letter.
1899 The character class may be complemented by making an exclamation point
1900 .Pq Ql !\&
1901 the first character of the character class.
1902 A caret
1903 .Pq Ql ^
1904 has the same effect but is non-standard.
1905 .Pp
1906 To include a
1907 .Ql \&]
1908 in a character class, make it the first character listed
1909 (after the
1910 .Ql \&!
1911 or
1912 .Ql ^ ,
1913 if any).
1914 To include a
1915 .Ql - ,
1916 make it the first or last character listed.
1917 .Ss Built-in Commands
1918 This section lists the built-in commands.
1919 .Bl -tag -width indent
1920 .It Ic \&:
1921 A null command that returns a 0 (true) exit value.
1922 .It Ic \&. Ar file
1923 The commands in the specified file are read and executed by the shell.
1924 The
1925 .Ic return
1926 command may be used to return to the
1927 .Ic \&.
1928 command's caller.
1929 If
1930 .Ar file
1931 contains any
1932 .Ql /
1933 characters, it is used as is.
1934 Otherwise, the shell searches the
1935 .Va PATH
1936 for the file.
1937 If it is not found in the
1938 .Va PATH ,
1939 it is sought in the current working directory.
1940 .It Ic \&[
1941 A built-in equivalent of
1942 .Xr test 1 .
1943 .It Ic alias Oo Ar name Ns Oo = Ns Ar string Oc ... Oc
1944 If
1945 .Ar name Ns = Ns Ar string
1946 is specified, the shell defines the alias
1947 .Ar name
1948 with value
1949 .Ar string .
1950 If just
1951 .Ar name
1952 is specified, the value of the alias
1953 .Ar name
1954 is printed.
1955 With no arguments, the
1956 .Ic alias
1957 built-in command prints the names and values of all defined aliases
1958 (see
1959 .Ic unalias ) .
1960 Alias values are written with appropriate quoting so that they are
1961 suitable for re-input to the shell.
1962 Also see the
1963 .Sx Aliases
1964 subsection.
1965 .It Ic bg Op Ar job ...
1966 Continue the specified jobs
1967 (or the current job if no jobs are given)
1968 in the background.
1969 .It Ic bind Oo Fl aeklrsv Oc Oo Ar key Oo Ar command Oc Oc
1970 List or alter key bindings for the line editor.
1971 This command is documented in
1972 .Xr editrc 5 .
1973 .It Ic break Op Ar num
1974 See the
1975 .Sx Flow-Control Constructs
1976 subsection.
1977 .It Ic builtin Ar cmd Op Ar arg ...
1978 Execute the specified built-in command,
1979 .Ar cmd .
1980 This is useful when the user wishes to override a shell function
1981 with the same name as a built-in command.
1982 .It Ic cd Oo Fl L | P Oc Oo Fl e Oc Op Ar directory
1983 .It Ic cd Fl
1984 Switch to the specified
1985 .Ar directory ,
1986 to the directory specified in the
1987 .Va HOME
1988 environment variable if no
1989 .Ar directory
1990 is specified or
1991 to the directory specified in the
1992 .Va OLDPWD
1993 environment variable if
1994 .Ar directory
1995 is
1996 .Fl .
1997 If
1998 .Ar directory
1999 does not begin with
2000 .Pa / , \&. ,
2001 or
2002 .Pa .. ,
2003 then the directories listed in the
2004 .Va CDPATH
2005 variable will be
2006 searched for the specified
2007 .Ar directory .
2008 If
2009 .Va CDPATH
2010 is unset, the current directory is searched.
2011 The format of
2012 .Va CDPATH
2013 is the same as that of
2014 .Va PATH .
2015 In an interactive shell,
2016 the
2017 .Ic cd
2018 command will print out the name of the directory
2019 that it actually switched to
2020 if the
2021 .Va CDPATH
2022 mechanism was used or if
2023 .Ar directory
2024 was
2025 .Fl .
2026 .Pp
2027 If the
2028 .Fl P
2029 option is specified,
2030 .Pa ..
2031 is handled physically and symbolic links are resolved before
2032 .Pa ..
2033 components are processed.
2034 If the
2035 .Fl L
2036 option is specified,
2037 .Pa ..
2038 is handled logically.
2039 This is the default.
2040 .Pp
2041 The
2042 .Fl e
2043 option causes
2044 .Ic cd
2045 to return exit status 1 if the full pathname of the new directory
2046 cannot be determined reliably or at all.
2047 Normally this is not considered an error,
2048 although a warning is printed.
2049 .Pp
2050 If changing the directory fails, the exit status is greater than 1.
2051 If the directory is changed, the exit status is 0, or also 1 if
2052 .Fl e
2053 was given.
2054 .It Ic chdir
2055 A synonym for the
2056 .Ic cd
2057 built-in command.
2058 .It Ic command Oo Fl p Oc Op Ar utility Op Ar argument ...
2059 .It Ic command Oo Fl p Oc Fl v Ar utility
2060 .It Ic command Oo Fl p Oc Fl V Ar utility
2061 The first form of invocation executes the specified
2062 .Ar utility ,
2063 ignoring shell functions in the search.
2064 If
2065 .Ar utility
2066 is a special builtin,
2067 it is executed as if it were a regular builtin.
2068 .Pp
2069 If the
2070 .Fl p
2071 option is specified, the command search is performed using a
2072 default value of
2073 .Va PATH
2074 that is guaranteed to find all of the standard utilities.
2075 .Pp
2076 If the
2077 .Fl v
2078 option is specified,
2079 .Ar utility
2080 is not executed but a description of its interpretation by the shell is
2081 printed.
2082 For ordinary commands the output is the path name; for shell built-in
2083 commands, shell functions and keywords only the name is written.
2084 Aliases are printed as
2085 .Dq Ic alias Ar name Ns = Ns Ar value .
2086 .Pp
2087 The
2088 .Fl V
2089 option is identical to
2090 .Fl v
2091 except for the output.
2092 It prints
2093 .Dq Ar utility Ic is Ar description
2094 where
2095 .Ar description
2096 is either
2097 the path name to
2098 .Ar utility ,
2099 a special shell builtin,
2100 a shell builtin,
2101 a shell function,
2102 a shell keyword
2103 or
2104 an alias for
2105 .Ar value .
2106 .It Ic continue Op Ar num
2107 See the
2108 .Sx Flow-Control Constructs
2109 subsection.
2110 .It Ic echo Oo Fl e | n Oc Op Ar string ...
2111 Print a space-separated list of the arguments to the standard output
2112 and append a newline character.
2113 .Bl -tag -width indent
2114 .It Fl n
2115 Suppress the output of the trailing newline.
2116 .It Fl e
2117 Process C-style backslash escape sequences.
2118 The
2119 .Ic echo
2120 command understands the following character escapes:
2121 .Bl -tag -width indent
2122 .It \ea
2123 Alert (ring the terminal bell)
2124 .It \eb
2125 Backspace
2126 .It \ec
2127 Suppress the trailing newline (this has the side-effect of truncating the
2128 line if it is not the last character)
2129 .It \ee
2130 The ESC character (ASCII 0x1b)
2131 .It \ef
2132 Formfeed
2133 .It \en
2134 Newline
2135 .It \er
2136 Carriage return
2137 .It \et
2138 Horizontal tab
2139 .It \ev
2140 Vertical tab
2141 .It \e\e
2142 Literal backslash
2143 .It \e0nnn
2144 (Zero) The character whose octal value is
2145 .Ar nnn
2146 .El
2147 .Pp
2148 If
2149 .Ar string
2150 is not enclosed in quotes then the backslash itself must be escaped
2151 with a backslash to protect it from the shell.
2152 For example
2153 .Bd -literal -offset indent
2154 $ echo -e "a\evb"
2155 a
2156  b
2157 $ echo -e a\e\evb
2158 a
2159  b
2160 $ echo -e "a\e\eb"
2161 a\eb
2162 $ echo -e a\e\e\e\eb
2163 a\eb
2164 .Ed
2165 .El
2166 .Pp
2167 Only one of the
2168 .Fl e
2169 and
2170 .Fl n
2171 options may be specified.
2172 .It Ic eval Ar string ...
2173 Concatenate all the arguments with spaces.
2174 Then re-parse and execute the command.
2175 .It Ic exec Op Ar command Op arg ...
2176 Unless
2177 .Ar command
2178 is omitted,
2179 the shell process is replaced with the specified program
2180 (which must be a real program, not a shell built-in command or function).
2181 Any redirections on the
2182 .Ic exec
2183 command are marked as permanent,
2184 so that they are not undone when the
2185 .Ic exec
2186 command finishes.
2187 .It Ic exit Op Ar exitstatus
2188 Terminate the shell process.
2189 If
2190 .Ar exitstatus
2191 is given
2192 it is used as the exit status of the shell.
2193 Otherwise, if the shell is executing an
2194 .Cm EXIT
2195 trap, the exit status of the last command before the trap is used;
2196 if the shell is executing a trap for a signal,
2197 the shell exits by resending the signal to itself.
2198 Otherwise, the exit status of the preceding command is used.
2199 The exit status should be an integer between 0 and 255.
2200 .It Ic export Ar name ...
2201 .It Ic export Op Fl p
2202 The specified names are exported so that they will
2203 appear in the environment of subsequent commands.
2204 The only way to un-export a variable is to
2205 .Ic unset
2206 it.
2207 The shell allows the value of a variable to be set
2208 at the same time as it is exported by writing
2209 .Pp
2210 .D1 Ic export Ar name Ns = Ns Ar value
2211 .Pp
2212 With no arguments the
2213 .Ic export
2214 command lists the names
2215 of all exported variables.
2216 If the
2217 .Fl p
2218 option is specified, the exported variables are printed as
2219 .Dq Ic export Ar name Ns = Ns Ar value
2220 lines, suitable for re-input to the shell.
2221 .It Ic false
2222 A null command that returns a non-zero (false) exit value.
2223 .It Ic fc Oo Fl e Ar editor Oc Op Ar first Op Ar last
2224 .It Ic fc Fl l Oo Fl nr Oc Op Ar first Op Ar last
2225 .It Ic fc Fl s Oo Ar old Ns = Ns Ar new Oc Op Ar first
2226 The
2227 .Ic fc
2228 built-in command lists, or edits and re-executes,
2229 commands previously entered to an interactive shell.
2230 .Bl -tag -width indent
2231 .It Fl e Ar editor
2232 Use the editor named by
2233 .Ar editor
2234 to edit the commands.
2235 The
2236 .Ar editor
2237 string is a command name,
2238 subject to search via the
2239 .Va PATH
2240 variable.
2241 The value in the
2242 .Va FCEDIT
2243 variable is used as a default when
2244 .Fl e
2245 is not specified.
2246 If
2247 .Va FCEDIT
2248 is null or unset, the value of the
2249 .Va EDITOR
2250 variable is used.
2251 If
2252 .Va EDITOR
2253 is null or unset,
2254 .Xr ed 1
2255 is used as the editor.
2256 .It Fl l No (ell)
2257 List the commands rather than invoking
2258 an editor on them.
2259 The commands are written in the
2260 sequence indicated by the
2261 .Ar first
2262 and
2263 .Ar last
2264 operands, as affected by
2265 .Fl r ,
2266 with each command preceded by the command number.
2267 .It Fl n
2268 Suppress command numbers when listing with
2269 .Fl l .
2270 .It Fl r
2271 Reverse the order of the commands listed
2272 (with
2273 .Fl l )
2274 or edited
2275 (with neither
2276 .Fl l
2277 nor
2278 .Fl s ) .
2279 .It Fl s
2280 Re-execute the command without invoking an editor.
2281 .It Ar first
2282 .It Ar last
2283 Select the commands to list or edit.
2284 The number of previous commands that can be accessed
2285 are determined by the value of the
2286 .Va HISTSIZE
2287 variable.
2288 The value of
2289 .Ar first
2290 or
2291 .Ar last
2292 or both are one of the following:
2293 .Bl -tag -width indent
2294 .It Oo Cm + Oc Ns Ar num
2295 A positive number representing a command number;
2296 command numbers can be displayed with the
2297 .Fl l
2298 option.
2299 .It Fl Ar num
2300 A negative decimal number representing the
2301 command that was executed
2302 .Ar num
2303 of
2304 commands previously.
2305 For example, \-1 is the immediately previous command.
2306 .It Ar string
2307 A string indicating the most recently entered command
2308 that begins with that string.
2309 If the
2310 .Ar old Ns = Ns Ar new
2311 operand is not also specified with
2312 .Fl s ,
2313 the string form of the first operand cannot contain an embedded equal sign.
2314 .El
2315 .El
2316 .Pp
2317 The following variables affect the execution of
2318 .Ic fc :
2319 .Bl -tag -width ".Va HISTSIZE"
2320 .It Va FCEDIT
2321 Name of the editor to use for history editing.
2322 .It Va HISTSIZE
2323 The number of previous commands that are accessible.
2324 .El
2325 .It Ic fg Op Ar job
2326 Move the specified
2327 .Ar job
2328 or the current job to the foreground.
2329 .It Ic getopts Ar optstring var
2330 The POSIX
2331 .Ic getopts
2332 command.
2333 The
2334 .Ic getopts
2335 command deprecates the older
2336 .Xr getopt 1
2337 command.
2338 The first argument should be a series of letters, each possibly
2339 followed by a colon which indicates that the option takes an argument.
2340 The specified variable is set to the parsed option.
2341 The index of
2342 the next argument is placed into the shell variable
2343 .Va OPTIND .
2344 If an option takes an argument, it is placed into the shell variable
2345 .Va OPTARG .
2346 If an invalid option is encountered,
2347 .Ar var
2348 is set to
2349 .Ql \&? .
2350 It returns a false value (1) when it encounters the end of the options.
2351 A new set of arguments may be parsed by assigning
2352 .Li OPTIND=1 .
2353 .It Ic hash Oo Fl rv Oc Op Ar command ...
2354 The shell maintains a hash table which remembers the locations of commands.
2355 With no arguments whatsoever, the
2356 .Ic hash
2357 command prints out the contents of this table.
2358 .Pp
2359 With arguments, the
2360 .Ic hash
2361 command removes each specified
2362 .Ar command
2363 from the hash table (unless they are functions) and then locates it.
2364 With the
2365 .Fl v
2366 option,
2367 .Ic hash
2368 prints the locations of the commands as it finds them.
2369 The
2370 .Fl r
2371 option causes the
2372 .Ic hash
2373 command to delete all the entries in the hash table except for functions.
2374 .It Ic jobid Op Ar job
2375 Print the process IDs of the processes in the specified
2376 .Ar job .
2377 If the
2378 .Ar job
2379 argument is omitted, use the current job.
2380 .It Ic jobs Oo Fl lps Oc Op Ar job ...
2381 Print information about the specified jobs, or all jobs if no
2382 .Ar job
2383 argument is given.
2384 The information printed includes job ID, status and command name.
2385 .Pp
2386 If the
2387 .Fl l
2388 option is specified, the PID of each job is also printed.
2389 If the
2390 .Fl p
2391 option is specified, only the process IDs for the process group leaders
2392 are printed, one per line.
2393 If the
2394 .Fl s
2395 option is specified, only the PIDs of the job commands are printed, one per
2396 line.
2397 .It Ic kill
2398 A built-in equivalent of
2399 .Xr kill 1
2400 that additionally supports sending signals to jobs.
2401 .It Ic local Oo Ar variable ... Oc Op Fl
2402 See the
2403 .Sx Functions
2404 subsection.
2405 .It Ic printf
2406 A built-in equivalent of
2407 .Xr printf 1 .
2408 .It Ic pwd Op Fl L | P
2409 Print the path of the current directory.
2410 The built-in command may
2411 differ from the program of the same name because the
2412 built-in command remembers what the current directory
2413 is rather than recomputing it each time.
2414 This makes
2415 it faster.
2416 However, if the current directory is
2417 renamed,
2418 the built-in version of
2419 .Xr pwd 1
2420 will continue to print the old name for the directory.
2421 .Pp
2422 If the
2423 .Fl P
2424 option is specified, symbolic links are resolved.
2425 If the
2426 .Fl L
2427 option is specified, the shell's notion of the current directory
2428 is printed (symbolic links are not resolved).
2429 This is the default.
2430 .It Ic read Oo Fl p Ar prompt Oc Oo
2431 .Fl t Ar timeout Oc Oo Fl er Oc Ar variable ...
2432 The
2433 .Ar prompt
2434 is printed if the
2435 .Fl p
2436 option is specified
2437 and the standard input is a terminal.
2438 Then a line is
2439 read from the standard input.
2440 The trailing newline
2441 is deleted from the line and the line is split as
2442 described in the section on
2443 .Sx White Space Splitting (Field Splitting)\&
2444 above, and
2445 the pieces are assigned to the variables in order.
2446 If there are more pieces than variables, the remaining
2447 pieces (along with the characters in
2448 .Va IFS
2449 that separated them)
2450 are assigned to the last variable.
2451 If there are more variables than pieces, the remaining
2452 variables are assigned the null string.
2453 .Pp
2454 Backslashes are treated specially, unless the
2455 .Fl r
2456 option is
2457 specified.
2458 If a backslash is followed by
2459 a newline, the backslash and the newline will be
2460 deleted.
2461 If a backslash is followed by any other
2462 character, the backslash will be deleted and the following
2463 character will be treated as though it were not in
2464 .Va IFS ,
2465 even if it is.
2466 .Pp
2467 If the
2468 .Fl t
2469 option is specified and the
2470 .Ar timeout
2471 elapses before a complete line of input is supplied,
2472 the
2473 .Ic read
2474 command will return an exit status as if terminated by
2475 .Dv SIGALRM
2476 without assigning any values.
2477 The
2478 .Ar timeout
2479 value may optionally be followed by one of
2480 .Ql s ,
2481 .Ql m
2482 or
2483 .Ql h
2484 to explicitly specify seconds, minutes or hours.
2485 If none is supplied,
2486 .Ql s
2487 is assumed.
2488 .Pp
2489 The
2490 .Fl e
2491 option exists only for backward compatibility with older scripts.
2492 .Pp
2493 The exit status is 0 on success, 1 on end of file,
2494 between 2 and 128 if an error occurs
2495 and greater than 128 if a trapped signal interrupts
2496 .Ic read .
2497 .It Ic readonly Oo Fl p Oc Op Ar name ...
2498 Each specified
2499 .Ar name
2500 is marked as read only,
2501 so that it cannot be subsequently modified or unset.
2502 The shell allows the value of a variable to be set
2503 at the same time as it is marked read only
2504 by using the following form:
2505 .Pp
2506 .D1 Ic readonly Ar name Ns = Ns Ar value
2507 .Pp
2508 With no arguments the
2509 .Ic readonly
2510 command lists the names of all read only variables.
2511 If the
2512 .Fl p
2513 option is specified, the read-only variables are printed as
2514 .Dq Ic readonly Ar name Ns = Ns Ar value
2515 lines, suitable for re-input to the shell.
2516 .It Ic return Op Ar exitstatus
2517 See the
2518 .Sx Functions
2519 subsection.
2520 .It Ic set Oo Fl /+abCEefIimnpTuVvx Oc Oo Fl /+o Ar longname
2521 .Oc Op Fl - Ar arg ...
2522 The
2523 .Ic set
2524 command performs three different functions:
2525 .Bl -item
2526 .It
2527 With no arguments, it lists the values of all shell variables.
2528 .It
2529 If options are given,
2530 either in short form or using the long
2531 .Dq Fl /+o Ar longname
2532 form,
2533 it sets or clears the specified options as described in the section called
2534 .Sx Argument List Processing .
2535 .It
2536 If the
2537 .Dq Fl -
2538 option is specified,
2539 .Ic set
2540 will replace the shell's positional parameters with the subsequent
2541 arguments.
2542 If no arguments follow the
2543 .Dq Fl -
2544 option,
2545 all the positional parameters will be cleared,
2546 which is equivalent to executing the command
2547 .Dq Li "shift $#" .
2548 The
2549 .Dq Fl -
2550 flag may be omitted when specifying arguments to be used
2551 as positional replacement parameters.
2552 This is not recommended,
2553 because the first argument may begin with a dash
2554 .Pq Ql -
2555 or a plus
2556 .Pq Ql + ,
2557 which the
2558 .Ic set
2559 command will interpret as a request to enable or disable options.
2560 .El
2561 .It Ic setvar Ar variable value
2562 Assigns the specified
2563 .Ar value
2564 to the specified
2565 .Ar variable .
2566 The
2567 .Ic setvar
2568 command is intended to be used in functions that
2569 assign values to variables whose names are passed as parameters.
2570 In general it is better to write
2571 .Dq Ar variable Ns = Ns Ar value
2572 rather than using
2573 .Ic setvar .
2574 .It Ic shift Op Ar n
2575 Shift the positional parameters
2576 .Ar n
2577 times, or once if
2578 .Ar n
2579 is not specified.
2580 A shift sets the value of
2581 .Li $1
2582 to the value of
2583 .Li $2 ,
2584 the value of
2585 .Li $2
2586 to the value of
2587 .Li $3 ,
2588 and so on,
2589 decreasing the value of
2590 .Li $#
2591 by one.
2592 For portability, shifting if there are zero positional parameters
2593 should be avoided, since the shell may abort.
2594 .It Ic test
2595 A built-in equivalent of
2596 .Xr test 1 .
2597 .It Ic times
2598 Print the amount of time spent executing the shell process and its children.
2599 The first output line shows the user and system times for the shell process
2600 itself, the second one contains the user and system times for the
2601 children.
2602 .It Ic trap Oo Ar action Oc Ar signal ...
2603 .It Ic trap Fl l
2604 Cause the shell to parse and execute
2605 .Ar action
2606 when any specified
2607 .Ar signal
2608 is received.
2609 The signals are specified by name or number.
2610 In addition, the pseudo-signal
2611 .Cm EXIT
2612 may be used to specify an
2613 .Ar action
2614 that is performed when the shell terminates.
2615 The
2616 .Ar action
2617 may be an empty string or a dash
2618 .Pq Ql - ;
2619 the former causes the specified signal to be ignored
2620 and the latter causes the default action to be taken.
2621 Omitting the
2622 .Ar action
2623 and using only signal numbers is another way to request the default action.
2624 In a subshell or utility environment,
2625 the shell resets trapped (but not ignored) signals to the default action.
2626 The
2627 .Ic trap
2628 command has no effect on signals that were ignored on entry to the shell.
2629 .Pp
2630 Option
2631 .Fl l
2632 causes the
2633 .Ic trap
2634 command to display a list of valid signal names.
2635 .It Ic true
2636 A null command that returns a 0 (true) exit value.
2637 .It Ic type Op Ar name ...
2638 Interpret each
2639 .Ar name
2640 as a command and print the resolution of the command search.
2641 Possible resolutions are:
2642 shell keyword, alias, special shell builtin, shell builtin, command,
2643 tracked alias
2644 and not found.
2645 For aliases the alias expansion is printed;
2646 for commands and tracked aliases
2647 the complete pathname of the command is printed.
2648 .It Ic ulimit Oo Fl HSabcdfklmnopstuvw Oc Op Ar limit
2649 Set or display resource limits (see
2650 .Xr getrlimit 2 ) .
2651 If
2652 .Ar limit
2653 is specified, the named resource will be set;
2654 otherwise the current resource value will be displayed.
2655 .Pp
2656 If
2657 .Fl H
2658 is specified, the hard limits will be set or displayed.
2659 While everybody is allowed to reduce a hard limit,
2660 only the superuser can increase it.
2661 The
2662 .Fl S
2663 option
2664 specifies the soft limits instead.
2665 When displaying limits,
2666 only one of
2667 .Fl S
2668 or
2669 .Fl H
2670 can be given.
2671 The default is to display the soft limits,
2672 and to set both the hard and the soft limits.
2673 .Pp
2674 Option
2675 .Fl a
2676 causes the
2677 .Ic ulimit
2678 command to display all resources.
2679 The parameter
2680 .Ar limit
2681 is not acceptable in this mode.
2682 .Pp
2683 The remaining options specify which resource value is to be
2684 displayed or modified.
2685 They are mutually exclusive.
2686 .Bl -tag -width indent
2687 .It Fl b Ar sbsize
2688 The maximum size of socket buffer usage, in bytes.
2689 .It Fl c Ar coredumpsize
2690 The maximal size of core dump files, in 512-byte blocks.
2691 Setting
2692 .Ar coredumpsize
2693 to 0 prevents core dump files from being created.
2694 .It Fl d Ar datasize
2695 The maximal size of the data segment of a process, in kilobytes.
2696 .It Fl f Ar filesize
2697 The maximal size of a file, in 512-byte blocks.
2698 .It Fl k Ar kqueues
2699 The maximal number of kqueues
2700 (see
2701 .Xr kqueue 2 )
2702 for this user ID.
2703 .It Fl l Ar lockedmem
2704 The maximal size of memory that can be locked by a process, in
2705 kilobytes.
2706 .It Fl m Ar memoryuse
2707 The maximal resident set size of a process, in kilobytes.
2708 .It Fl n Ar nofiles
2709 The maximal number of descriptors that could be opened by a process.
2710 .It Fl o Ar umtxp
2711 The maximal number of process-shared locks
2712 (see
2713 .Xr pthread 3 )
2714 for this user ID.
2715 .It Fl p Ar pseudoterminals
2716 The maximal number of pseudo-terminals for this user ID.
2717 .It Fl s Ar stacksize
2718 The maximal size of the stack segment, in kilobytes.
2719 .It Fl t Ar time
2720 The maximal amount of CPU time to be used by each process, in seconds.
2721 .It Fl u Ar userproc
2722 The maximal number of simultaneous processes for this user ID.
2723 .It Fl v Ar virtualmem
2724 The maximal virtual size of a process, in kilobytes.
2725 .It Fl w Ar swapuse
2726 The maximum amount of swap space reserved or used for this user ID,
2727 in kilobytes.
2728 .El
2729 .It Ic umask Oo Fl S Oc Op Ar mask
2730 Set the file creation mask (see
2731 .Xr umask 2 )
2732 to the octal or symbolic (see
2733 .Xr chmod 1 )
2734 value specified by
2735 .Ar mask .
2736 If the argument is omitted, the current mask value is printed.
2737 If the
2738 .Fl S
2739 option is specified, the output is symbolic, otherwise the output is octal.
2740 .It Ic unalias Oo Fl a Oc Op Ar name ...
2741 The specified alias names are removed.
2742 If
2743 .Fl a
2744 is specified, all aliases are removed.
2745 .It Ic unset Oo Fl fv Oc Ar name ...
2746 The specified variables or functions are unset and unexported.
2747 If the
2748 .Fl v
2749 option is specified or no options are given, the
2750 .Ar name
2751 arguments are treated as variable names.
2752 If the
2753 .Fl f
2754 option is specified, the
2755 .Ar name
2756 arguments are treated as function names.
2757 .It Ic wait Op Ar job ...
2758 Wait for each specified
2759 .Ar job
2760 to complete and return the exit status of the last process in the
2761 last specified
2762 .Ar job .
2763 If any
2764 .Ar job
2765 specified is unknown to the shell, it is treated as if it
2766 were a known job that exited with exit status 127.
2767 If no operands are given, wait for all jobs to complete
2768 and return an exit status of zero.
2769 .El
2770 .Ss Command Line Editing
2771 When
2772 .Nm
2773 is being used interactively from a terminal, the current command
2774 and the command history
2775 (see
2776 .Ic fc
2777 in
2778 .Sx Built-in Commands )
2779 can be edited using
2780 .Nm vi Ns -mode
2781 command line editing.
2782 This mode uses commands similar
2783 to a subset of those described in the
2784 .Xr vi 1
2785 man page.
2786 The command
2787 .Dq Li "set -o vi"
2788 (or
2789 .Dq Li "set -V" )
2790 enables
2791 .Nm vi Ns -mode
2792 editing and places
2793 .Nm
2794 into
2795 .Nm vi
2796 insert mode.
2797 With
2798 .Nm vi Ns -mode
2799 enabled,
2800 .Nm
2801 can be switched between insert mode and command mode by typing
2802 .Aq ESC .
2803 Hitting
2804 .Aq return
2805 while in command mode will pass the line to the shell.
2806 .Pp
2807 Similarly, the
2808 .Dq Li "set -o emacs"
2809 (or
2810 .Dq Li "set -E" )
2811 command can be used to enable a subset of
2812 .Nm emacs Ns -style
2813 command line editing features.
2814 .Sh ENVIRONMENT
2815 The following environment variables affect the execution of
2816 .Nm :
2817 .Bl -tag -width ".Ev LANGXXXXXX"
2818 .It Ev ENV
2819 Initialization file for interactive shells.
2820 .It Ev LANG , Ev LC_*
2821 Locale settings.
2822 These are inherited by children of the shell,
2823 and is used in a limited manner by the shell itself.
2824 .It Ev OLDPWD
2825 The previous current directory.
2826 This is used and updated by
2827 .Ic cd .
2828 .It Ev PWD
2829 An absolute pathname for the current directory,
2830 possibly containing symbolic links.
2831 This is used and updated by the shell.
2832 .It Ev TERM
2833 The default terminal setting for the shell.
2834 This is inherited by children of the shell, and is used in the history
2835 editing modes.
2836 .El
2837 .Pp
2838 Additionally, environment variables are turned into shell variables
2839 at startup,
2840 which may affect the shell as described under
2841 .Sx Special Variables .
2842 .Sh FILES
2843 .Bl -tag -width "/etc/suid_profileXX" -compact
2844 .It Pa ~/.profile
2845 User's login profile.
2846 .It Pa /etc/profile
2847 System login profile.
2848 .It Pa /etc/shells
2849 Shell database.
2850 .It Pa /etc/suid_profile
2851 Privileged shell profile.
2852 .El
2853 .Sh EXIT STATUS
2854 If the
2855 .Ar script
2856 cannot be found, the exit status will be 127;
2857 if it cannot be opened for another reason, the exit status will be 126.
2858 Other errors that are detected by the shell, such as a syntax error, will
2859 cause the shell to exit with a non-zero exit status.
2860 If the shell is not an interactive shell, the execution of the shell
2861 file will be aborted.
2862 Otherwise the shell will return the exit status of the last command
2863 executed, or if the
2864 .Ic exit
2865 builtin is used with a numeric argument, it
2866 will return the argument.
2867 .Sh SEE ALSO
2868 .Xr builtin 1 ,
2869 .Xr chsh 1 ,
2870 .Xr echo 1 ,
2871 .Xr ed 1 ,
2872 .Xr emacs 1 Pq Pa ports/editors/emacs ,
2873 .Xr kill 1 ,
2874 .Xr printf 1 ,
2875 .Xr pwd 1 ,
2876 .Xr test 1 ,
2877 .Xr vi 1 ,
2878 .Xr execve 2 ,
2879 .Xr getrlimit 2 ,
2880 .Xr umask 2 ,
2881 .Xr wctype 3 ,
2882 .Xr editrc 5 ,
2883 .Xr shells 5
2884 .Sh HISTORY
2885 A
2886 .Nm
2887 command, the Thompson shell, appeared in
2888 .At v1 .
2889 It was superseded in
2890 .At v7
2891 by the Bourne shell, which inherited the name
2892 .Nm .
2893 .Pp
2894 This version of
2895 .Nm
2896 was rewritten in 1989 under the
2897 .Bx
2898 license after the Bourne shell from
2899 .At V.4 .
2900 .Sh AUTHORS
2901 This version of
2902 .Nm
2903 was originally written by
2904 .An Kenneth Almquist .
2905 .Sh BUGS
2906 The
2907 .Nm
2908 utility does not recognize multibyte characters other than UTF-8.
2909 Splitting using
2910 .Va IFS
2911 does not recognize multibyte characters.