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