Obfuscate RCS ID matching so that CVS doesn't expand it.
[netbsd-mini2440.git] / bin / sh / sh.1
blob82c881f4a31b417c8d0589ab0031000ab9d3b24b
1 .\"     $NetBSD: sh.1,v 1.92 2009/03/29 01:02:49 mrg Exp $
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. 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 .\"     @(#)sh.1        8.6 (Berkeley) 5/4/95
33 .\"
34 .Dd March 29, 2009
35 .Dt SH 1
36 .Os
37 .Sh NAME
38 .Nm sh
39 .Nd command interpreter (shell)
40 .Sh SYNOPSIS
41 .Nm
42 .Bk -words
43 .Op Fl aCefnuvxIimqVEb
44 .Op Cm +aCefnuvxIimqVEb
45 .Ek
46 .Bk -words
47 .Op Fl o Ar option_name
48 .Op Cm +o Ar option_name
49 .Ek
50 .Bk -words
51 .Op Ar command_file Oo Ar argument ... Oc
52 .Ek
53 .Nm
54 .Fl c
55 .Bk -words
56 .Op Fl aCefnuvxIimqVEb
57 .Op Cm +aCefnuvxIimqVEb
58 .Ek
59 .Bk -words
60 .Op Fl o Ar option_name
61 .Op Cm +o Ar option_name
62 .Ek
63 .Bk -words
64 .Ar command_string
65 .Op Ar command_name Oo Ar argument ... Oc
66 .Ek
67 .Nm
68 .Fl s
69 .Bk -words
70 .Op Fl aCefnuvxIimqVEb
71 .Op Cm +aCefnuvxIimqVEb
72 .Ek
73 .Bk -words
74 .Op Fl o Ar option_name
75 .Op Cm +o Ar option_name
76 .Ek
77 .Bk -words
78 .Op Ar argument ...
79 .Ek
80 .Sh DESCRIPTION
81 .Nm
82 is the standard command interpreter for the system.
83 The current version of
84 .Nm
85 is in the process of being changed to conform with the
86 .Tn POSIX
87 1003.2 and 1003.2a specifications for the shell.
88 This version has many
89 features which make it appear similar in some respects to the Korn shell,
90 but it is not a Korn shell clone (see
91 .Xr ksh 1 ) .
92 Only features designated by
93 .Tn POSIX ,
94 plus a few Berkeley extensions, are being incorporated into this shell.
95 .\" We expect
96 .\" .Tn POSIX
97 .\" conformance by the time 4.4 BSD is released.
98 This man page is not intended
99 to be a tutorial or a complete specification of the shell.
100 .Ss Overview
101 The shell is a command that reads lines from either a file or the
102 terminal, interprets them, and generally executes other commands.
103 It is the program that is running when a user logs into the system
104 (although a user can select a different shell with the
105 .Xr chsh 1
106 command).
107 The shell implements a language that has flow control
108 constructs, a macro facility that provides a variety of features in
109 addition to data storage, along with built in history and line editing
110 capabilities.
111 It incorporates many features to aid interactive use and
112 has the advantage that the interpretative language is common to both
113 interactive and non-interactive use (shell scripts).
114 That is, commands
115 can be typed directly to the running shell or can be put into a file and
116 the file can be executed directly by the shell.
117 .Ss Invocation
118 If no arguments are present and if the standard input of the shell
119 is connected to a terminal (or if the
120 .Fl i
121 flag is set),
122 and the
123 .Fl c
124 option is not present, the shell is considered an interactive shell.
125 An interactive shell generally prompts before each command and handles
126 programming and command errors differently (as described below).
127 When first starting,
128 the shell inspects argument 0, and if it begins with a dash
129 .Sq - ,
130 the shell is also considered
131 a login shell.
132 This is normally done automatically by the system
133 when the user first logs in.
134 A login shell first reads commands
135 from the files
136 .Pa /etc/profile
138 .Pa .profile
139 if they exist.
140 If the environment variable
141 .Ev ENV
142 is set on entry to a shell, or is set in the
143 .Pa .profile
144 of a login shell, the shell next reads
145 commands from the file named in
146 .Ev ENV .
147 Therefore, a user should place commands that are to be executed only at
148 login time in the
149 .Pa .profile
150 file, and commands that are executed for every shell inside the
151 .Ev ENV
152 file.
153 To set the
154 .Ev ENV
155 variable to some file, place the following line in your
156 .Pa .profile
157 of your home directory
159 .Dl ENV=$HOME/.shinit; export ENV
161 substituting for
162 .Dq .shinit
163 any filename you wish.
164 Since the
165 .Ev ENV
166 file is read for every invocation of the shell, including shell scripts
167 and non-interactive shells, the following paradigm is useful for
168 restricting commands in the
169 .Ev ENV
170 file to interactive invocations.
171 Place commands within the
172 .Dq case
174 .Dq esac
175 below (these commands are described later):
177 .Bl -item -compact -offset indent
179 .Li case $- in *i*)
180 .Bl -item -compact -offset indent
182 .Li # commands for interactive use only
184 .Li ...
187 .Li esac
190 If command line arguments besides the options have been specified, then
191 the shell treats the first argument as the name of a file from which to
192 read commands (a shell script), and the remaining arguments are set as the
193 positional parameters of the shell ($1, $2, etc).
194 Otherwise, the shell
195 reads commands from its standard input.
196 .Ss Argument List Processing
197 All of the single letter options have a corresponding name that can be
198 used as an argument to the
199 .Fl o
200 option.
201 The set
202 .Fl o
203 name is provided next to the single letter option in
204 the description below.
205 Specifying a dash
206 .Dq -
207 turns the option on, while using a plus
208 .Dq +
209 disables the option.
210 The following options can be set from the command line or
211 with the
212 .Ic set
213 built-in (described later).
214 .Bl -tag -width aaaallexportfoo -offset indent
215 .It Fl a Em allexport
216 Export all variables assigned to.
217 .It Fl c
218 Read commands from the
219 .Ar command_string
220 operand instead of from the standard input.
221 Special parameter 0 will be set from the
222 .Ar command_name
223 operand and the positional parameters ($1, $2, etc.)
224 set from the remaining argument operands.
225 .It Fl C Em noclobber
226 Don't overwrite existing files with
227 .Dq \*[Gt] .
228 .It Fl e Em errexit
229 If not interactive, exit immediately if any untested command fails.
230 The exit status of a command is considered to be
231 explicitly tested if the command is used to control an
232 .Ic if ,
233 .Ic elif ,
234 .Ic while ,
236 .Ic until ;
237 or if the command is the left hand operand of an
238 .Dq \*[Am]\*[Am]
240 .Dq ||
241 operator.
242 .It Fl f Em noglob
243 Disable pathname expansion.
244 .It Fl n Em noexec
245 If not interactive, read commands but do not execute them.
246 This is useful for checking the syntax of shell scripts.
247 .It Fl u Em nounset
248 Write a message to standard error when attempting to expand a variable
249 that is not set, and if the shell is not interactive, exit immediately.
250 .It Fl v Em verbose
251 The shell writes its input to standard error as it is read.
252 Useful for debugging.
253 .It Fl x Em xtrace
254 Write each command to standard error (preceded by a
255 .Sq +\  )
256 before it is executed.
257 Useful for debugging.
258 .It Fl q Em quietprofile
259 If the
260 .Fl v
262 .Fl x
263 options have been set, do not apply them when reading
264 initialization files, these being
265 .Pa /etc/profile ,
266 .Pa .profile ,
267 and the file specified by the
268 .Ev ENV
269 environment variable.
270 .It Fl I Em ignoreeof
271 Ignore EOFs from input when interactive.
272 .It Fl i Em interactive
273 Force the shell to behave interactively.
274 .It Fl m Em monitor
275 Turn on job control (set automatically when interactive).
276 .It Fl s Em stdin
277 Read commands from standard input (set automatically if no file arguments
278 are present).
279 This option has no effect when set after the shell has
280 already started running (i.e. with
281 .Ic set ) .
282 .It Fl V Em vi
283 Enable the built-in
284 .Xr vi 1
285 command line editor (disables
286 .Fl E
287 if it has been set).
288 (See the
289 .Sx Command Line Editing
290 section below.)
291 .It Fl E Em emacs
292 Enable the built-in emacs style
293 command line editor (disables
294 .Fl V
295 if it has been set).
296 (See the
297 .Sx Command Line Editing
298 section below.)
299 .It Fl b Em notify
300 Enable asynchronous notification of background job completion.
301 (UNIMPLEMENTED for 4.4alpha)
302 .It "\ \ " Em cdprint
303 Make an interactive shell always print the new directory name when
304 changed by the
305 .Ic cd
306 command.
307 .It "\ \ " Em tabcomplete
308 Enables filename completion in the command line editor.
309 Typing a tab character will extend the current input word to match a
310 filename.
311 If more than one filename matches it is only extended to be the common prefix.
312 Typing a second tab character will list all the matching names.
314 .Ss Lexical Structure
315 The shell reads input in terms of lines from a file and breaks it up into
316 words at whitespace (blanks and tabs), and at certain sequences of
317 characters that are special to the shell called
318 .Dq operators .
319 There are two types of operators: control operators and redirection
320 operators (their meaning is discussed later).
321 Following is a list of operators:
322 .Bl -ohang -offset indent
323 .It "Control operators:"
324 .Dl \*[Am]  \*[Am]\*[Am]  \&(  \&)  \&;  ;; | || \*[Lt]newline\*[Gt]
325 .It "Redirection operators:"
326 .Dl \*[Lt]  \*[Gt]  \*[Gt]|  \*[Lt]\*[Lt]  \*[Gt]\*[Gt]  \*[Lt]\*[Am]  \*[Gt]\*[Am]  \*[Lt]\*[Lt]-  \*[Lt]\*[Gt]
328 .Ss Quoting
329 Quoting is used to remove the special meaning of certain characters or
330 words to the shell, such as operators, whitespace, or keywords.
331 There are three types of quoting: matched single quotes,
332 matched double quotes, and backslash.
333 .Ss Backslash
334 A backslash preserves the literal meaning of the following
335 character, with the exception of
336 .Aq newline .
337 A backslash preceding a
338 .Aq newline
339 is treated as a line continuation.
340 .Ss Single Quotes
341 Enclosing characters in single quotes preserves the literal meaning of all
342 the characters (except single quotes, making it impossible to put
343 single-quotes in a single-quoted string).
344 .Ss Double Quotes
345 Enclosing characters within double quotes preserves the literal
346 meaning of all characters except dollar sign
347 .Pq $ ,
348 backquote
349 .Pq ` ,
350 and backslash
351 .Pq \e .
352 The backslash inside double quotes is historically weird, and serves to
353 quote only the following characters:
354 .Dl $  `  \*q  \e  \*[Lt]newline\*[Gt] .
355 Otherwise it remains literal.
356 .Ss Reserved Words
357 Reserved words are words that have special meaning to the
358 shell and are recognized at the beginning of a line and
359 after a control operator.
360 The following are reserved words:
361 .Bl -column while while while while while -offset indent
362 .It ! Ta elif Ta fi Ta while Ta case
363 .It else Ta for Ta then Ta { Ta }
364 .It do Ta done Ta until Ta if Ta esac
367 Their meaning is discussed later.
368 .Ss Aliases
369 An alias is a name and corresponding value set using the
370 .Ic alias
371 built-in command.
372 Whenever a reserved word may occur (see above),
373 and after checking for reserved words, the shell
374 checks the word to see if it matches an alias.
375 If it does, it replaces it in the input stream with its value.
376 For example, if there is an alias called
377 .Dq lf
378 with the value
379 .Dq "ls -F" ,
380 then the input:
382 .Dl lf foobar Aq return
384 would become
386 .Dl ls -F foobar Aq return
388 Aliases provide a convenient way for naive users to create shorthands for
389 commands without having to learn how to create functions with arguments.
390 They can also be used to create lexically obscure code.
391 This use is discouraged.
392 .Ss Commands
393 The shell interprets the words it reads according to a language, the
394 specification of which is outside the scope of this man page (refer to the
395 BNF in the
396 .Tn POSIX
397 1003.2 document).
398 Essentially though, a line is read and if the first
399 word of the line (or after a control operator) is not a reserved word,
400 then the shell has recognized a simple command.
401 Otherwise, a complex
402 command or some other special construct may have been recognized.
403 .Ss Simple Commands
404 If a simple command has been recognized, the shell performs
405 the following actions:
406 .Bl -enum -offset indent
408 Leading words of the form
409 .Dq name=value
410 are stripped off and assigned to the environment of the simple command.
411 Redirection operators and their arguments (as described below) are
412 stripped off and saved for processing.
414 The remaining words are expanded as described in
415 the section called
416 .Dq Expansions ,
417 and the first remaining word is considered the command name and the
418 command is located.
419 The remaining words are considered the arguments of the command.
420 If no command name resulted, then the
421 .Dq name=value
422 variable assignments recognized in item 1 affect the current shell.
424 Redirections are performed as described in the next section.
426 .Ss Redirections
427 Redirections are used to change where a command reads its input or sends
428 its output.
429 In general, redirections open, close, or duplicate an
430 existing reference to a file.
431 The overall format used for redirection is:
433 .Dl [n] Va redir-op Ar file
435 where
436 .Va redir-op
437 is one of the redirection operators mentioned previously.
438 Following is a list of the possible redirections.
440 .Bq n
441 is an optional number, as in
442 .Sq 3
443 (not
444 .Sq Bq 3 ) ,
445 that refers to a file descriptor.
446 .Bl -tag -width aaabsfiles -offset indent
447 .It [n] Ns \*[Gt] file
448 Redirect standard output (or n) to file.
449 .It [n] Ns \*[Gt]| file
450 Same, but override the
451 .Fl C
452 option.
453 .It [n] Ns \*[Gt]\*[Gt] file
454 Append standard output (or n) to file.
455 .It [n] Ns \*[Lt] file
456 Redirect standard input (or n) from file.
457 .It [n1] Ns \*[Lt]\*[Am] Ns n2
458 Duplicate standard input (or n1) from file descriptor n2.
459 .It [n] Ns \*[Lt]\*[Am]-
460 Close standard input (or n).
461 .It [n1] Ns \*[Gt]\*[Am] Ns n2
462 Duplicate standard output (or n1) to n2.
463 .It [n] Ns \*[Gt]\*[Am]-
464 Close standard output (or n).
465 .It [n] Ns \*[Lt]\*[Gt] file
466 Open file for reading and writing on standard input (or n).
469 The following redirection is often called a
470 .Dq here-document .
471 .Bl -item -offset indent
473 .Li [n]\*[Lt]\*[Lt] delimiter
474 .Dl here-doc-text ...
475 .Li delimiter
478 All the text on successive lines up to the delimiter is saved away and
479 made available to the command on standard input, or file descriptor n if
480 it is specified.
481 If the delimiter as specified on the initial line is
482 quoted, then the here-doc-text is treated literally, otherwise the text is
483 subjected to parameter expansion, command substitution, and arithmetic
484 expansion (as described in the section on
485 .Dq Expansions ) .
486 If the operator is
487 .Dq \*[Lt]\*[Lt]-
488 instead of
489 .Dq \*[Lt]\*[Lt] ,
490 then leading tabs in the here-doc-text are stripped.
491 .Ss Search and Execution
492 There are three types of commands: shell functions, built-in commands, and
493 normal programs -- and the command is searched for (by name) in that order.
494 They each are executed in a different way.
496 When a shell function is executed, all of the shell positional parameters
497 (except $0, which remains unchanged) are set to the arguments of the shell
498 function.
499 The variables which are explicitly placed in the environment of
500 the command (by placing assignments to them before the function name) are
501 made local to the function and are set to the values given.
502 Then the command given in the function definition is executed.
503 The positional parameters are restored to their original values
504 when the command completes.
505 This all occurs within the current shell.
507 Shell built-ins are executed internally to the shell, without spawning a
508 new process.
510 Otherwise, if the command name doesn't match a function or built-in, the
511 command is searched for as a normal program in the file system (as
512 described in the next section).
513 When a normal program is executed, the shell runs the program,
514 passing the arguments and the environment to the program.
515 If the program is not a normal executable file (i.e., if it does
516 not begin with the "magic number" whose
517 .Tn ASCII
518 representation is "#!", so
519 .Xr execve 2
520 returns
521 .Er ENOEXEC
522 then) the shell will interpret the program in a subshell.
523 The child shell will reinitialize itself in this case,
524 so that the effect will be as if a
525 new shell had been invoked to handle the ad-hoc shell script, except that
526 the location of hashed commands located in the parent shell will be
527 remembered by the child.
529 Note that previous versions of this document and the source code itself
530 misleadingly and sporadically refer to a shell script without a magic
531 number as a "shell procedure".
532 .Ss Path Search
533 When locating a command, the shell first looks to see if it has a shell
534 function by that name.
535 Then it looks for a built-in command by that name.
536 If a built-in command is not found, one of two things happen:
537 .Bl -enum
539 Command names containing a slash are simply executed without performing
540 any searches.
542 The shell searches each entry in
543 .Ev PATH
544 in turn for the command.
545 The value of the
546 .Ev PATH
547 variable should be a series of entries separated by colons.
548 Each entry consists of a directory name.
549 The current directory may be indicated
550 implicitly by an empty directory name, or explicitly by a single period.
552 .Ss Command Exit Status
553 Each command has an exit status that can influence the behavior
554 of other shell commands.
555 The paradigm is that a command exits
556 with zero for normal or success, and non-zero for failure,
557 error, or a false indication.
558 The man page for each command
559 should indicate the various exit codes and what they mean.
560 Additionally, the built-in commands return exit codes, as does
561 an executed shell function.
563 If a command consists entirely of variable assignments then the
564 exit status of the command is that of the last command substitution
565 if any, otherwise 0.
566 .Ss Complex Commands
567 Complex commands are combinations of simple commands with control
568 operators or reserved words, together creating a larger complex command.
569 More generally, a command is one of the following:
570 .Bl -bullet
572 simple command
574 pipeline
576 list or compound-list
578 compound command
580 function definition
583 Unless otherwise stated, the exit status of a command is that of the last
584 simple command executed by the command.
585 .Ss Pipelines
586 A pipeline is a sequence of one or more commands separated
587 by the control operator |.
588 The standard output of all but
589 the last command is connected to the standard input
590 of the next command.
591 The standard output of the last
592 command is inherited from the shell, as usual.
594 The format for a pipeline is:
596 .Dl [!] command1 [ | command2 ...]
598 The standard output of command1 is connected to the standard input of
599 command2.
600 The standard input, standard output, or both of a command is
601 considered to be assigned by the pipeline before any redirection specified
602 by redirection operators that are part of the command.
604 If the pipeline is not in the background (discussed later), the shell
605 waits for all commands to complete.
607 If the reserved word ! does not precede the pipeline, the exit status is
608 the exit status of the last command specified in the pipeline.
609 Otherwise, the exit status is the logical NOT of the exit status of the
610 last command.
611 That is, if the last command returns zero, the exit status
612 is 1; if the last command returns greater than zero, the exit status is
613 zero.
615 Because pipeline assignment of standard input or standard output or both
616 takes place before redirection, it can be modified by redirection.
617 For example:
619 .Dl $ command1 2\*[Gt]\*[Am]1 | command2
621 sends both the standard output and standard error of command1
622 to the standard input of command2.
624 A ; or
625 .Aq newline
626 terminator causes the preceding AND-OR-list (described
627 next) to be executed sequentially; a \*[Am] causes asynchronous execution of
628 the preceding AND-OR-list.
630 Note that unlike some other shells, each process in the pipeline is a
631 child of the invoking shell (unless it is a shell built-in, in which case
632 it executes in the current shell -- but any effect it has on the
633 environment is wiped).
634 .Ss Background Commands -- \*[Am]
635 If a command is terminated by the control operator ampersand (\*[Am]), the
636 shell executes the command asynchronously -- that is, the shell does not
637 wait for the command to finish before executing the next command.
639 The format for running a command in background is:
641 .Dl command1 \*[Am] [command2 \*[Am] ...]
643 If the shell is not interactive, the standard input of an asynchronous
644 command is set to
645 .Pa /dev/null .
646 .Ss Lists -- Generally Speaking
647 A list is a sequence of zero or more commands separated by newlines,
648 semicolons, or ampersands, and optionally terminated by one of these three
649 characters.
650 The commands in a list are executed in the order they are written.
651 If command is followed by an ampersand, the shell starts the
652 command and immediately proceed onto the next command; otherwise it waits
653 for the command to terminate before proceeding to the next one.
654 .Ss Short-Circuit List Operators
655 .Dq \*[Am]\*[Am]
657 .Dq ||
658 are AND-OR list operators.
659 .Dq \*[Am]\*[Am]
660 executes the first command, and then executes the second command if and only
661 if the exit status of the first command is zero.
662 .Dq ||
663 is similar, but executes the second command if and only if the exit status
664 of the first command is nonzero.
665 .Dq \*[Am]\*[Am]
667 .Dq ||
668 both have the same priority.
669 Note that these operators are left-associative, so
670 .Dq true || echo bar \*[Am]\*[Am] echo baz
671 writes
672 .Dq baz
673 and nothing else.
674 This is not the way it works in C.
675 Also, if you forget the left-hand side (for example when continuing lines but
676 forgetting to use a backslash) it defaults to a true statement.
677 This behavior is not useful and should not be relied upon.
678 .Ss Flow-Control Constructs -- if, while, for, case
679 The syntax of the if command is
680 .Bd -literal -offset indent
681 if list
682 then list
683 [ elif list
684 then    list ] ...
685 [ else list ]
689 The syntax of the while command is
690 .Bd -literal -offset indent
691 while list
692 do   list
693 done
696 The two lists are executed repeatedly while the exit status of the
697 first list is zero.
698 The until command is similar, but has the word
699 until in place of while, which causes it to
700 repeat until the exit status of the first list is zero.
702 The syntax of the for command is
703 .Bd -literal -offset indent
704 for variable in word ...
705 do   list
706 done
709 The words are expanded, and then the list is executed repeatedly with the
710 variable set to each word in turn.
711 do and done may be replaced with
712 .Dq {
714 .Dq } .
716 The syntax of the break and continue command is
717 .Bd -literal -offset indent
718 break [ num ]
719 continue [ num ]
722 Break terminates the num innermost for or while loops.
723 Continue continues with the next iteration of the innermost loop.
724 These are implemented as built-in commands.
726 The syntax of the case command is
727 .Bd -literal -offset indent
728 case word in
729 pattern) list ;;
730 \&...
731 esac
734 The pattern can actually be one or more patterns (see
735 .Sx Shell Patterns
736 described later), separated by
737 .Dq \*(Ba
738 characters.
739 .Ss Grouping Commands Together
740 Commands may be grouped by writing either
742 .Dl (list)
746 .Dl { list; }
748 The first of these executes the commands in a subshell.
749 Built-in commands grouped into a (list) will not affect the current shell.
750 The second form does not fork another shell so is slightly more efficient.
751 Grouping commands together this way allows you to redirect
752 their output as though they were one program:
754 .Bd -literal -offset indent
755 { echo -n \*q hello \*q ; echo \*q world" ; } \*[Gt] greeting
758 Note that
759 .Dq }
760 must follow a control operator (here,
761 .Dq \&; )
762 so that it is recognized as a reserved word and not as another command argument.
763 .Ss Functions
764 The syntax of a function definition is
766 .Dl name ( ) command
768 A function definition is an executable statement; when executed it
769 installs a function named name and returns an exit status of zero.
770 The command is normally a list enclosed between
771 .Dq {
773 .Dq } .
775 Variables may be declared to be local to a function by using a local
776 command.
777 This should appear as the first statement of a function, and the syntax is
779 .Dl local [ variable | - ] ...
781 .Dq Local
782 is implemented as a built-in command.
784 When a variable is made local, it inherits the initial value and exported
785 and read-only flags from the variable with the same name in the surrounding
786 scope, if there is one.
787 Otherwise, the variable is initially unset.
788 The shell uses dynamic scoping, so that if you make the variable x local to
789 function f, which then calls function g, references to the variable x made
790 inside g will refer to the variable x declared inside f, not to the global
791 variable named x.
793 The only special parameter that can be made local is
794 .Dq - .
795 Making
796 .Dq -
797 local causes any shell options that are changed via the set command inside the
798 function to be restored to their original values when the function
799 returns.
801 The syntax of the return command is
803 .Dl return [ exitstatus ]
805 It terminates the currently executing function.
806 Return is implemented as a built-in command.
807 .Ss Variables and Parameters
808 The shell maintains a set of parameters.
809 A parameter denoted by a name is called a variable.
810 When starting up, the shell turns all the environment
811 variables into shell variables.
812 New variables can be set using the form
814 .Dl name=value
816 Variables set by the user must have a name consisting solely of
817 alphabetics, numerics, and underscores - the first of which must not be
818 numeric.
819 A parameter can also be denoted by a number or a special
820 character as explained below.
821 .Ss Positional Parameters
822 A positional parameter is a parameter denoted by a number (n \*[Gt] 0).
823 The shell sets these initially to the values of its command line arguments
824 that follow the name of the shell script.
826 .Ic set
827 built-in can also be used to set or reset them.
828 .Ss Special Parameters
829 A special parameter is a parameter denoted by one of the following special
830 characters.
831 The value of the parameter is listed next to its character.
832 .Bl -tag -width thinhyphena
833 .It *
834 Expands to the positional parameters, starting from one.
835 When the
836 expansion occurs within a double-quoted string it expands to a single
837 field with the value of each parameter separated by the first character of
839 .Ev IFS
840 variable, or by a
841 .Aq space
843 .Ev IFS
844 is unset.
845 .It @
846 Expands to the positional parameters, starting from one.
847 When the expansion occurs within double-quotes, each positional
848 parameter expands as a separate argument.
849 If there are no positional parameters, the
850 expansion of @ generates zero arguments, even when @ is
851 double-quoted.
852 What this basically means, for example, is
853 if $1 is
854 .Dq abc
855 and $2 is
856 .Dq def ghi ,
857 then
858 .Qq $@
859 expands to
860 the two arguments:
862 .Sm off
863 .Dl \*q abc \*q \  \*q def\ ghi \*q
864 .Sm on
865 .It #
866 Expands to the number of positional parameters.
867 .It \&?
868 Expands to the exit status of the most recent pipeline.
869 .It - (Hyphen.)
870 Expands to the current option flags (the single-letter
871 option names concatenated into a string) as specified on
872 invocation, by the set built-in command, or implicitly
873 by the shell.
874 .It $
875 Expands to the process ID of the invoked shell.
876 A subshell retains the same value of $ as its parent.
877 .It \&!
878 Expands to the process ID of the most recent background
879 command executed from the current shell.
880 For a pipeline, the process ID is that of the last command in the pipeline.
881 .It 0 (Zero.)
882 Expands to the name of the shell or shell script.
884 .Ss Word Expansions
885 This clause describes the various expansions that are performed on words.
886 Not all expansions are performed on every word, as explained later.
888 Tilde expansions, parameter expansions, command substitutions, arithmetic
889 expansions, and quote removals that occur within a single word expand to a
890 single field.
891 It is only field splitting or pathname expansion that can
892 create multiple fields from a single word.
893 The single exception to this
894 rule is the expansion of the special parameter @ within double-quotes, as
895 was described above.
897 The order of word expansion is:
898 .Bl -enum
900 Tilde Expansion, Parameter Expansion, Command Substitution,
901 Arithmetic Expansion (these all occur at the same time).
903 Field Splitting is performed on fields
904 generated by step (1) unless the
905 .Ev IFS
906 variable is null.
908 Pathname Expansion (unless set
909 .Fl f
910 is in effect).
912 Quote Removal.
915 The $ character is used to introduce parameter expansion, command
916 substitution, or arithmetic evaluation.
917 .Ss Tilde Expansion (substituting a user's home directory)
918 A word beginning with an unquoted tilde character (~) is
919 subjected to tilde expansion.
920 All the characters up to
921 a slash (/) or the end of the word are treated as a username
922 and are replaced with the user's home directory.
923 If the username is missing (as in
924 .Pa ~/foobar ) ,
925 the tilde is replaced with the value of the
926 .Va HOME
927 variable (the current user's home directory).
928 .Ss Parameter Expansion
929 The format for parameter expansion is as follows:
931 .Dl ${expression}
933 where expression consists of all characters until the matching
934 .Dq } .
936 .Dq }
937 escaped by a backslash or within a quoted string, and characters in
938 embedded arithmetic expansions, command substitutions, and variable
939 expansions, are not examined in determining the matching
940 .Dq } .
942 The simplest form for parameter expansion is:
944 .Dl ${parameter}
946 The value, if any, of parameter is substituted.
948 The parameter name or symbol can be enclosed in braces, which are
949 optional except for positional parameters with more than one digit or
950 when parameter is followed by a character that could be interpreted as
951 part of the name.
952 If a parameter expansion occurs inside double-quotes:
953 .Bl -enum
955 Pathname expansion is not performed on the results of the expansion.
957 Field splitting is not performed on the results of the
958 expansion, with the exception of the special rules for @.
961 In addition, a parameter expansion can be modified by using one of the
962 following formats.
963 .Bl -tag -width aaparameterwordaaaaa
964 .It ${parameter:-word}
965 Use Default Values.
966 If parameter is unset or null, the expansion of word
967 is substituted; otherwise, the value of parameter is substituted.
968 .It ${parameter:=word}
969 Assign Default Values.
970 If parameter is unset or null, the expansion of
971 word is assigned to parameter.
972 In all cases, the final value of parameter is substituted.
973 Only variables, not positional parameters or special
974 parameters, can be assigned in this way.
975 .It ${parameter:?[word]}
976 Indicate Error if Null or Unset.
977 If parameter is unset or null, the
978 expansion of word (or a message indicating it is unset if word is omitted)
979 is written to standard error and the shell exits with a nonzero exit status.
980 Otherwise, the value of parameter is substituted.
981 An interactive shell need not exit.
982 .It ${parameter:+word}
983 Use Alternative Value.
984 If parameter is unset or null, null is
985 substituted; otherwise, the expansion of word is substituted.
988 In the parameter expansions shown previously, use of the colon in the
989 format results in a test for a parameter that is unset or null; omission
990 of the colon results in a test for a parameter that is only unset.
991 .Bl -tag -width aaparameterwordaaaaa
992 .It ${#parameter}
993 String Length.
994 The length in characters of the value of parameter.
997 The following four varieties of parameter expansion provide for substring
998 processing.
999 In each case, pattern matching notation (see
1000 .Sx Shell Patterns ) ,
1001 rather than regular expression notation, is used to evaluate the patterns.
1002 If parameter is * or @, the result of the expansion is unspecified.
1003 Enclosing the full parameter expansion string in double-quotes does not
1004 cause the following four varieties of pattern characters to be quoted,
1005 whereas quoting characters within the braces has this effect.
1006 .Bl -tag -width aaparameterwordaaaaa
1007 .It ${parameter%word}
1008 Remove Smallest Suffix Pattern.
1009 The word is expanded to produce a pattern.
1010 The parameter expansion then results in parameter, with the
1011 smallest portion of the suffix matched by the pattern deleted.
1012 .It ${parameter%%word}
1013 Remove Largest Suffix Pattern.
1014 The word is expanded to produce a pattern.
1015 The parameter expansion then results in parameter, with the largest
1016 portion of the suffix matched by the pattern deleted.
1017 .It ${parameter#word}
1018 Remove Smallest Prefix Pattern.
1019 The word is expanded to produce a pattern.
1020 The parameter expansion then results in parameter, with the
1021 smallest portion of the prefix matched by the pattern deleted.
1022 .It ${parameter##word}
1023 Remove Largest Prefix Pattern.
1024 The word is expanded to produce a pattern.
1025 The parameter expansion then results in parameter, with the largest
1026 portion of the prefix matched by the pattern deleted.
1028 .Ss Command Substitution
1029 Command substitution allows the output of a command to be substituted in
1030 place of the command name itself.
1031 Command substitution occurs when the command is enclosed as follows:
1033 .Dl $(command)
1037 .Dq backquoted
1038 version
1039 .Pc :
1041 .Dl `command`
1043 The shell expands the command substitution by executing command in a
1044 subshell environment and replacing the command substitution with the
1045 standard output of the command, removing sequences of one or more
1046 .Ao newline Ac Ns s
1047 at the end of the substitution.
1048 (Embedded
1049 .Ao newline Ac Ns s
1050 before
1051 the end of the output are not removed; however, during field splitting,
1052 they may be translated into
1053 .Ao space Ac Ns s ,
1054 depending on the value of
1055 .Ev IFS
1056 and quoting that is in effect.)
1057 .Ss Arithmetic Expansion
1058 Arithmetic expansion provides a mechanism for evaluating an arithmetic
1059 expression and substituting its value.
1060 The format for arithmetic expansion is as follows:
1062 .Dl $((expression))
1064 The expression is treated as if it were in double-quotes, except
1065 that a double-quote inside the expression is not treated specially.
1066 The shell expands all tokens in the expression for parameter expansion,
1067 command substitution, and quote removal.
1069 Next, the shell treats this as an arithmetic expression and
1070 substitutes the value of the expression.
1072 Arithmetic expressions use a syntax similar to that
1073 of the C language, and are evaluated using the
1074 .Ql intmax_t
1075 data type (this is an extension to
1076 .Tn POSIX ,
1077 which requires only
1078 .Ql long
1079 arithmetic).
1080 Shell variables may be referenced by name inside an arithmetic
1081 expression, without needing a
1082 .Dq \&$
1083 sign.
1084 .Ss White Space Splitting (Field Splitting)
1085 After parameter expansion, command substitution, and
1086 arithmetic expansion the shell scans the results of
1087 expansions and substitutions that did not occur in double-quotes for
1088 field splitting and multiple fields can result.
1090 The shell treats each character of the
1091 .Ev IFS
1092 as a delimiter and use the delimiters to split the results of parameter
1093 expansion and command substitution into fields.
1095 Non-whitespace characters in
1096 .Ev IFS
1097 are treated strictly as parameter terminators.
1098 So adjacent non-whitespace
1099 .Ev IFS
1100 characters will produce empty parameters.
1103 .Ev IFS
1104 is unset it is assumed to contain space, tab, and newline.
1105 .Ss Pathname Expansion (File Name Generation)
1106 Unless the
1107 .Fl f
1108 flag is set, file name generation is performed after word splitting is
1109 complete.
1110 Each word is viewed as a series of patterns, separated by slashes.
1111 The process of expansion replaces the word with the names of all
1112 existing files whose names can be formed by replacing each pattern with a
1113 string that matches the specified pattern.
1114 There are two restrictions on
1115 this: first, a pattern cannot match a string containing a slash, and
1116 second, a pattern cannot match a string starting with a period unless the
1117 first character of the pattern is a period.
1118 The next section describes the
1119 patterns used for both Pathname Expansion and the
1120 .Ic case
1121 command.
1122 .Ss Shell Patterns
1123 A pattern consists of normal characters, which match themselves,
1124 and meta-characters.
1125 The meta-characters are
1126 .Dq \&! ,
1127 .Dq * ,
1128 .Dq \&? ,
1130 .Dq \&[ .
1131 These characters lose their special meanings if they are quoted.
1132 When command or variable substitution is performed
1133 and the dollar sign or back quotes are not double quoted,
1134 the value of the variable or the output of
1135 the command is scanned for these characters and they are turned into
1136 meta-characters.
1138 An asterisk
1139 .Pq Dq *
1140 matches any string of characters.
1141 A question mark matches any single character.
1142 A left bracket
1143 .Pq Dq \&[
1144 introduces a character class.
1145 The end of the character class is indicated by a
1146 .Pq Dq \&] ;
1147 if the
1148 .Dq \&]
1149 is missing then the
1150 .Dq \&[
1151 matches a
1152 .Dq \&[
1153 rather than introducing a character class.
1154 A character class matches any of the characters between the square brackets.
1155 A range of characters may be specified using a minus sign.
1156 The character class may be complemented
1157 by making an exclamation point the first character of the character class.
1159 To include a
1160 .Dq \&]
1161 in a character class, make it the first character listed (after the
1162 .Dq \&! ,
1163 if any).
1164 To include a minus sign, make it the first or last character listed.
1165 .Ss Built-ins
1166 This section lists the built-in commands which are built-in because they
1167 need to perform some operation that can't be performed by a separate
1168 process.
1169 In addition to these, there are several other commands that may
1170 be built in for efficiency (e.g.
1171 .Xr printf 1 ,
1172 .Xr echo 1 ,
1173 .Xr test 1 ,
1174 etc).
1175 .Bl -tag -width 5n
1176 .It :
1177 A null command that returns a 0 (true) exit value.
1178 .It \&. file
1179 The commands in the specified file are read and executed by the shell.
1180 .It alias Op Ar name Ns Op Ar "=string ..."
1182 .Ar name=string
1183 is specified, the shell defines the alias
1184 .Ar name
1185 with value
1186 .Ar string .
1187 If just
1188 .Ar name
1189 is specified, the value of the alias
1190 .Ar name
1191 is printed.
1192 With no arguments, the
1193 .Ic alias
1194 built-in prints the
1195 names and values of all defined aliases (see
1196 .Ic unalias ) .
1197 .It bg [ Ar job ] ...
1198 Continue the specified jobs (or the current job if no
1199 jobs are given) in the background.
1200 .It command Oo Fl p Oc Oo Fl v Oc Oo Fl V Oc Ar command Oo Ar arg ... Oc
1201 Execute the specified command but ignore shell functions when searching
1202 for it.
1203 (This is useful when you
1204 have a shell function with the same name as a built-in command.)
1205 .Bl -tag -width 5n
1206 .It Fl p
1207 search for command using a
1208 .Ev PATH
1209 that guarantees to find all the standard utilities.
1210 .It Fl V
1211 Do not execute the command but
1212 search for the command and print the resolution of the
1213 command search.
1214 This is the same as the
1215 .Ic type
1216 built-in.
1217 .It Fl v
1218 Do not execute the command but
1219 search for the command and print the absolute pathname
1220 of utilities, the name for built-ins or the expansion of aliases.
1222 .It cd Op Ar directory Op Ar replace
1223 Switch to the specified directory (default
1224 .Ev $HOME ) .
1226 .Ar replace
1227 is specified, then the new directory name is generated by replacing
1228 the first occurrence of
1229 .Ar directory
1230 in the current directory name with
1231 .Ar replace .
1232 Otherwise if an entry for
1233 .Ev CDPATH
1234 appears in the environment of the
1235 .Ic cd
1236 command or the shell variable
1237 .Ev CDPATH
1238 is set and the directory name does not begin with a slash,
1239 or its first (or only) component isn't dot or dot dot,
1240 then the directories listed in
1241 .Ev CDPATH
1242 will be searched for the specified directory.
1243 The format of
1244 .Ev CDPATH
1245 is the same as that of
1246 .Ev PATH .
1248 In an interactive shell, the
1249 .Ic cd
1250 command will print out the name of the
1251 directory that it actually switched to if this is different from the name
1252 that the user gave.
1253 These may be different either because the
1254 .Ev CDPATH
1255 mechanism was used or because a symbolic link was crossed.
1256 .It eval Ar string ...
1257 Concatenate all the arguments with spaces.
1258 Then re-parse and execute the command.
1259 .It exec Op Ar command arg ...
1260 Unless command is omitted, the shell process is replaced with the
1261 specified program (which must be a real program, not a shell built-in or
1262 function).
1263 Any redirections on the
1264 .Ic exec
1265 command are marked as permanent, so that they are not undone when the
1266 .Ic exec
1267 command finishes.
1268 .It exit Op Ar exitstatus
1269 Terminate the shell process.
1271 .Ar exitstatus
1272 is given it is used as the exit status of the shell; otherwise the
1273 exit status of the preceding command is used.
1274 .It export Ar name ...
1275 .It export Fl p
1276 The specified names are exported so that they will appear in the
1277 environment of subsequent commands.
1278 The only way to un-export a variable is to unset it.
1279 The shell allows the value of a variable to be set at the
1280 same time it is exported by writing
1282 .Dl export name=value
1284 With no arguments the export command lists the names of all exported variables.
1285 With the
1286 .Fl p
1287 option specified the output will be formatted suitably for non-interactive use.
1288 .It fc Oo Fl e Ar editor Oc Oo Ar first Oo Ar last Oc Oc
1289 .It fc Fl l Oo Fl nr Oc Oo Ar first Oo Ar last Oc Oc
1290 .It fc Fl s Oo Ar old=new Oc Oo Ar first Oc
1292 .Ic fc
1293 built-in lists, or edits and re-executes, commands previously entered
1294 to an interactive shell.
1295 .Bl -tag -width 5n
1296 .It Fl e No editor
1297 Use the editor named by editor to edit the commands.
1298 The editor string is a command name, subject to search via the
1299 .Ev PATH
1300 variable.
1301 The value in the
1302 .Ev FCEDIT
1303 variable is used as a default when
1304 .Fl e
1305 is not specified.
1307 .Ev FCEDIT
1308 is null or unset, the value of the
1309 .Ev EDITOR
1310 variable is used.
1312 .Ev EDITOR
1313 is null or unset,
1314 .Xr ed 1
1315 is used as the editor.
1316 .It Fl l No (ell)
1317 List the commands rather than invoking an editor on them.
1318 The commands are written in the sequence indicated by
1319 the first and last operands, as affected by
1320 .Fl r ,
1321 with each command preceded by the command number.
1322 .It Fl n
1323 Suppress command numbers when listing with -l.
1324 .It Fl r
1325 Reverse the order of the commands listed (with
1326 .Fl l )
1327 or edited (with neither
1328 .Fl l
1330 .Fl s ) .
1331 .It Fl s
1332 Re-execute the command without invoking an editor.
1333 .It first
1334 .It last
1335 Select the commands to list or edit.
1336 The number of previous commands that
1337 can be accessed are determined by the value of the
1338 .Ev HISTSIZE
1339 variable.
1340 The value of first or last or both are one of the following:
1341 .Bl -tag -width 5n
1342 .It [+]number
1343 A positive number representing a command number; command numbers can be
1344 displayed with the
1345 .Fl l
1346 option.
1347 .It Fl number
1348 A negative decimal number representing the command that was executed
1349 number of commands previously.
1350 For example, \-1 is the immediately previous command.
1352 .It string
1353 A string indicating the most recently entered command that begins with
1354 that string.
1355 If the old=new operand is not also specified with
1356 .Fl s ,
1357 the string form of the first operand cannot contain an embedded equal sign.
1360 The following environment variables affect the execution of fc:
1361 .Bl -tag -width HISTSIZE
1362 .It Ev FCEDIT
1363 Name of the editor to use.
1364 .It Ev HISTSIZE
1365 The number of previous commands that are accessible.
1367 .It fg Op Ar job
1368 Move the specified job or the current job to the foreground.
1369 .It getopts Ar optstring var
1371 .Tn POSIX
1372 .Ic getopts
1373 command, not to be confused with the
1374 .Em Bell Labs
1375 -derived
1376 .Xr getopt 1 .
1378 The first argument should be a series of letters, each of which may be
1379 optionally followed by a colon to indicate that the option requires an
1380 argument.
1381 The variable specified is set to the parsed option.
1384 .Ic getopts
1385 command deprecates the older
1386 .Xr getopt 1
1387 utility due to its handling of arguments containing whitespace.
1390 .Ic getopts
1391 built-in may be used to obtain options and their arguments
1392 from a list of parameters.
1393 When invoked,
1394 .Ic getopts
1395 places the value of the next option from the option string in the list in
1396 the shell variable specified by
1397 .Va var
1398 and its index in the shell variable
1399 .Ev OPTIND .
1400 When the shell is invoked,
1401 .Ev OPTIND
1402 is initialized to 1.
1403 For each option that requires an argument, the
1404 .Ic getopts
1405 built-in will place it in the shell variable
1406 .Ev OPTARG .
1407 If an option is not allowed for in the
1408 .Va optstring ,
1409 then
1410 .Ev OPTARG
1411 will be unset.
1413 .Va optstring
1414 is a string of recognized option letters (see
1415 .Xr getopt 3 ) .
1416 If a letter is followed by a colon, the option is expected to have an
1417 argument which may or may not be separated from it by whitespace.
1418 If an option character is not found where expected,
1419 .Ic getopts
1420 will set the variable
1421 .Va var
1422 to a
1423 .Dq \&? ;
1424 .Ic getopts
1425 will then unset
1426 .Ev OPTARG
1427 and write output to standard error.
1428 By specifying a colon as the first character of
1429 .Va optstring
1430 all errors will be ignored.
1432 A nonzero value is returned when the last option is reached.
1433 If there are no remaining arguments,
1434 .Ic getopts
1435 will set
1436 .Va var
1437 to the special option,
1438 .Dq -- ,
1439 otherwise, it will set
1440 .Va var
1442 .Dq \&? .
1444 The following code fragment shows how one might process the arguments
1445 for a command that can take the options
1446 .Op a
1448 .Op b ,
1449 and the option
1450 .Op c ,
1451 which requires an argument.
1453 .Bd -literal -offset indent
1454 while getopts abc: f
1456         case $f in
1457         a | b)  flag=$f;;
1458         c)      carg=$OPTARG;;
1459         \\?)    echo $USAGE; exit 1;;
1460         esac
1461 done
1462 shift `expr $OPTIND - 1`
1465 This code will accept any of the following as equivalent:
1467 .Bd -literal -offset indent
1468 cmd \-acarg file file
1469 cmd \-a \-c arg file file
1470 cmd \-carg -a file file
1471 cmd \-a \-carg \-\- file file
1473 .It hash Fl rv Ar command ...
1474 The shell maintains a hash table which remembers the
1475 locations of commands.
1476 With no arguments whatsoever,
1478 .Ic hash
1479 command prints out the contents of this table.
1480 Entries which have not been looked at since the last
1481 .Ic cd
1482 command are marked with an asterisk; it is possible for these entries
1483 to be invalid.
1485 With arguments, the
1486 .Ic hash
1487 command removes the specified commands from the hash table (unless
1488 they are functions) and then locates them.
1489 With the
1490 .Fl v
1491 option, hash prints the locations of the commands as it finds them.
1493 .Fl r
1494 option causes the hash command to delete all the entries in the hash table
1495 except for functions.
1496 .It inputrc Ar file
1497 Read the
1498 .Va file
1499 to set keybindings as defined by
1500 .Xr editrc 5 .
1501 .It jobid Op Ar job
1502 Print the process id's of the processes in the job.
1503 If the
1504 .Ar job
1505 argument is omitted, the current job is used.
1506 .It jobs
1507 This command lists out all the background processes
1508 which are children of the current shell process.
1509 .It pwd Op Fl \&LP
1510 Print the current directory.
1512 .Fl L
1513 is specified the cached value (initially set from
1514 .Ev PWD )
1515 is checked to see if it refers to the current directory, if it does
1516 the value is printed.
1517 Otherwise the current directory name is found using
1518 .Xr getcwd 3 .
1519 The environment variable
1520 .Ev PWD
1521 is set to printed value.
1523 The default is
1524 .Ic pwd
1525 .Fl L ,
1526 but note that the built-in
1527 .Ic cd
1528 command doesn't currently support
1529 .Fl L
1531 .Fl P
1532 and will cache (almost) the absolute path.
1534 .Ic cd
1535 is changed,
1536 .Ic pwd
1537 may be changed to default to
1538 .Ic pwd
1539 .Fl P .
1541 If the current directory is renamed and replaced by a symlink to the
1542 same directory, or the initial
1543 .Ev PWD
1544 value followed a symbolic link, then the cached value may not
1545 be the absolute path.
1547 The built-in command may differ from the program of the same name because
1548 the program will use
1549 .Ev PWD
1550 and the built-in uses a separately cached value.
1551 .It read Oo Fl p Ar prompt Oc Oo Fl r Oc Ar variable Oo Ar ... Oc
1552 The prompt is printed if the
1553 .Fl p
1554 option is specified and the standard input is a terminal.
1555 Then a line is read from the standard input.
1556 The trailing newline is deleted from the
1557 line and the line is split as described in the section on word splitting
1558 above, and the pieces are assigned to the variables in order.
1559 If there are more pieces than variables, the remaining pieces
1560 (along with the characters in
1561 .Ev IFS
1562 that separated them) are assigned to the last variable.
1563 If there are more variables than pieces,
1564 the remaining variables are assigned the null string.
1566 .Ic read
1567 built-in will indicate success unless EOF is encountered on input, in
1568 which case failure is returned.
1570 By default, unless the
1571 .Fl r
1572 option is specified, the backslash
1573 .Dq \e
1574 acts as an escape character, causing the following character to be treated
1575 literally.
1576 If a backslash is followed by a newline, the backslash and the
1577 newline will be deleted.
1578 .It readonly Ar name ...
1579 .It readonly Fl p
1580 The specified names are marked as read only, so that they cannot be
1581 subsequently modified or unset.
1582 The shell allows the value of a variable
1583 to be set at the same time it is marked read only by writing
1585 .Dl readonly name=value
1587 With no arguments the readonly command lists the names of all read only
1588 variables.
1589 With the
1590 .Fl p
1591 option specified the output will be formatted suitably for non-interactive use.
1593 .It set Oo { Fl options | Cm +options | Cm \-- } Oc Ar arg ...
1595 .Ic set
1596 command performs three different functions.
1598 With no arguments, it lists the values of all shell variables.
1600 If options are given, it sets the specified option
1601 flags, or clears them as described in the section called
1602 .Sx Argument List Processing .
1604 The third use of the set command is to set the values of the shell's
1605 positional parameters to the specified arguments.
1606 To change the positional
1607 parameters without changing any options, use
1608 .Dq --
1609 as the first argument to set.
1610 If no arguments are present, the set command
1611 will clear all the positional parameters (equivalent to executing
1612 .Dq shift $# . )
1613 .It setvar Ar variable Ar value
1614 Assigns value to variable.
1615 (In general it is better to write
1616 variable=value rather than using
1617 .Ic setvar .
1618 .Ic setvar
1619 is intended to be used in
1620 functions that assign values to variables whose names are passed as
1621 parameters.)
1622 .It shift Op Ar n
1623 Shift the positional parameters n times.
1625 .Ic shift
1626 sets the value of
1627 .Va $1
1628 to the value of
1629 .Va $2 ,
1630 the value of
1631 .Va $2
1632 to the value of
1633 .Va $3 ,
1634 and so on, decreasing
1635 the value of
1636 .Va $#
1637 by one.
1638 If there are zero positional parameters,
1639 .Ic shift
1640 does nothing.
1641 .It trap Oo Fl l Oc
1642 .It trap Oo Ar action Oc Ar signal ...
1643 Cause the shell to parse and execute action when any of the specified
1644 signals are received.
1645 The signals are specified by signal number or as the name of the signal.
1647 .Ar signal
1649 .Li 0
1650 or its equivalent, EXIT,
1651 the action is executed when the shell exits.
1652 .Ar action
1653 may be null, which cause the specified signals to be ignored.
1654 With
1655 .Ar action
1656 omitted or set to `-' the specified signals are set to their default action.
1657 When the shell forks off a subshell, it resets trapped (but not ignored)
1658 signals to the default action.
1659 On non-interactive shells, the
1660 .Ic trap
1661 command has no effect on signals that were
1662 ignored on entry to the shell.
1663 On interactive shells, the
1664 .Ic trap
1665 command will catch or reset signals ignored on entry.
1666 Issuing
1667 .Ic trap
1668 with option
1669 .Ar -l
1670 will print a list of valid signal names.
1671 .Ic trap
1672 without any arguments cause it to write a list of signals and their
1673 associated action to the standard output in a format that is suitable
1674 as an input to the shell that achieves the same trapping results.
1676 Examples:
1678 .Dl trap
1680 List trapped signals and their corresponding action
1682 .Dl trap -l
1684 Print a list of valid signals
1686 .Dl trap '' INT QUIT tstp 30
1688 Ignore signals INT QUIT TSTP USR1
1690 .Dl trap date INT
1692 Print date upon receiving signal INT
1693 .It type Op Ar name ...
1694 Interpret each name as a command and print the resolution of the command
1695 search.
1696 Possible resolutions are:
1697 shell keyword, alias, shell built-in,
1698 command, tracked alias and not found.
1699 For aliases the alias expansion is
1700 printed; for commands and tracked aliases the complete pathname of the
1701 command is printed.
1702 .It ulimit Oo Fl H \*(Ba Fl S Oc Oo Fl a \*(Ba Fl tfdscmlpnv Oo Ar value Oc Oc
1703 Inquire about or set the hard or soft limits on processes or set new
1704 limits.
1705 The choice between hard limit (which no process is allowed to
1706 violate, and which may not be raised once it has been lowered) and soft
1707 limit (which causes processes to be signaled but not necessarily killed,
1708 and which may be raised) is made with these flags:
1709 .Bl -tag -width Fl
1710 .It Fl H
1711 set or inquire about hard limits
1712 .It Fl S
1713 set or inquire about soft limits.
1714 If neither
1715 .Fl H
1717 .Fl S
1718 is specified, the soft limit is displayed or both limits are set.
1719 If both are specified, the last one wins.
1722 The limit to be interrogated or set, then, is chosen by specifying
1723 any one of these flags:
1724 .Bl -tag -width Fl
1725 .It Fl a
1726 show all the current limits
1727 .It Fl b
1728 show or set the limit on the socket buffer size of a process (in bytes)
1729 .It Fl t
1730 show or set the limit on CPU time (in seconds)
1731 .It Fl f
1732 show or set the limit on the largest file that can be created
1733 (in 512-byte blocks)
1734 .It Fl d
1735 show or set the limit on the data segment size of a process (in kilobytes)
1736 .It Fl s
1737 show or set the limit on the stack size of a process (in kilobytes)
1738 .It Fl c
1739 show or set the limit on the largest core dump size that can be produced
1740 (in 512-byte blocks)
1741 .It Fl m
1742 show or set the limit on the total physical memory that can be
1743 in use by a process (in kilobytes)
1744 .It Fl l
1745 show or set the limit on how much memory a process can lock with
1746 .Xr mlock 2
1747 (in kilobytes)
1748 .It Fl p
1749 show or set the limit on the number of processes this user can
1750 have at one time
1751 .It Fl n
1752 show or set the limit on the number of files a process can have open at once
1753 .It Fl v
1754 show or set the limit on how large a process address space can be
1757 If none of these is specified, it is the limit on file size that is shown
1758 or set.
1759 If value is specified, the limit is set to that number; otherwise
1760 the current limit is displayed.
1762 Limits of an arbitrary process can be displayed or set using the
1763 .Xr sysctl 8
1764 utility.
1766 .It umask Op Ar mask
1767 Set the value of umask (see
1768 .Xr umask 2 )
1769 to the specified octal value.
1770 If the argument is omitted, the umask value is printed.
1771 .It unalias Oo Fl a Oc Oo Ar name Oc
1773 .Ar name
1774 is specified, the shell removes that alias.
1776 .Fl a
1777 is specified, all aliases are removed.
1778 .It unset Ar name ...
1779 The specified variables and functions are unset and unexported.
1780 If a given name corresponds to both a variable and a function, both
1781 the variable and the function are unset.
1782 .It wait Op Ar job
1783 Wait for the specified job to complete and return the exit status of the
1784 last process in the job.
1785 If the argument is omitted, wait for all jobs to
1786 complete and then return an exit status of zero.
1788 .Ss Command Line Editing
1789 When
1791 is being used interactively from a terminal, the current command
1792 and the command history (see
1793 .Ic fc
1795 .Sx Built-ins )
1796 can be edited using emacs-mode or vi-mode command-line editing.
1797 The command
1798 .Ql set -o emacs
1799 enables emacs-mode editing.
1800 The command
1801 .Ql set -o vi
1802 enables vi-mode editing and places the current shell process into
1803 .Ar vi
1804 insert mode.
1805 (See the
1806 .Sx Argument List Processing
1807 section above.)
1810 .Ar vi
1811 mode uses commands similar to a subset of those described in the
1812 .Xr vi 1
1813 man page.
1814 With vi-mode
1815 enabled,
1816 .Nm sh
1817 can be switched between insert mode and command mode.
1818 It's similar to
1819 .Xr vi 1 :
1820 pressing the
1821 .Aq ESC
1822 key will throw you into command VI command mode.
1823 Pressing the
1824 .Aq return
1825 key while in command mode will pass the line to the shell.
1828 .Ar emacs
1829 mode uses commands similar to a subset available in
1831 .Xr emacs 1
1832 editor.
1833 With emacs-mode enabled, special keys can be used to modify the text
1834 in the buffer using the control key.
1837 uses the
1838 .Xr editline 3
1839 library.
1840 .Sh EXIT STATUS
1841 Errors that are detected by the shell, such as a syntax error, will cause the
1842 shell to exit with a non-zero exit status.
1843 If the shell is not an
1844 interactive shell, the execution of the shell file will be aborted.
1845 Otherwise
1846 the shell will return the exit status of the last command executed, or
1847 if the exit built-in is used with a numeric argument, it will return the
1848 argument.
1849 .Sh ENVIRONMENT
1850 .Bl -tag -width MAILCHECK
1851 .It Ev HOME
1852 Set automatically by
1853 .Xr login 1
1854 from the user's login directory in the password file
1855 .Pq Xr passwd 5 .
1856 This environment variable also functions as the default argument for the
1857 .Ic cd
1858 built-in.
1859 .It Ev PATH
1860 The default search path for executables.
1861 See the above section
1862 .Sx Path Search .
1863 .It Ev CDPATH
1864 The search path used with the
1865 .Ic cd
1866 built-in.
1867 .It Ev LANG
1868 The string used to specify localization information that allows users
1869 to work with different culture-specific and language conventions.
1871 .Xr nls 7 .
1872 .It Ev MAIL
1873 The name of a mail file, that will be checked for the arrival of new mail.
1874 Overridden by
1875 .Ev MAILPATH .
1876 .It Ev MAILCHECK
1877 The frequency in seconds that the shell checks for the arrival of mail
1878 in the files specified by the
1879 .Ev MAILPATH
1880 or the
1881 .Ev MAIL
1882 file.
1883 If set to 0, the check will occur at each prompt.
1884 .It Ev MAILPATH
1885 A colon
1886 .Dq \&:
1887 separated list of file names, for the shell to check for incoming mail.
1888 This environment setting overrides the
1889 .Ev MAIL
1890 setting.
1891 There is a maximum of 10 mailboxes that can be monitored at once.
1892 .It Ev PS1
1893 The primary prompt string, which defaults to
1894 .Dq $ \  ,
1895 unless you are the superuser, in which case it defaults to
1896 .Dq # \  .
1897 .It Ev PS2
1898 The secondary prompt string, which defaults to
1899 .Dq \*[Gt] \  .
1900 .It Ev PS4
1901 Output before each line when execution trace (set -x) is enabled,
1902 defaults to
1903 .Dq + \  .
1904 .It Ev IFS
1905 Input Field Separators.
1906 This is normally set to
1907 .Aq space ,
1908 .Aq tab ,
1910 .Aq newline .
1911 See the
1912 .Sx White Space Splitting
1913 section for more details.
1914 .It Ev TERM
1915 The default terminal setting for the shell.
1916 This is inherited by
1917 children of the shell, and is used in the history editing modes.
1918 .It Ev HISTSIZE
1919 The number of lines in the history buffer for the shell.
1921 .Sh FILES
1922 .Bl -item -width HOMEprofilexxxx
1924 .Pa $HOME/.profile
1926 .Pa /etc/profile
1928 .Sh SEE ALSO
1929 .Xr csh 1 ,
1930 .Xr echo 1 ,
1931 .Xr getopt 1 ,
1932 .Xr ksh 1 ,
1933 .Xr login 1 ,
1934 .Xr printf 1 ,
1935 .Xr test 1 ,
1936 .Xr editline 3 ,
1937 .Xr getopt 3 ,
1938 .\" .Xr profile 4 ,
1939 .Xr editrc 5 ,
1940 .Xr passwd 5 ,
1941 .Xr environ 7 ,
1942 .Xr nls 7 ,
1943 .Xr sysctl 8
1944 .Sh HISTORY
1947 command appeared in
1948 .At v1 .
1949 It was, however, unmaintainable so we wrote this one.
1950 .Sh BUGS
1951 Setuid shell scripts should be avoided at all costs, as they are a
1952 significant security risk.
1954 PS1, PS2, and PS4 should be subject to parameter expansion before
1955 being displayed.
1957 The characters generated by filename completion should probably be quoted
1958 to ensure that the filename is still valid after the input line has been
1959 processed.