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