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