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