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