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