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