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