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