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