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