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