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