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