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