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