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