xref: /freebsd/bin/sh/sh.1 (revision 4cf49a43559ed9fdad601bdcccd2c55963008675)
1.\" Copyright (c) 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Kenneth Almquist.
6.\"
7.\" Redistribution and use in source and binary forms, with or without
8.\" modification, are permitted provided that the following conditions
9.\" are met:
10.\" 1. Redistributions of source code must retain the above copyright
11.\"    notice, this list of conditions and the following disclaimer.
12.\" 2. Redistributions in binary form must reproduce the above copyright
13.\"    notice, this list of conditions and the following disclaimer in the
14.\"    documentation and/or other materials provided with the distribution.
15.\" 3. All advertising materials mentioning features or use of this software
16.\"    must display the following acknowledgement:
17.\"	This product includes software developed by the University of
18.\"	California, Berkeley and its contributors.
19.\" 4. Neither the name of the University nor the names of its contributors
20.\"    may be used to endorse or promote products derived from this software
21.\"    without specific prior written permission.
22.\"
23.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33.\" SUCH DAMAGE.
34.\"
35.\"	from: @(#)sh.1	8.6 (Berkeley) 5/4/95
36.\" $FreeBSD$
37.\"
38.Dd May 5, 1995
39.Dt SH 1
40.Os BSD 4
41.Sh NAME
42.Nm sh
43.Nd command interpreter (shell)
44.Sh SYNOPSIS
45.Nm
46.Op Fl /+abCEefIimnpsTuVvx
47.Op Fl /+o Ar longname
48.Op Fl c Ar string
49.Op Ar arg ...
50.Sh DESCRIPTION
51.Nm Sh
52is the standard command interpreter for the system.
53The current version of
54.Nm
55is in the process of being changed to
56conform with the
57.St -p1003.2
58specification for the shell.  This version has many features which make
59it appear
60similar in some respects to the Korn shell, but it is not a Korn
61shell clone like GNU
62.Xr bash 1 .
63Only features
64designated by POSIX, plus a few Berkeley extensions, are being
65incorporated into this shell.
66This man page is not intended to be a tutorial nor a complete
67specification of the shell.
68.Ss Overview
69The shell is a command that reads lines from
70either a file or the terminal, interprets them, and
71generally executes other commands.
72It is the program that is started when a user logs into the system,
73although a user can select a different shell with the
74.Xr chsh 1
75command.
76The shell
77implements a language that has flow control constructs,
78a macro facility that provides a variety of features in
79addition to data storage, along with builtin history and line
80editing capabilities.  It incorporates many features to
81aid interactive use and has the advantage that the interpretative
82language is common to both interactive and non-interactive
83use (shell scripts).  That is, commands can be typed directly
84to the running shell or can be put into a file,
85which can be executed directly by the shell.
86.Ss Invocation
87.\"
88.\" XXX This next sentence is incredibly confusing.
89.\"
90If no arguments are present and if the standard input of the shell
91is connected to a terminal
92(or if the
93.Fl i
94option is set),
95the shell is considered an interactive shell.  An interactive shell
96generally prompts before each command and handles programming
97and command errors differently (as described below).
98When first starting, the shell inspects argument 0, and
99if it begins with a dash
100.Pq Li - ,
101the shell is also considered a login shell.
102This is normally done automatically by the system
103when the user first logs in.  A login shell first reads commands
104from the files
105.Pa /etc/profile
106and then
107.Pa .profile
108if they exist.  If the environment variable
109.Ev ENV
110is set on entry to a shell, or is set in the
111.Pa .profile
112of a login shell, the shell then reads commands from the file named in
113.Ev ENV .
114Therefore, a user should place commands that are to be executed only
115at login time in the
116.Pa .profile
117file, and commands that are executed for every shell inside the
118.Ev ENV
119file.
120The user can set the
121.Ev ENV
122variable to some file by placing the following line in the file
123.Pa .profile
124in the home directory,
125substituting for
126.Pa .shinit
127the filename desired:
128.Pp
129.Dl ENV=$HOME/.shinit; export ENV
130.Pp
131The first non-option argument specified on the command line
132will be treated as the
133name of a file from which to read commands (a shell script), and
134the remaining arguments are set as the positional parameters
135of the shell ($1, $2, etc).  Otherwise, the shell reads commands
136from its standard input.
137.Pp
138Unlike older versions of
139.Nm
140the
141.Ev ENV
142script is only sourced on invocation of interactive shells.  This
143closes a well-known, and sometimes easily exploitable security
144hole related to poorly thought out
145.Ev ENV
146scripts.
147.Ss Argument List Processing
148All of the single letter options to
149.Nm
150have a corresponding long name,
151with the exception of
152.Fl c
153and
154.Fl /+o .
155These long names are provided next to the single letter options
156in the descriptions below.
157The long name for an option may be specified as an argument to the
158.Fl /+o
159option of
160.Xr sh 1 .
161Once the shell is running,
162the long name for an option may be specified as an argument to the
163.Fl /+o
164option of the
165.Ic set
166builtin command
167(described later in the section called
168.Sx Builtin Commands ) .
169Introducing an option with a dash
170.Pq Li -
171enables the option,
172while using a plus
173.Pq Li +
174disables the option.
175A
176.Dq Li --
177or plain
178.Dq Li -
179will stop option processing and will force the remaining
180words on the command line to be treated as arguments.
181The
182.Fl /+o
183and
184.Fl c
185options do not have long names.
186They take arguments and are described after the single letter options.
187.Bl -tag -width Ds
188.It Fl a Li allexport
189Flag variables for export when assignments are made to them.
190.It Fl b Li notify
191Enable asynchronous notification of background job
192completion.
193.Pq UNIMPLEMENTED
194.It Fl C Li noclobber
195Do not overwrite existing files with
196.Dq Li > .
197.Pq UNIMPLEMENTED
198.It Fl E Li emacs
199Enable the builtin
200.Xr emacs 1
201command line editor (disables the
202.Fl V
203option if it has been set).
204.It Fl e Li errexit
205Exit immediately if any untested command fails in non-interactive mode.
206The exit status of a command is considered to be
207explicitly tested if the command is used to control
208an if, elif, while, or until; or if the command is the left
209hand operand of an
210.Dq Li &&
211or
212.Dq Li ||
213operator.
214.It Fl f Li noglob
215Disable pathname expansion.
216.It Fl I Li ignoreeof
217Ignore
218.Dv EOF Ns ' Ns s
219from input when in interactive mode.
220.It Fl i Li interactive
221Force the shell to behave interactively.
222.It Fl m Li monitor
223Turn on job control (set automatically when interactive).
224.It Fl n Li noexec
225If not interactive, read commands but do not
226execute them.  This is useful for checking the
227syntax of shell scripts.
228.It Fl p Li privileged
229Turn on privileged mode.  This mode is enabled on startup
230if either the effective user or group id is not equal to the
231real user or group id.  Turning this mode off sets the
232effective user and group ids to the real user and group ids.
233When this mode is enabled for interactive shells, the file
234.Pa /etc/suid_profile
235is sourced instead of
236.Pa ~/.profile
237after
238.Pa /etc/profile
239is sourced, and the contents of the
240.Ev ENV
241variable are ignored.
242.It Fl s Li stdin
243Read commands from standard input (set automatically
244if no file arguments are present).  This option has
245no effect when set after the shell has already started
246running (i.e. when set with the
247.Ic set
248command).
249.It Fl T Li asynctraps
250When waiting for a child, execute traps immediately.
251If this option is not set,
252traps are executed after the child exits,
253as specified in
254.St -p1003.2
255This nonstandard option is useful for putting guarding shells around
256children that block signals.  The surrounding shell may kill the child
257or it may just return control to the tty and leave the child alone,
258like this:
259.Bd -literal -offset indent
260sh -T -c "trap 'exit 1' 2 ; some-blocking-program"
261.Ed
262.Pp
263.It Fl u Li nounset
264Write a message to standard error when attempting
265to expand a variable that is not set, and if the
266shell is not interactive, exit immediately.
267.Pq UNIMPLEMENTED
268.It Fl V Li vi
269Enable the builtin
270.Xr vi 1
271command line editor (disables
272.Fl E
273if it has been set).
274.It Fl v Li verbose
275The shell writes its input to standard error
276as it is read.  Useful for debugging.
277.It Fl x Li xtrace
278Write each command
279(preceded by
280.Dq Li +\  )
281to standard error before it is executed.
282Useful for debugging.
283.El
284.Pp
285The
286.Fl c
287option may be used to pass its string argument to the shell
288to be interpreted as input.
289Keep in mind that this option only accepts a single string as its
290argument, hence multi-word strings must be quoted.
291.Pp
292The
293.Fl /+o
294option takes as its only argument the long name of an option
295to be enabled or disabled.
296For example, the following two invocations of
297.Nm
298both enable the builtin
299.Xr emacs 1
300command line editor:
301.Bd -literal -offset indent
302set -E
303set -o emacs
304.Ed
305.Ss Lexical Structure
306The shell reads input in terms of lines from a file and breaks
307it up into words at whitespace (blanks and tabs), and at
308certain sequences of
309characters called
310.Dq operators ,
311which are special to the shell.
312There are two types of operators: control operators and
313redirection operators (their meaning is discussed later).
314The following is a list of valid operators:
315.Bl -tag -width Ds
316.It Control operators:
317.Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact
318.It Xo
319.Li & Ta Xo
320.Li && Ta Xo
321.Li ( Ta Xo
322.Li ) Ta Xo
323.Li \en
324.Xc Xc Xc Xc Xc
325.It Xo
326.Li ;; Ta Xo
327.Li ; Ta Xo
328.Li | Ta Xo
329.Li ||
330.Xc Xc Xc Xc
331.El
332.It Redirection operators:
333.Bl -column "XXX" "XXX" "XXX" "XXX" -offset center -compact
334.It Xo
335.Li < Ta Xo
336.Li > Ta Xo
337.Li << Ta Xo
338.Li >>
339.Xc Xc Xc Xc
340.It Xo
341.Li <& Ta Xo
342.Li >& Ta Xo
343.Li <<- Ta Xo
344.Li >|
345.Xc Xc Xc Xc
346.El
347.El
348.Ss Quoting
349Quoting is used to remove the special meaning of certain characters
350or words to the shell, such as operators, whitespace, or
351keywords.  There are three types of quoting: matched single quotes,
352matched double quotes, and backslash.
353.Bl -tag -width Ds
354.It Single Quotes
355Enclosing characters in single quotes preserves the literal
356meaning of all the characters (except single quotes, making
357it impossible to put single-quotes in a single-quoted string).
358.It Double Quotes
359Enclosing characters within double quotes preserves the literal
360meaning of all characters except dollarsign
361.Pq Li $ ,
362backquote
363.Pq Li ` ,
364and backslash
365.Po Li \e\"
366.Pc .
367The backslash inside double quotes is historically weird.
368It remains literal unless it precedes the following characters,
369which it serves to quote:
370.Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact
371.It Xo
372.Li $ Ta Xo
373.Li ` Ta Xo
374.Li \&" Ta Xo
375.Li \e\  Ta Xo
376.Li \en
377.Xc Xc Xc Xc Xc
378.El
379.It Backslash
380A backslash preserves the literal meaning of the following
381character, with the exception of the newline character
382.Pq Li \en .
383A backslash preceding a newline is treated as a line continuation.
384.El
385.Ss Reserved Words
386Reserved words are words that have special meaning to the
387shell and are recognized at the beginning of a line and
388after a control operator.  The following are reserved words:
389.Bl -column "doneXX" "elifXX" "elseXX" "untilXX" "whileX" -offset center
390.It Xo
391.Li ! Ta Xo
392.Li { Ta Xo
393.Li } Ta Xo
394.Ic case Ta Xo
395.Ic do
396.Xc Xc Xc Xc Xc
397.It Xo
398.Ic done Ta Xo
399.Ic elif Ta Xo
400.Ic else Ta Xo
401.Ic esac Ta Xo
402.Ic fi
403.Xc Xc Xc Xc Xc
404.It Xo
405.Ic for Ta Xo
406.Ic if Ta Xo
407.Ic then Ta Xo
408.Ic until Ta Xo
409.Ic while
410.Xc Xc Xc Xc Xc
411.El
412.Ss Aliases
413An alias is a name and corresponding value set using the
414.Ic alias
415builtin command.  Whenever a reserved word may occur (see above),
416and after checking for reserved words, the shell
417checks the word to see if it matches an alias.
418If it does, it replaces it in the input stream with its value.
419For example, if there is an alias called
420.Dq Li lf
421with the value
422.Dq Li ls -F ,
423then the input
424.Bd -literal -offset indent
425lf foobar
426.Ed
427.Pp
428would become
429.Bd -literal -offset indent
430ls -F foobar
431.Ed
432.Pp
433Aliases provide a convenient way for naive users to
434create shorthands for commands without having to learn how
435to create functions with arguments.  They can also be
436used to create lexically obscure code.  This use is discouraged.
437.Ss Commands
438The shell interprets the words it reads according to a
439language, the specification of which is outside the scope
440of this man page (refer to the BNF in the
441.St -p1003.2
442document).  Essentially though, a line is read and if
443the first word of the line (or after a control operator)
444is not a reserved word, then the shell has recognized a
445simple command.  Otherwise, a complex command or some
446other special construct may have been recognized.
447.Ss Simple Commands
448If a simple command has been recognized, the shell performs
449the following actions:
450.Bl -enum
451.It
452Leading words of the form
453.Dq Li name=value
454are stripped off and assigned to the environment of
455the simple command.  Redirection operators and
456their arguments (as described below) are stripped
457off and saved for processing.
458.It
459The remaining words are expanded as described in
460the section called
461.Sx Word Expansions ,
462and the first remaining word is considered the command
463name and the command is located.  The remaining
464words are considered the arguments of the command.
465If no command name resulted, then the
466.Dq Li name=value
467variable assignments recognized in 1) affect the
468current shell.
469.It
470Redirections are performed as described in
471the next section.
472.El
473.Ss Redirections
474Redirections are used to change where a command reads its input
475or sends its output.  In general, redirections open, close, or
476duplicate an existing reference to a file.  The overall format
477used for redirection is:
478.Pp
479.Dl [n] redir-op file
480.Pp
481The
482.Ql redir-op
483is one of the redirection operators mentioned
484previously.  The following gives some examples of how these
485operators can be used.
486Note that stdin and stdout are commonly used abbreviations
487for standard input and standard output respectively.
488.Bl -tag -width "1234567890XX" -offset indent
489.It Li [n]> file
490redirect stdout (or file descriptor n) to file
491.It Li [n]>| file
492same as above, but override the
493.Fl C
494option
495.It Li [n]>> file
496append stdout (or file descriptor n) to file
497.It Li [n]< file
498redirect stdin (or file descriptor n) from file
499.It Li [n1]<&n2
500duplicate stdin (or file descriptor n1) from file descriptor n2
501.It Li [n]<&-
502close stdin (or file descriptor n)
503.It Li [n1]>&n2
504duplicate stdout (or file descriptor n1) to file descriptor n2
505.It Li [n]>&-
506close stdout (or file descriptor n)
507.El
508.Pp
509The following redirection is often called a
510.Dq here-document .
511.Bd -literal -offset indent
512[n]<< delimiter
513	here-doc-text
514	...
515delimiter
516.Ed
517.Pp
518All the text on successive lines up to the delimiter is
519saved away and made available to the command on standard
520input, or file descriptor n if it is specified.  If the delimiter
521as specified on the initial line is quoted, then the here-doc-text
522is treated literally, otherwise the text is subjected to
523parameter expansion, command substitution, and arithmetic
524expansion (as described in the section on
525.Sx Word Expansions ) .
526If the operator is
527.Dq Li <<-
528instead of
529.Dq Li << ,
530then leading tabs
531in the here-doc-text are stripped.
532.Ss Search and Execution
533There are three types of commands: shell functions,
534builtin commands, and normal programs.
535The command is searched for (by name) in that order.
536The three types of commands are all executed in a different way.
537.Pp
538When a shell function is executed, all of the shell positional
539parameters (except $0, which remains unchanged) are
540set to the arguments of the shell function.
541The variables which are explicitly placed in the environment of
542the command (by placing assignments to them before the
543function name) are made local to the function and are set
544to the values given.
545Then the command given in the function definition is executed.
546The positional parameters are restored to their original values
547when the command completes.
548This all occurs within the current shell.
549.Pp
550Shell builtin commands are executed internally to the shell, without
551spawning a new process.
552.Pp
553Otherwise, if the command name does not match a function
554or builtin command, the command is searched for as a normal
555program in the filesystem (as described in the next section).
556When a normal program is executed, the shell runs the program,
557passing the arguments and the environment to the program.
558If the program is not a normal executable file
559(i.e. if it does not begin with the
560.Qq magic number
561whose
562.Tn ASCII
563representation is
564.Qq #! ,
565resulting in an
566.Dv ENOEXEC
567return value from
568.Xr execve 2 )
569the shell will interpret the program in a subshell.
570The child shell will reinitialize itself in this case,
571so that the effect will be
572as if a new shell had been invoked to handle the ad-hoc shell script,
573except that the location of hashed commands located in
574the parent shell will be remembered by the child.
575.Pp
576Note that previous versions of this document
577and the source code itself misleadingly and sporadically
578refer to a shell script without a magic number
579as a
580.Qq shell procedure .
581.Ss Path Search
582When locating a command, the shell first looks to see if
583it has a shell function by that name.  Then it looks for a
584builtin command by that name.  If a builtin command is not found,
585one of two things happen:
586.Bl -enum
587.It
588Command names containing a slash are simply executed without
589performing any searches.
590.It
591The shell searches each entry in
592.Ev PATH
593in turn for the command.  The value of the
594.Ev PATH
595variable should be a series of
596entries separated by colons.  Each entry consists of a
597directory name.
598The current directory
599may be indicated implicitly by an empty directory name,
600or explicitly by a single period.
601.El
602.Ss Command Exit Status
603Each command has an exit status that can influence the behavior
604of other shell commands.  The paradigm is that a command exits
605with zero for normal or success, and non-zero for failure,
606error, or a false indication.  The man page for each command
607should indicate the various exit codes and what they mean.
608Additionally, the builtin commands return exit codes, as does
609an executed shell function.
610.Pp
611If a command is terminated by a signal, its exit status is 128 plus
612the signal number.  Signal numbers are defined in the header file
613.Aq Pa sys/signal.h .
614.Ss Complex Commands
615Complex commands are combinations of simple commands
616with control operators or reserved words, together creating a larger complex
617command.  More generally, a command is one of the following:
618.Bl -item -offset indent
619.It
620simple command
621.It
622pipeline
623.It
624list or compound-list
625.It
626compound command
627.It
628function definition
629.El
630.Pp
631Unless otherwise stated, the exit status of a command is
632that of the last simple command executed by the command.
633.Ss Pipelines
634A pipeline is a sequence of one or more commands separated
635by the control operator |.  The standard output of all but
636the last command is connected to the standard input
637of the next command.  The standard output of the last
638command is inherited from the shell, as usual.
639.Pp
640The format for a pipeline is:
641.Pp
642.Dl [!] command1 [ | command2 ...]
643.Pp
644The standard output of command1 is connected to the standard
645input of command2.  The standard input, standard output, or
646both of a command is considered to be assigned by the
647pipeline before any redirection specified by redirection
648operators that are part of the command.
649.Pp
650If the pipeline is not in the background (discussed later),
651the shell waits for all commands to complete.
652.Pp
653If the reserved word ! does not precede the pipeline, the
654exit status is the exit status of the last command specified
655in the pipeline.  Otherwise, the exit status is the logical
656NOT of the exit status of the last command.  That is, if
657the last command returns zero, the exit status is 1; if
658the last command returns greater than zero, the exit status
659is zero.
660.Pp
661Because pipeline assignment of standard input or standard
662output or both takes place before redirection, it can be
663modified by redirection.  For example:
664.Pp
665.Dl $ command1 2>&1 | command2
666.Pp
667sends both the standard output and standard error of
668.Ql command1
669to the standard input of
670.Ql command2 .
671.Pp
672A
673.Dq Li ;
674or newline terminator causes the preceding
675AND-OR-list (described next) to be executed sequentially; a & causes
676asynchronous execution of the preceding AND-OR-list.
677.Pp
678Note that unlike some other shells,
679.Nm
680executes each process in the pipeline as a child of the
681.Nm
682process.
683Shell builtin commands are the exception to this rule.
684They are executed in the current shell, although they do not affect its
685environment when used in pipelines.
686.Ss Background Commands (&)
687If a command is terminated by the control operator ampersand
688.Pq Li & ,
689the shell executes the command asynchronously;
690the shell does not wait for the command to finish
691before executing the next command.
692.Pp
693The format for running a command in background is:
694.Bd -literal -offset indent
695command1 & [command2 & ...]
696.Ed
697.Pp
698If the shell is not interactive, the standard input of an
699asynchronous command is set to /dev/null.
700.Ss Lists (Generally Speaking)
701A list is a sequence of zero or more commands separated by
702newlines, semicolons, or ampersands,
703and optionally terminated by one of these three characters.
704The commands in a
705list are executed in the order they are written.
706If command is followed by an ampersand, the shell starts the
707command and immediately proceed onto the next command;
708otherwise it waits for the command to terminate before
709proceeding to the next one.
710.Ss Short-Circuit List Operators
711.Dq Li &&
712and
713.Dq Li ||
714are AND-OR list operators.
715.Dq Li &&
716executes the first command, and then executes the second command
717if the exit status of the first command is zero.
718.Dq Li ||
719is similar, but executes the second command if the exit
720status of the first command is nonzero.
721.Dq Li &&
722and
723.Dq Li ||
724both have the same priority.
725.Ss Flow-Control Constructs (if, while, for, case)
726The syntax of the
727.Ic if
728command is:
729.\"
730.\" XXX Use .Dl to work around broken handling of .Ic inside .Bd and .Ed .
731.\"
732.Dl Ic if Ar list
733.Dl Ic then Ar list
734.Dl [ Ic elif Ar list
735.Dl Ic then Ar list ] ...
736.Dl [ Ic else Ar list ]
737.Dl Ic fi
738.Pp
739The syntax of the
740.Ic while
741command is:
742.Dl Ic while Ar list
743.Dl Ic do Ar list
744.Dl Ic done
745.Pp
746The two lists are executed repeatedly while the exit status of the
747first list is zero.
748The
749.Ic until
750command is similar, but has the word
751.Ic until
752in place of
753.Ic while ,
754which causes it to
755repeat until the exit status of the first list is zero.
756.Pp
757The syntax of the
758.Ic for
759command is:
760.Dl Ic for Ar variable Ic in Ar word ...
761.Dl Ic do Ar list
762.Dl Ic done
763.Pp
764The words are expanded, and then the list is executed
765repeatedly with the variable set to each word in turn.
766The
767.Ic do
768and
769.Ic done
770commands may be replaced with
771.Dq Li {
772and
773.Dq Li } .
774.Pp
775The syntax of the
776.Ic break
777and
778.Ic continue
779commands is:
780.Dl Ic break Op Ar num
781.Dl Ic continue Op Ar num
782.Pp
783The
784.Ic break
785command terminates the
786.Ar num
787innermost
788.Ic for
789or
790.Ic while
791loops.
792The
793.Ic continue
794command continues with the next iteration of the innermost loop.
795These are implemented as builtin commands.
796.Pp
797The syntax of the
798.Ic case
799command is
800.Dl Ic case Ar word Ic in
801.Dl pattern) list ;;
802.Dl ...
803.Dl Ic esac
804.Pp
805The pattern can actually be one or more patterns
806(see
807.Sx Shell Patterns
808described later),
809separated by
810.Dq Li |
811characters.
812.Ss Grouping Commands Together
813Commands may be grouped by writing either
814.Bd -literal -offset indent
815(list)
816.Ed
817.Pp
818or
819.Bd -literal -offset indent
820{ list; }
821.Ed
822.Pp
823The first form executes the commands in a subshell.
824Note that builtin commands thus executed do not affect the current shell.
825The second form does not fork another shell,
826so it is slightly more efficient.
827Grouping commands together this way allows the user to
828redirect their output as though they were one program:
829.Bd -literal -offset indent
830{ echo -n "hello"; echo " world"; } > greeting
831.Ed
832.Ss Functions
833The syntax of a function definition is
834.Bd -literal -offset indent
835name ( ) command
836.Ed
837.Pp
838A function definition is an executable statement; when
839executed it installs a function named name and returns an
840exit status of zero.  The command is normally a list
841enclosed between
842.Dq Li {
843and
844.Dq Li } .
845.Pp
846Variables may be declared to be local to a function by
847using the
848.Ic local
849command.
850This should appear as the first statement of a function,
851and the syntax is:
852.Bd -ragged -offset indent
853.Ic local
854.Op Ar variable ...
855.Op Ar -
856.Ed
857.Pp
858The
859.Ic local
860command is implemented as a builtin command.
861.Pp
862When a variable is made local, it inherits the initial
863value and exported and readonly flags from the variable
864with the same name in the surrounding scope, if there is
865one.  Otherwise, the variable is initially unset.  The shell
866uses dynamic scoping, so that if the variable x is made
867local to function f, which then calls function g, references
868to the variable x made inside g will refer to the
869variable x declared inside f, not to the global variable
870named x.
871.Pp
872The only special parameter than can be made local is
873.Dq Li - .
874Making
875.Dq Li -
876local causes any shell options that are
877changed via the set command inside the function to be
878restored to their original values when the function
879returns.
880.Pp
881The syntax of the
882.Ic return
883command is
884.Bd -ragged -offset indent
885.Ic return
886.Op Ar exitstatus
887.Ed
888.Pp
889It terminates the currently executing function.
890The
891.Ic return
892command is implemented as a builtin command.
893.Ss Variables and Parameters
894The shell maintains a set of parameters.  A parameter
895denoted by a name is called a variable.  When starting up,
896the shell turns all the environment variables into shell
897variables.  New variables can be set using the form
898.Bd -literal -offset indent
899name=value
900.Ed
901.Pp
902Variables set by the user must have a name consisting solely
903of alphabetics, numerics, and underscores.
904The first letter of a variable name must not be numeric.
905A parameter can also be denoted by a number
906or a special character as explained below.
907.Ss Positional Parameters
908A positional parameter is a parameter denoted by a number greater than zero.
909The shell sets these initially to the values of its command line
910arguments that follow the name of the shell script.  The
911.Ic set
912builtin command can also be used to set or reset them.
913.Ss Special Parameters
914A special parameter is a parameter denoted by one of the following
915special characters.  The value of the parameter is listed
916next to its character.
917.Bl -hang
918.It Li *
919Expands to the positional parameters, starting from one.  When
920the expansion occurs within a double-quoted string
921it expands to a single field with the value of each parameter
922separated by the first character of the
923.Ev IFS
924variable,
925or by a
926.Aq space
927if
928.Ev IFS
929is unset.
930.It Li @
931Expands to the positional parameters, starting from one.  When
932the expansion occurs within double-quotes, each positional
933parameter expands as a separate argument.
934If there are no positional parameters, the
935expansion of @ generates zero arguments, even when @ is
936double-quoted.  What this basically means, for example, is
937if $1 is
938.Dq abc
939and $2 is
940.Dq def ghi ,
941then
942.Qq $@
943expands to
944the two arguments:
945.Bd -literal -offset indent
946"abc"   "def ghi"
947.Ed
948.It Li #
949Expands to the number of positional parameters.
950.It Li ?
951Expands to the exit status of the most recent pipeline.
952.It Li -
953(hyphen) Expands to the current option flags (the single-letter
954option names concatenated into a string) as specified on
955invocation, by the set builtin command, or implicitly
956by the shell.
957.It Li $
958Expands to the process ID of the invoked shell.  A subshell
959retains the same value of $ as its parent.
960.It Li !
961Expands to the process ID of the most recent background
962command executed from the current shell.  For a
963pipeline, the process ID is that of the last command in the
964pipeline.
965.It Li 0
966(zero) Expands to the name of the shell or shell script.
967.El
968.Ss Word Expansions
969This clause describes the various expansions that are
970performed on words.  Not all expansions are performed on
971every word, as explained later.
972.Pp
973Tilde expansions, parameter expansions, command substitutions,
974arithmetic expansions, and quote removals that occur within
975a single word expand to a single field.  It is only field
976splitting or pathname expansion that can create multiple
977fields from a single word.
978The single exception to this rule is
979the expansion of the special parameter @ within double-quotes,
980as was described above.
981.Pp
982The order of word expansion is:
983.Bl -enum
984.It
985Tilde Expansion, Parameter Expansion, Command Substitution,
986Arithmetic Expansion (these all occur at the same time).
987.It
988Field Splitting is performed on fields generated by step (1)
989unless the
990.Ev IFS
991variable is null.
992.It
993Pathname Expansion (unless the
994.Fl f
995option is in effect).
996.It
997Quote Removal.
998.El
999.Pp
1000The
1001.Dq Li $
1002character is used to introduce parameter expansion, command
1003substitution, or arithmetic evaluation.
1004.Ss Tilde Expansion (substituting a user's home directory)
1005A word beginning with an unquoted tilde character
1006.Pq Li ~
1007is
1008subjected to tilde expansion.
1009All the characters up to a slash
1010.Pq Li /
1011or the end of the word are treated as a username
1012and are replaced with the user's home directory.  If the
1013username is missing (as in ~/foobar), the tilde is replaced
1014with the value of the HOME variable (the current user's
1015home directory).
1016.Ss Parameter Expansion
1017The format for parameter expansion is as follows:
1018.Bd -literal -offset indent
1019${expression}
1020.Ed
1021.Pp
1022where expression consists of all characters until the matching
1023.Dq Li } .
1024Any
1025.Dq Li }
1026escaped by a backslash or within a quoted string, and characters in
1027embedded arithmetic expansions, command substitutions, and variable
1028expansions, are not examined in determining the matching
1029.Dq Li } .
1030.Pp
1031The simplest form for parameter expansion is:
1032.Bd -literal -offset indent
1033${parameter}
1034.Ed
1035.Pp
1036The value, if any, of parameter is substituted.
1037.Pp
1038The parameter name or symbol can be enclosed in braces, which are
1039optional except for positional parameters with more than one digit or
1040when parameter is followed by a character that could be interpreted as
1041part of the name.
1042If a parameter expansion occurs inside double-quotes:
1043.Bl -enum
1044.It
1045Pathname expansion is not performed on the results of the
1046expansion.
1047.It
1048Field splitting is not performed on the results of the
1049expansion, with the exception of
1050.Dq Li @ .
1051.El
1052.Pp
1053In addition, a parameter expansion can be modified by using one of the
1054following formats.
1055.Bl -tag -width Ds
1056.It Li ${parameter:-word}
1057Use Default Values.  If parameter is unset or
1058null, the expansion of word is
1059substituted; otherwise, the value of
1060parameter is substituted.
1061.It Li ${parameter:=word}
1062Assign Default Values.  If parameter is unset
1063or null, the expansion of word is
1064assigned to parameter.  In all cases, the
1065final value of parameter is
1066substituted.  Only variables, not positional
1067parameters or special parameters, can be
1068assigned in this way.
1069.It Li ${parameter:?[word]}
1070Indicate Error if Null or Unset.  If
1071parameter is unset or null, the expansion of
1072word (or a message indicating it is unset if
1073word is omitted) is written to standard
1074error and the shell exits with a nonzero
1075exit status.
1076Otherwise, the value of
1077parameter is substituted.  An
1078interactive shell need not exit.
1079.It Li ${parameter:+word}
1080Use Alternate Value.  If parameter is unset
1081or null, null is substituted;
1082otherwise, the expansion of word is
1083substituted.
1084.Pp
1085In the parameter expansions shown previously, use of the colon in the
1086format results in a test for a parameter that is unset or null; omission
1087of the colon results in a test for a parameter that is only unset.
1088.It Li ${#parameter}
1089String Length.  The length in characters of
1090the value of parameter.
1091.Pp
1092The following four varieties of parameter expansion provide for substring
1093processing.
1094In each case, pattern matching notation
1095(see
1096.Sx Shell Patterns ) ,
1097rather than regular expression notation,
1098is used to evaluate the patterns.
1099If parameter is
1100.Dq Li *
1101or
1102.Dq Li @ ,
1103the result of the expansion is unspecified.
1104Enclosing the full parameter expansion string in double-quotes does not
1105cause the following four varieties of pattern characters to be quoted,
1106whereas quoting characters within the braces has this effect.
1107.It Li ${parameter%word}
1108Remove Smallest Suffix Pattern.  The word
1109is expanded to produce a pattern.  The
1110parameter expansion then results in
1111parameter, with the smallest portion of the
1112suffix matched by the pattern deleted.
1113.It Li ${parameter%%word}
1114Remove Largest Suffix Pattern.  The word
1115is expanded to produce a pattern.  The
1116parameter expansion then results in
1117parameter, with the largest portion of the
1118suffix matched by the pattern deleted.
1119.It Li ${parameter#word}
1120Remove Smallest Prefix Pattern.  The word
1121is expanded to produce a pattern.  The
1122parameter expansion then results in
1123parameter, with the smallest portion of the
1124prefix matched by the pattern deleted.
1125.It Li ${parameter##word}
1126Remove Largest Prefix Pattern.  The word
1127is expanded to produce a pattern.  The
1128parameter expansion then results in
1129parameter, with the largest portion of the
1130prefix matched by the pattern deleted.
1131.El
1132.Ss Command Substitution
1133Command substitution allows the output of a command to be substituted in
1134place of the command name itself.  Command substitution occurs when
1135the command is enclosed as follows:
1136.Bd -literal -offset indent
1137$(command)
1138.Ed
1139.Pp
1140or the backquoted version:
1141.Bd -literal -offset indent
1142`command`
1143.Ed
1144.Pp
1145The shell expands the command substitution by executing command in a
1146subshell environment and replacing the command substitution
1147with the standard output of the command,
1148removing sequences of one or more newlines at the end of the substitution.
1149Embedded newlines before the end of the output are not removed;
1150however, during field splitting, they may be translated into spaces
1151depending on the value of
1152.Ev IFS
1153and the quoting that is in effect.
1154.Ss Arithmetic Expansion
1155Arithmetic expansion provides a mechanism for evaluating an arithmetic
1156expression and substituting its value.
1157The format for arithmetic expansion is as follows:
1158.Bd -literal -offset indent
1159$((expression))
1160.Ed
1161.Pp
1162The expression is treated as if it were in double-quotes, except
1163that a double-quote inside the expression is not treated specially.  The
1164shell expands all tokens in the expression for parameter expansion,
1165command substitution, and quote removal.
1166.Pp
1167Next, the shell treats this as an arithmetic expression and
1168substitutes the value of the expression.
1169.Ss White Space Splitting (Field Splitting)
1170After parameter expansion, command substitution, and
1171arithmetic expansion the shell scans the results of
1172expansions and substitutions that did not occur in double-quotes for
1173field splitting and multiple fields can result.
1174.Pp
1175The shell treats each character of the
1176.Ev IFS
1177as a delimiter and uses
1178the delimiters to split the results of parameter expansion and command
1179substitution into fields.
1180.Ss Pathname Expansion (File Name Generation)
1181Unless the
1182.Fl f
1183option is set,
1184file name generation is performed
1185after word splitting is complete.  Each word is
1186viewed as a series of patterns, separated by slashes.  The
1187process of expansion replaces the word with the names of
1188all existing files whose names can be formed by replacing
1189each pattern with a string that matches the specified pattern.
1190There are two restrictions on this: first, a pattern cannot match
1191a string containing a slash, and second,
1192a pattern cannot match a string starting with a period
1193unless the first character of the pattern is a period.
1194The next section describes the patterns used for both
1195Pathname Expansion and the
1196.Ic case
1197command.
1198.Ss Shell Patterns
1199A pattern consists of normal characters, which match themselves,
1200and meta-characters.
1201The meta-characters are
1202.Dq Li ! ,
1203.Dq Li * ,
1204.Dq Li ? ,
1205and
1206.Dq Li [ .
1207These characters lose their special meanings if they are quoted.
1208When command or variable substitution is performed and the dollar sign
1209or back quotes are not double-quoted, the value of the
1210variable or the output of the command is scanned for these
1211characters and they are turned into meta-characters.
1212.Pp
1213An asterisk
1214.Pq Li *
1215matches any string of characters.  A
1216question mark matches any single character.
1217A left bracket
1218.Pq Li [
1219introduces a character class.
1220The end of the character class is indicated by a
1221.Dq Li \&] ;
1222if the
1223.Dq Li \&]
1224is missing then the
1225.Dq Li [
1226matches a
1227.Dq Li [
1228rather than introducing a character class.
1229A character class matches any of the characters between the square brackets.
1230A range of characters may be specified using a minus sign.
1231The character class may be complemented
1232by making an exclamation point the first character of the character class.
1233.Pp
1234To include a
1235.Dq Li \&]
1236in a character class, make it the first character listed
1237(after the
1238.Dq Li ! ,
1239if any).
1240To include a minus sign, make it the first or last character listed.
1241.Ss Builtin Commands
1242This section lists the commands which
1243are builtin because they need to perform some operation
1244that can not be performed by a separate process.  In addition to
1245these, builtin versions of the
1246.Xr printf 1
1247and
1248.Xr echo 1
1249commands are provided for efficiency.
1250.Bl -tag -width Ds
1251.It Ic :
1252A null command that returns a 0 (true) exit value.
1253.It Ic . Ar file
1254The commands in the specified file are read and executed by the shell.
1255If
1256.Ar file
1257contains any
1258.Dq /
1259characters, it is used as is.  Otherwise, the shell searches the
1260.Ev PATH
1261for the file.  If it is not found in the
1262.Ev PATH ,
1263it is sought in the current working directory.
1264.It Ic alias Op Ar name ...
1265.It Ic alias Op Ar name=string ...
1266If
1267.Ar name=string
1268is specified, the shell defines the alias
1269.Ar name
1270with value
1271.Ar string .
1272If just
1273.Ar name
1274is specified, the value of the alias
1275.Ar name
1276is printed.
1277With no arguments, the
1278.Ic alias
1279builtin command prints the names and values of all defined aliases
1280(see
1281.Ic unalias ) .
1282.It Ic bg Op Ar job ...
1283Continue the specified jobs
1284(or the current job if no jobs are given)
1285in the background.
1286.It Ic command Ar cmd Op Ar arg ...
1287Execute the specified builtin command,
1288.Ar cmd .
1289This is useful when the user wishes to override a shell function
1290with the same name as a builtin command.
1291.It Ic cd Op Ar directory
1292Switch to the specified
1293.Ar directory ,
1294or to the directory specified in the
1295.Ev HOME
1296environment variable if no
1297.Ar directory
1298is specified.
1299If
1300.Ar directory
1301is not found as a subdirectory of the current directory
1302(and does not begin with
1303.Dq Li / ,
1304.Dq Li ./ ,
1305or
1306.Dq Li ../ ) ,
1307then the directories listed in the
1308.Ev CDPATH
1309variable will be
1310searched for the specified
1311.Ar directory .
1312The format of
1313.Ar CDPATH
1314is the same as that of
1315.Ev PATH .
1316In an interactive shell,
1317the
1318.Ic cd
1319command will print out the name of the directory
1320that it actually switched to
1321if this is different from the name that the user gave.
1322These may be different either because the
1323.Ev CDPATH
1324mechanism was used or because a symbolic link was crossed.
1325.It Ic eval Ar string ...
1326Concatenate all the arguments with spaces.
1327Then re-parse and execute the command.
1328.It Ic exec Op Ar command Op arg ...
1329Unless
1330.Ar command
1331is omitted,
1332the shell process is replaced with the specified program
1333(which must be a real program, not a shell builtin command or function).
1334Any redirections on the
1335.Ic exec
1336command are marked as permanent,
1337so that they are not undone when the
1338.Ic exec
1339command finishes.
1340.It Ic exit Op Ar exitstatus
1341Terminate the shell process.
1342If
1343.Ar exitstatus
1344is given
1345it is used as the exit status of the shell;
1346otherwise the exit status of the preceding command is used.
1347.It Ic export Ar name ...
1348The specified names are exported so that they will
1349appear in the environment of subsequent commands.
1350The only way to un-export a variable is to
1351.Ic unset
1352it.
1353The shell allows the value of a variable to be set
1354at the same time as it is exported by writing
1355.Bd -literal -offset indent
1356export name=value
1357.Ed
1358.Pp
1359With no arguments the export command lists the names
1360of all exported variables.
1361.It Xo
1362.Ic fc
1363.Op Fl e Ar editor
1364.Op Ar first Op Ar last
1365.Xc
1366.It Xo
1367.Ic fc
1368.Fl l
1369.Op Fl nr
1370.Op Ar first Op Ar last
1371.Xc
1372.It Xo
1373.Ic fc
1374.Fl s
1375.Op Ar old=new
1376.Op Ar first
1377.Xc
1378The
1379.Ic fc
1380builtin command lists, or edits and re-executes,
1381commands previously entered to an interactive shell.
1382.Bl -tag -width Ds
1383.It Fl e Ar editor
1384Use the editor named by
1385.Ar editor
1386to edit the commands.
1387The editor string is a command name,
1388subject to search via the
1389.Ev PATH
1390variable.
1391The value in the
1392.Ev FCEDIT
1393variable is used as a default when
1394.Fl e
1395is not specified.
1396If
1397.Ev FCEDIT
1398is null or unset, the value of the
1399.Ev EDITOR
1400variable is used.
1401If
1402.Ev EDITOR
1403is null or unset,
1404.Xr ed 1
1405is used as the editor.
1406.It Fl l No (ell)
1407List the commands rather than invoking
1408an editor on them.  The commands are written in the
1409sequence indicated by the first and last operands, as
1410affected by
1411.Fl r ,
1412with each command preceded by the command number.
1413.It Fl n
1414Suppress command numbers when listing with
1415.Fl l .
1416.It Fl r
1417Reverse the order of the commands listed
1418(with
1419.Fl l )
1420or edited
1421(with neither
1422.Fl l
1423nor
1424.Fl s ) .
1425.It Fl s
1426Re-execute the command without invoking an editor.
1427.It Ar first
1428.It Ar last
1429Select the commands to list or edit.
1430The number of previous commands that can be accessed
1431are determined by the value of the
1432.Ev HISTSIZE variable.
1433The value of
1434.Ar first
1435or
1436.Ar last
1437or both are one of the following:
1438.Bl -tag -width Ds
1439.It Ar [+]num
1440A positive number representing a command number;
1441command numbers can be displayed with the
1442.Fl l
1443option.
1444.It Ar -num
1445A negative decimal number representing the
1446command that was executed
1447.Ar num
1448of
1449commands previously.
1450For example, -1 is the immediately previous command.
1451.It Ar string
1452A string indicating the most recently entered command
1453that begins with that string.
1454If the
1455.Ar old=new
1456operand is not also specified with
1457.Fl s ,
1458the string form of the first operand cannot contain an embedded equal sign.
1459.El
1460.El
1461.Pp
1462The following environment variables affect the execution of
1463.Ic fc :
1464.Bl -tag -width Ds
1465.It Ev FCEDIT
1466Name of the editor to use.
1467.It Ev HISTSIZE
1468The number of previous commands that are accessible.
1469.El
1470.It Ic fg Op Ar job
1471Move the specified
1472.Ar job
1473or the current job to the foreground.
1474.It Ic getopts Ar optstring Ar var
1475The POSIX
1476.Ic getopts
1477command.
1478The
1479.Ic getopts
1480command deprecates the older
1481.Xr getopt 1
1482command.
1483The first argument should be a series of letters, each possibly
1484followed by a colon which indicates that the option takes an argument.
1485The specified variable is set to the parsed option.  The index of
1486the next argument is placed into the shell variable
1487.Ev OPTIND .
1488If an option takes an argument, it is placed into the shell variable
1489.Ev OPTARG .
1490If an invalid option is encountered,
1491.Ev var
1492is set to
1493.Dq Li ? .
1494It returns a false value (1) when it encounters the end of the options.
1495.It Xo
1496.Ic hash
1497.Op Fl rv
1498.Op Ar command ...
1499.Xc
1500The shell maintains a hash table which remembers the locations of commands.
1501With no arguments whatsoever, the
1502.Ic hash
1503command prints out the contents of this table.
1504Entries which have not been looked at since the last
1505.Ic cd
1506command are marked with an asterisk;
1507it is possible for these entries to be invalid.
1508.Pp
1509With arguments, the
1510.Ic hash
1511command removes each specified
1512.Ar command
1513from the hash table (unless they are functions) and then locates it.
1514With the
1515.Fl v
1516option,
1517.Ic hash
1518prints the locations of the commands as it finds them.
1519The
1520.Fl r
1521option causes the
1522.Ic hash
1523command to delete all the entries in the hash table except for functions.
1524.It Ic jobid Op Ar job
1525Print the process id's of the processes in the specified
1526.Ar job .
1527If the
1528.Ar job
1529argument is omitted, use the current job.
1530.It Ic jobs
1531This command lists out all the background processes
1532which are children of the current shell process.
1533.It Ic pwd
1534Print the path of the current directory.  The builtin command may
1535differ from the program of the same name because the
1536builtin command remembers what the current directory
1537is rather than recomputing it each time.  This makes
1538it faster.  However, if the current directory is
1539renamed,
1540the builtin version of
1541.Xr pwd 1
1542will continue to print the old name for the directory.
1543.It Xo
1544.Ic read
1545.Op Fl p Ar prompt
1546.Op Fl t Ar timeout
1547.Op Fl er
1548.Ar variable ...
1549.Xc
1550The
1551.Ar prompt
1552is printed if the
1553.Fl p
1554option is specified
1555and the standard input is a terminal.  Then a line is
1556read from the standard input.  The trailing newline
1557is deleted from the line and the line is split as
1558described in the section on
1559.Sx White Space Splitting (Field Splitting)
1560above, and
1561the pieces are assigned to the variables in order.
1562If there are more pieces than variables, the remaining
1563pieces (along with the characters in
1564.Ev IFS
1565that separated them)
1566are assigned to the last variable.
1567If there are more variables than pieces, the remaining
1568variables are assigned the null string.
1569.Pp
1570Backslashes are treated specially, unless the
1571.Fl r
1572option is
1573specified.  If a backslash is followed by
1574a newline, the backslash and the newline will be
1575deleted.  If a backslash is followed by any other
1576character, the backslash will be deleted and the following
1577character will be treated as though it were not in
1578.Ev IFS ,
1579even if it is.
1580.Pp
1581If the
1582.Fl t
1583option is specified and the
1584.Ar timeout
1585elapses before any input is supplied,
1586the
1587.Ic read
1588command will return without assigning any values.
1589The
1590.Ar timeout
1591value may optionally be followed by one of
1592.Dq s ,
1593.Dq m
1594or
1595.Dq h
1596to explicitly specify seconds, minutes or or hours.
1597If none is supplied,
1598.Dq s
1599is assumed.
1600.Pp
1601The
1602.Fl e
1603option exists only for backward compatibility with older scripts.
1604.It Ic readonly Ar name ...
1605Each specified
1606.Ar name
1607is marked as read only,
1608so that it cannot be subsequently modified or unset.
1609The shell allows the value of a variable to be set
1610at the same time as it is marked read only
1611by using the following form:
1612.Bd -literal -offset indent
1613readonly name=value
1614.Ed
1615.Pp
1616With no arguments the
1617.Ic readonly
1618command lists the names of all read only variables.
1619.It Xo
1620.Ic set
1621.Op Fl /+abCEefIimnpTuVvx
1622.Op Fl /+o Ar longname
1623.Op Fl c Ar string
1624.Op Fl - Ar arg ...
1625.Xc
1626The set command performs three different functions:
1627.Bl -item
1628.It
1629With no arguments, it lists the values of all shell variables.
1630.It
1631If options are given,
1632either in short form or using the long
1633.Dq Fl /+o Ar longname
1634form,
1635it sets or clears the specified options as described in the section called
1636.Sx Argument List Processing .
1637.It
1638If the
1639.Dq Fl -
1640option is specified,
1641.Ic set
1642will replace the shell's positional parameters with the subsequent
1643arguments.
1644If no arguments follow the
1645.Dq Fl -
1646option,
1647all the positional parameters will be cleared,
1648which is equivalent to executing the command
1649.Dq Li shift $# .
1650The
1651.Dq Fl -
1652flag may be ommitted when specifying arguments to be used
1653as positional replacement parameters.
1654This is not recommended,
1655because the first argument may begin with a dash
1656.Pq Li -
1657or a plus
1658.Pq Li + ,
1659which the
1660.Ic set
1661command will interpret as a request to enable or disable options.
1662.El
1663.It Ic setvar Ar variable Ar value
1664Assigns the specified
1665.Ar value
1666to the specified
1667.Ar variable .
1668.Ic Setvar
1669is intended to be used in functions that
1670assign values to variables whose names are passed as parameters.
1671In general it is better to write
1672.Bd -literal -offset indent
1673variable=value
1674.Ed
1675rather than using
1676.Ic setvar .
1677.It Ic shift Op Ar n
1678Shift the positional parameters
1679.Ar n
1680times, or one time if
1681.Ar n
1682is not specified.
1683A shift sets the value of $1 to the value of $2,
1684the value of $2 to the value of $3, and so on,
1685decreasing the value of $# by one.
1686If there are zero positional parameters, shifting does not do anything.
1687.It Xo
1688.Ic trap
1689.Op Ar action
1690.Ar signal ...
1691.Xc
1692Cause the shell to parse and execute
1693.Ar action
1694when any specified
1695.Ar signal
1696is received.
1697The signals are specified by signal number.
1698The
1699.Ar action
1700may be null or omitted;
1701the former causes the specified signal to be ignored
1702and the latter causes the default action to be taken.
1703When the shell forks off a subshell,
1704it resets trapped (but not ignored) signals to the default action.
1705The
1706.Ic trap
1707command has no effect on signals that were ignored on entry to the shell.
1708.It Ic type Op Ar name ...
1709Interpret each
1710.Ar name
1711as a command and print the resolution of the command search.
1712Possible resolutions are:
1713shell keyword, alias, shell builtin command, command, tracked alias
1714and not found.
1715For aliases the alias expansion is printed;
1716for commands and tracked aliases
1717the complete pathname of the command is printed.
1718.It Xo
1719.Ic ulimit
1720.Op Fl HSacdflmnust
1721.Op Ar limit
1722.Xc
1723Set or display resource limits (see
1724.Xr getrlimit 2 ).
1725If
1726.Ar limit
1727is specified, the named resource will be set;
1728otherwise the current resource value will be displayed.
1729.Pp
1730If
1731.Fl H
1732is specified, the hard limits will be set or displayed.
1733While everybody is allowed to reduce a hard limit,
1734only the superuser can increase it.
1735The
1736.Fl S
1737option
1738specifies the soft limits instead.  When displaying limits,
1739only one of
1740.Fl S
1741or
1742.Fl H
1743can be given.
1744The default is to display the soft limits,
1745and to set both the hard and the soft limits.
1746.Pp
1747Option
1748.Fl a
1749causes the
1750.Ic ulimit
1751command to display all resources.
1752The parameter
1753.Ar limit
1754is not acceptable in this mode.
1755.Pp
1756The remaining options specify which resource value is to be
1757displayed or modified.
1758They are mutually exclusive.
1759.Bl -tag -width Ds
1760.It Fl c Ar coredumpsize
1761The maximal size of core dump files, in 512-byte blocks.
1762.It Fl d Ar datasize
1763The maximal size of the data segment of a process, in kilobytes.
1764.It Fl f Ar filesize
1765The maximal size of a file, in 512-byte blocks.
1766.It Fl l Ar lockedmem
1767The maximal size of memory that can be locked by a process, in
1768kilobytes.
1769.It Fl m Ar memoryuse
1770The maximal resident set size of a process, in kilobytes.
1771.It Fl n Ar nofiles
1772The maximal number of descriptors that could be opened by a process.
1773.It Fl s Ar stacksize
1774The maximal size of the stack segment, in kilobytes.
1775.It Fl t Ar time
1776The maximal amount of CPU time to be used by each process, in seconds.
1777.It Fl u Ar userproc
1778The maximal number of simultaneous processes for this user ID.
1779.El
1780.It Ic umask Op Ar mask
1781Set the file creation mask (see
1782.Xr umask 2 )
1783to the octal value specified by
1784.Ar mask
1785If the argument is omitted, the current mask value is printed.
1786.It Xo
1787.Ic unalias
1788.Op Fl a
1789.Op Ar name
1790.Xc
1791If
1792.Ar name
1793is specified, the shell removes that alias.
1794If
1795.Ar a
1796is specified, all aliases are removed.
1797.It Ic unset Ar name ...
1798The specified variables and functions are unset and unexported.
1799If a given
1800.Ar name
1801corresponds to both a variable and a function,
1802both the variable and the function are unset.
1803.It Ic wait Op Ar job
1804Wait for the specified
1805.Ar job
1806to complete and return the exit status of the last process in the
1807.Ar job .
1808If the argument is omitted, wait for all jobs to complete
1809and return an exit status of zero.
1810.El
1811.Ss Commandline Editing
1812When
1813.Nm
1814is being used interactively from a terminal, the current command
1815and the command history
1816(see
1817.Ic fc
1818in
1819.Sx Builtin Commands )
1820can be edited using vi-mode command line editing.
1821This mode uses commands similar
1822to a subset of those described in the vi man page.
1823The command
1824.Dq Li set -o vi
1825(or
1826.Dq Li set -E )
1827enables vi-mode editing and places
1828.Nm
1829into vi insert mode.  With vi-mode enabled,
1830.Nm
1831can be switched between insert mode and command mode by typing
1832.Aq ESC .
1833Hitting
1834.Aq return
1835while in command mode will pass the line to the shell.
1836.Pp
1837Similarly, the
1838.Dq Li set -o emacs
1839(or
1840.Dq Li set -V )
1841command can be used to enable a subset of
1842emacs-style command line editing features.
1843.Sh SEE ALSO
1844.Xr builtin 1 ,
1845.Xr echo 1 ,
1846.Xr expr 1 ,
1847.Xr pwd 1 ,
1848.Xr printf 1 ,
1849.Xr test 1
1850.Sh HISTORY
1851A
1852.Nm
1853command appeared in
1854.At V.1 .
1855