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