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