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