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