.\" $NetBSD: sh.1,v 1.146.2.6 2018/12/07 13:23:49 martin Exp $ .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. .\" .\" This code is derived from software contributed to Berkeley by .\" Kenneth Almquist. .\" .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions .\" are met: .\" 1. Redistributions of source code must retain the above copyright .\" notice, this list of conditions and the following disclaimer. .\" 2. Redistributions in binary form must reproduce the above copyright .\" notice, this list of conditions and the following disclaimer in the .\" documentation and/or other materials provided with the distribution. .\" 3. Neither the name of the University nor the names of its contributors .\" may be used to endorse or promote products derived from this software .\" without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" .\" @(#)sh.1 8.6 (Berkeley) 5/4/95 .\" .Dd October 6, 2017 .Dt SH 1 .\" everything except c o and s (keep them ordered) .ds flags abCEeFfhIiLmnpquVvx .Os .Sh NAME .Nm sh .Nd command interpreter (shell) .Sh SYNOPSIS .Nm .Bk -words .Op Fl \*[flags] .Op Cm +\*[flags] .Ek .Bk -words .Op Fl o Ar option_name .Op Cm +o Ar option_name .Ek .Bk -words .Op Ar command_file Oo Ar argument ... Oc .Ek .Nm .Fl c .Bk -words .Op Fl s .Op Fl \*[flags] .Op Cm +\*[flags] .Ek .Bk -words .Op Fl o Ar option_name .Op Cm +o Ar option_name .Ek .Bk -words .Ar command_string .Op Ar command_name Oo Ar argument ... Oc .Ek .Nm .Fl s .Bk -words .Op Fl \*[flags] .Op Cm +\*[flags] .Ek .Bk -words .Op Fl o Ar option_name .Op Cm +o Ar option_name .Ek .Bk -words .Op Ar argument ... .Ek .Sh DESCRIPTION .Nm is the standard command interpreter for the system. The current version of .Nm is in the process of being changed to conform more closely to the .Tn POSIX 1003.2 and 1003.2a specifications for the shell. This version has many features which make it appear similar in some respects to the Korn shell, but it is not a Korn shell clone (see .Xr ksh 1 ) . This man page is not intended to be a tutorial or a complete specification of the shell. .Ss Overview The shell is a command that reads lines from either a file or the terminal, interprets them, and generally executes other commands. A shell is the program that is running when a user logs into the system. (Users can select which shell is executed for them at login with the .Xr chsh 1 command). The shell implements a language that has flow control constructs, a macro facility that provides a variety of features in addition to data storage, along with built in history and line editing capabilities. It incorporates many features to aid interactive use and has the advantage that the interpretative language is common to both interactive and non-interactive use (shell scripts). That is, commands can be typed directly to the running shell or can be put into a file and the file can be executed directly by the shell. .Ss Invocation If no arguments are present and if the standard input, and output, of the shell are connected to a terminal (or if the .Fl i flag is set), and the .Fl c option is not present, the shell is considered an interactive shell. An interactive shell generally prompts before each command and handles programming and command errors differently (as described below). When first starting, the shell inspects argument 0, and if it begins with a dash .Sq - , the shell is also considered a login shell. This is normally done automatically by the system when the user first logs in. A login shell first reads commands from the files .Pa /etc/profile and .Pa .profile if they exist. If the environment variable .Ev ENV is set on entry to a shell, or is set in the .Pa .profile of a login shell, and either the shell is interactive, or the .Cm posix option is not set, the shell next reads commands from the file named in .Ev ENV . Therefore, a user should place commands that are to be executed only at login time in the .Pa .profile file, and commands that are executed for every shell inside the .Ev ENV file. To set the .Ev ENV variable to some file, place the following line in your .Pa .profile of your home directory .Pp .Dl ENV=$HOME/.shinit; export ENV .Pp substituting for .Dq .shinit any filename you wish. Since the .Ev ENV file can be read for every invocation of the shell, including shell scripts and non-interactive shells, the following paradigm is useful for restricting commands in the .Ev ENV file to interactive invocations. Place commands within the .Dq Ic case and .Dq Ic esac below (these commands are described later): .Pp .Bl -item -compact -offset indent .It .Li case $- in *i*) .Bl -item -compact -offset indent .It .Li # commands for interactive use only .It .Li ... .El .It .Li esac .El .Pp If command line arguments besides the options have been specified, and neither .Fl c nor .Fl s was given, then the shell treats the first argument as the name of a file from which to read commands (a shell script). This also becomes $0 and the remaining arguments are set as the positional parameters of the shell ($1, $2, etc). Otherwise, if .Fl c was given, then the first argument, which must exist, is taken to be a string of .Nm commands to execute. Then if any additional arguments follow the command string, those arguments become $0, $1, ... Otherwise, if additional arguments were given (which implies that .Fl s was set) those arguments become $1, $2, ... If $0 has not been set by the preceding processing, it will be set to argv[0] as passed to the shell, which will usually be the name of the shell itself. If .Fl s was given, or if neither .Fl c nor any additional (non-option) arguments were present, the shell reads commands from its standard input. .Ss Argument List Processing Currently, all of the single letter options that can meaningfully be set using the .Ic set built-in, have a corresponding name that can be used as an argument to the .Fl o option. The set .Fl o name is provided next to the single letter option in the description below. Some options have only a long name, they are described after the flag options, they are used with .Fl o or .Cm +o only, either on the command line, or with the .Ic set built-in command. Other options described are for the command line only. Specifying a dash .Dq - turns the option on, while using a plus .Dq + disables the option. The following options can be set from the command line and, unless otherwise stated, with the .Ic set built-in (described later). .\" .\" strlen("quietprofile") == strlen("local_lineno"): pick the latter .\" to give the indent as the _ in local_lineno, and the fi ligature in .\" quietprofile combine to make "local_lineno' slightly wider when printed .\" (in italics) in a variable width font. Probably should test the actual .\" widths and use the wider, but I am not sure if mandoc is up to that... .\" (and I don't know how to get at the font that will be used easily anyway!) .\" The X's just provide a little extra space. .Bl -tag -width \-WXXlocal_linenoXX -offset indent .\" .It Fl a Em allexport Automatically export any variable to which a value is assigned while this flag is set. .It Fl b Em notify Enable asynchronous notification of background job completion. (Not implemented.) .It Fl C Em noclobber Don't overwrite existing files with .Dq > . .It Fl c Read commands from the .Ar command_string operand instead of, or in addition to, from the standard input. Special parameter 0 will be set from the .Ar command_name operand if given, and the positional parameters ($1, $2, etc.) set from the remaining argument operands, if any. .Fl c is only available at invocation, it cannot be .Ic set , and there is no form using .Dq \&+ . .It Fl E Em emacs Enable the built-in emacs style command line editor (disables .Fl V if it has been set). (See the .Sx Command Line Editing section below.) .It Fl e Em errexit If not interactive, exit immediately if any untested command fails. If interactive, and an untested command fails, cease all processing of the current command and return to prompt for a new command. The exit status of a command is considered to be explicitly tested if the command is used to control an .Ic if , .Ic elif , .Ic while , or .Ic until , or if the command is the left hand operand of an .Dq && or .Dq || operator, or if it is a pipeline (or simple command) preceded by the .Dq \&! operator. With pipelines, only the status of the entire pipeline (indicated by the last command it contains) is tested when .Fl e is set to determine if the shell should exit. .It Fl F Em fork Cause the shell to always use .Xr fork 2 instead of attempting .Xr vfork 2 when it needs to create a new process. This should normally have no visible effect, but can slow execution. The .Nm can be compiled to always use .Xr fork 2 in which case altering the .Fl F flag has no effect. .It Fl f Em noglob Disable pathname expansion. .It Fl h Em trackall Functions defined while this option is set will have paths bound to commands to be executed by the function at the time of the definition. When off when a function is defined, the file system is searched for commands each time the function is invoked. (Not implemented.) .It Fl I Em ignoreeof Ignore EOFs from input when interactive. (After a large number of consecutive EOFs the shell will exit anyway.) .It Fl i Em interactive Force the shell to behave interactively. .It Fl L Em local_lineno When set, before a function is defined, causes the variable .Ev LINENO when used within the function, to refer to the line number defined such that first line of the function is line 1. When reset, .Ev LINENO in a function refers to the line number within the file within which the definition of the function occurs. This option defaults to .Dq on in this shell. For more details see the section .Sx LINENO below. .It Fl m Em monitor Turn on job control (set automatically when interactive). .It Fl n Em noexec Read and parse commands, but do not execute them. This is useful for checking the syntax of shell scripts. If .Fl n becomes set in an interactive shell, it will automatically be cleared just before the next time the command line prompt .Pq Ev PS1 is written. .It Fl p Em nopriv Do not attempt to reset effective UID if it does not match UID. This is not set by default to help avoid incorrect usage by setuid root programs via .Xr system 3 or .Xr popen 3 . .It Fl q Em quietprofile If the .Fl v or .Fl x options have been set, do not apply them when reading initialization files, these being .Pa /etc/profile , .Pa .profile , and the file specified by the .Ev ENV environment variable. .It Fl s Em stdin Read commands from standard input (set automatically if neither .Fl c nor file arguments are present). If after procesing a command_string with the .Fl c option, the shell has not exited, and the .Fl s option is set, it will continue reading more commands from standard input. This option has no effect when set or reset after the shell has already started reading from the command_file, or from standard input. Note that the .Fl s flag being set does not cause the shell to be interactive. .It Fl u Em nounset Write a message to standard error when attempting to obtain a value from a variable that is not set, and if the shell is not interactive, exit immediately. For interactive shells, instead return immediately to the command prompt and read the next command. Note that expansions (described later, see .Sx Word Expansions below) using the .Sq \&+ , .Sq \&\- , .Sq \&= , or .Sq \&? operators test if the variable is set, before attempting to obtain its value, and hence are unaffected by .Fl u . .It Fl V Em vi Enable the built-in .Xr vi 1 command line editor (disables .Fl E if it has been set). (See the .Sx Command Line Editing section below.) .It Fl v Em verbose The shell writes its input to standard error as it is read. Useful for debugging. .It Fl x Em xtrace Write each command to standard error (preceded by the expanded value of .Dq $PS4 ) before it is executed. Useful for debugging. .It "\ \ " Em cdprint Make an interactive shell always print the new directory name when changed by the .Ic cd command. In a non-interactive shell this option has no effect. .It "\ \ " Em nolog Prevent the entry of function definitions into the command history (see .Ic fc in the .Sx Built-ins section.) (Not implemented.) .It "\ \ " Em posix Enables closer adherence to the POSIX shell standard. This option will default set at shell startup if the environment variable .Ev POSIXLY_CORRECT is present. That can be overridden (set or reset) by the .Fl o option on the command line. Currently this option controls whether (!posix) or not (posix) the file given by the .Ev ENV variable is read at startup by a non-interactive shell. It also controls whether file descriptors greater than 2 opened using the .Ic exec built-in command are passed on to utilities executed .Dq ( yes in posix mode), whether a colon (:) terminates the user name in tilde (~) expansions other than in assignment statements .Dq ( no in posix mode), and whether the shell treats an empty brace-list compound statement as a syntax error (expected by POSIX) or permits it. Such statements .Dq "{ }" can be useful when defining dummy functions. Lastly, in posix mode, only one .Dq \&! is permitted before a pipeline. .It "\ \ " Em promptcmds Allows command substitutions (as well as parameter and arithmetic expansions, which are always performed) upon the prompt strings .Ev PS1 , .Ev PS2 , and .Ev PS4 each time, before they are output. This option should not be set until after the prompts have been set (or verified) to avoid accidentally importing unwanted command substitutions from the environment. .It "\ \ " Em tabcomplete Enables filename completion in the command line editor. Typing a tab character will extend the current input word to match a filename. If more than one filename matches it is only extended to be the common prefix. Typing a second tab character will list all the matching names. One of the editing modes, either .Fl E or .Fl V , must be enabled for this to work. .El .Ss Lexical Structure The shell reads input in terms of lines from a file and breaks it up into words at whitespace (blanks and tabs), and at certain sequences of characters that are special to the shell called .Dq operators . There are two types of operators: control operators and redirection operators (their meaning is discussed later). The following is a list of operators: .Bl -ohang -offset indent .It "Control operators:" .Dl & && \&( \&) \&; ;; ;& | || .It "Redirection operators:" .Dl < > >| << >> <& >& <<- <> .El .Ss Quoting Quoting is used to remove the special meaning of certain characters or words to the shell, such as operators, whitespace, or keywords. There are three types of quoting: matched single quotes, matched double quotes, and backslash. .Ss Backslash An unquoted backslash preserves the literal meaning of the following character, with the exception of .Aq newline . An unquoted backslash preceding a .Aq newline is treated as a line continuation, the two characters are simply removed. .Ss Single Quotes Enclosing characters in single quotes preserves the literal meaning of all the characters (except single quotes, making it impossible to put single quotes in a single-quoted string). .Ss Double Quotes Enclosing characters within double quotes preserves the literal meaning of all characters except dollar sign .Pq $ , backquote .Pq ` , and backslash .Pq \e . The backslash inside double quotes is historically weird, and serves to quote only the following characters (and these not in all contexts): .Dl $ ` \*q \e , where a backslash newline is a line continuation as above. Otherwise it remains literal. .Ss Reserved Words Reserved words are words that have special meaning to the shell and are recognized at the beginning of a line and after a control operator. The following are reserved words: .Bl -column while while while while -offset indent .It Ic \&! Ta Ic \&{ Ta Ic \&} Ta Ic case .It Ic do Ta Ic done Ta Ic elif Ta Ic else .It Ic esac Ta Ic fi Ta Ic for Ta Ic if .It Ic in Ta Ic then Ta Ic until Ta Ic while .El .Pp Their meanings are discussed later. .Ss Aliases An alias is a name and corresponding value set using the .Ic alias built-in command. Whenever a reserved word (see above) may occur, and after checking for reserved words, the shell checks the word to see if it matches an alias. If it does, it replaces it in the input stream with its value. For example, if there is an alias called .Dq lf with the value .Dq "ls -F" , then the input: .Pp .Dl lf foobar Aq return .Pp would become .Pp .Dl ls -F foobar Aq return .Pp Aliases provide a convenient way for naive users to create shorthands for commands without having to learn how to create functions with arguments. They can also be used to create lexically obscure code. This use is strongly discouraged. .Ss Commands The shell interprets the words it reads according to a language, the specification of which is outside the scope of this man page (refer to the BNF in the .Tn POSIX 1003.2 document). Essentially though, a line is read and if the first word of the line (or after a control operator) is not a reserved word, then the shell has recognized a simple command. Otherwise, a complex command or some other special construct may have been recognized. .Ss Simple Commands If a simple command has been recognized, the shell performs the following actions: .Bl -enum -offset indent .It Leading words of the form .Dq name=value are stripped off, the value is expanded, as described below, and the results are assigned to the environment of the simple command. Redirection operators and their arguments (as described below) are stripped off and saved for processing in step 3 below. .It The remaining words are expanded as described in the .Sx Word Expansions section below. The first remaining word is considered the command name and the command is located. Any remaining words are considered the arguments of the command. If no command name resulted, then the .Dq name=value variable assignments recognized in item 1 affect the current shell. .It Redirections are performed, from first to last, in the order given, as described in the next section. .El .Ss Redirections Redirections are used to change where a command reads its input or sends its output. In general, redirections open, close, or duplicate an existing reference to a file. The overall format used for redirection is: .Pp .Dl [n] Va redir-op Ar file .Pp where .Va redir-op is one of the redirection operators mentioned previously. The following is a list of the possible redirections. The .Bq n is an optional number, as in .Sq 3 (not .Sq Bq 3 ) , that refers to a file descriptor. If present it must occur immediately before the redirection operator, with no intervening white space, and becomes a part of that operator. .Bl -tag -width aaabsfiles -offset indent .It Oo Ar n Oc Ns > Ar file Redirect standard output (or n) to .Ar file . .It Oo Ar n Oc Ns >| file The same, but override the .Fl C option. .It Oo Ar n Oc Ns >> Ar file Append standard output (or n) to .Ar file . .It Oo Ar n Oc Ns < Ar file Redirect standard input (or .Ar n ) from .Ar file . .It Oo Ar n1 Oc Ns <& Ns Ar n2 Duplicate standard input (or .Ar n1 ) from file descriptor .Ar n2 . .Ar n2 is expanded if not a digit string, the result must be a number. .It Oo Ar n Oc Ns <&- Close standard input (or .Ar n ) . .It Oo Ar n1 Oc Ns >& Ns Ar n2 Duplicate standard output (or .Ar n1 ) to .Ar n2 . .It Oo Ar n Oc Ns >&- Close standard output (or n). .It Oo Ar n Oc Ns <> Ar file Open .Ar file for reading and writing on standard input (or .Ar n ) . .El .Pp The following redirection is often called a .Dq here-document . .Bl -item -offset indent .It .Li [n]<< delimiter .Dl here-doc-text ... .Li delimiter .El .Pp The .Dq here-doc-text starts immediately after the next unquoted newline character following the here-doc redirection operator. If there is more than one here-document redirection on the same line, then the text for the first (from left to right) is read first, and subsequent here-doc-text for later here-doc redirections follows immediately after, until all such redirections have been processed. .Pp All the text on successive lines up to the delimiter, which must appear on a line by itself, with nothing other than an immediately following newline, is saved away and made available to the command on standard input, or file descriptor n if it is specified. If the delimiter as specified on the initial line is quoted, then the here-doc-text is treated literally; otherwise, the text is treated much like a double quoted string, except that .Sq \&" characters have no special meaning, and are not escaped by .Sq \&\e , and is subjected to parameter expansion, command substitution, and arithmetic expansion as described in the .Sx Word Expansions section below. If the operator is .Dq <<\(mi instead of .Dq << , then leading tabs in all lines in the here-doc-text, including before the end delimiter, are stripped. If the delimiter is not quoted, lines in here-doc-text that end with an unquoted \e are joined to the following line, the \e and following newline are simply removed while reading the here-doc, which thus guarantees that neither of those lines can be the end delimiter. .Pp It is a syntax error for the end of the input file (or string) to be reached before the delimiter is encountered. .Ss Search and Execution There are three types of commands: shell functions, built-in commands, and normal programs -- and the command is searched for (by name) in that order. A command that contains a slash .Sq \&/ in its name is always a normal program. They each are executed in a different way. .Pp When a shell function is executed, all of the shell positional parameters (except $0, which remains unchanged) are set to the arguments of the shell function. The variables which are explicitly placed in the environment of the command (by placing assignments to them before the function name) are made local to the function and are set to the values given, and exported for the benefit of programs executed with the function. Then the command given in the function definition is executed. The positional parameters, and local variables, are restored to their original values when the command completes. This all occurs within the current shell, and the function can alter variables, or other settings, of the shell. .Pp Shell built-ins are executed internally to the shell, without spawning a new process. .Pp Otherwise, if the command name doesn't match a function or built-in, the command is searched for as a normal program in the file system (as described in the next section). When a normal program is executed, the shell runs the program, passing the arguments and the environment to the program. If the program is not a normal executable file, and if it does not begin with the "magic number" whose .Tn ASCII representation is "#!", so .Xr execve 2 returns .Er ENOEXEC then) the shell will interpret the program in a sub-shell. The child shell will reinitialize itself in this case, so that the effect will be as if a new shell had been invoked to handle the ad-hoc shell script, except that the location of hashed commands located in the parent shell will be remembered by the child. .Pp Note that previous versions of this document and the source code itself misleadingly and sporadically refer to a shell script without a magic number as a "shell procedure". .Ss Path Search When locating a command, the shell first looks to see if it has a shell function by that name. Then it looks for a built-in command by that name. If a built-in command is not found, one of two things happen: .Bl -enum .It Command names containing a slash are simply executed without performing any searches. .It Otherwise, the shell searches each entry in .Ev PATH in turn for the command. The value of the .Ev PATH variable should be a series of entries separated by colons. Each entry consists of a directory name. The current directory may be indicated implicitly by an empty directory name, or explicitly by a single period. If a directory searched contains an executable file with the same name as the command given, the search terminates, and that program is executed. .El .Ss Command Exit Status Each command has an exit status that can influence the behavior of other shell commands. The paradigm is that a command exits with zero in normal cases, or to indicate success, and non-zero for failure, error, or a false indication. The man page for each command should indicate the various exit codes and what they mean. Additionally, the built-in commands return exit codes, as does an executed shell function. .Pp If a command consists entirely of variable assignments then the exit status of the command is that of the last command substitution if any, otherwise 0. .Pp If redirections are present, and any fail to be correctly performed, any command present is not executed, and an exit status of 2 is returned. .Ss Complex Commands Complex commands are combinations of simple commands with control operators or reserved words, together creating a larger complex command. More generally, a command is one of the following: .Bl -bullet .It simple command .It pipeline .It list or compound-list .It compound command .It function definition .El .Pp Unless otherwise stated, the exit status of a command is that of the last simple command executed by the command. .Ss Pipelines A pipeline is a sequence of one or more commands separated by the control operator .Sq \&| , and optionally preceded by the .Dq \&! reserved word. The standard output of all but the last command is connected to the standard input of the next command. The standard output of the last command is inherited from the shell, as usual. .Pp The format for a pipeline is: .Pp .Dl [!] command1 [ | command2 ...] .Pp The standard output of command1 is connected to the standard input of command2. The standard input, standard output, or both of a command is considered to be assigned by the pipeline before any redirection specified by redirection operators that are part of the command are performed. .Pp If the pipeline is not in the background (discussed later), the shell waits for all commands to complete. .Pp If the reserved word ! does not precede the pipeline, the exit status is the exit status of the last command specified in the pipeline. Otherwise, the exit status is the logical NOT of the exit status of the last command. That is, if the last command returns zero, the exit status is 1; if the last command returns greater than zero, the exit status is zero. .Pp Because pipeline assignment of standard input or standard output or both takes place before redirection, it can be modified by redirection. For example: .Pp .Dl $ command1 2>&1 | command2 .Pp sends both the standard output and standard error of command1 to the standard input of command2. .Pp A ; or .Aq newline terminator causes the preceding AND-OR-list (described next) to be executed sequentially; a & causes asynchronous execution of the preceding AND-OR-list. The exit status of an asynchronous AND-OR-list is zero. The actual status of the commands, after they have completed, can be obtained using the .Ic wait built-in command described later. .Pp Note that unlike some other shells, each process in the pipeline is a child of the invoking shell (unless it is a shell built-in, in which case it executes in the current shell -- but any effect it has on the environment is wiped). .Ss Background Commands -- & If a command is terminated by the control operator ampersand (&), the shell executes the command asynchronously -- that is, the shell does not wait for the command to finish before executing the next command. .Pp The format for running a command in background is: .Pp .Dl command1 & [command2 & ...] .Pp If the shell is not interactive, the standard input of an asynchronous command is set to .Pa /dev/null . The process identifier of the most recent command started in the background can be obtained from the value of the special parameter .Dq \&! (see .Sx Special Parameters ) . .Ss Lists -- Generally Speaking A list is a sequence of one or more commands separated by newlines, semicolons, or ampersands, and optionally terminated by one of these three characters. The commands in a list are executed in the order they are written. If command is followed by an ampersand, the shell starts the command and immediately proceeds to the next command; otherwise it waits for the command to terminate before proceeding to the next one. A newline is equivalent to a .Sq \&; when no other operator is present, and the command being input could syntactically correctly be terminated at the point where the newline is encountered, otherwise it is just whitespace. .Ss Short-Circuit List Operators .Dq && and .Dq || are AND-OR list operators. .Dq && executes the first command, and then executes the second command if and only if the exit status of the first command is zero. .Dq || is similar, but executes the second command if and only if the exit status of the first command is nonzero. .Dq && and .Dq || both have the same priority. Note that these operators are left-associative, so .Dq true || echo bar && echo baz writes .Dq baz and nothing else. This is not the way it works in C. .Ss Flow-Control Constructs -- if, while, for, case The syntax of the .Ic if command is .Bd -literal -offset indent if list then list [ elif list then list ] ... [ else list ] fi .Ed The first list is executed, and if the exit status of that list is zero, the list following the .Ic then is executed. Otherwise the list after an .Ic elif (if any) is executed and the process repeats. When no more .Ic elif reserved words, and accompanying lists, appear, the list after the .Ic else reserved word, if any, is executed. .Pp The syntax of the .Ic while command is .Bd -literal -offset indent while list do list done .Ed .Pp The two lists are executed repeatedly while the exit status of the first list is zero. The .Ic until command is similar, but has the word .Ic until in place of .Ic while , which causes it to repeat until the exit status of the first list is zero. .Pp The syntax of the .Ic for command is .Bd -literal -offset indent for variable [ in word ... ] do list done .Ed .Pp The words are expanded, or "$@" if no words are given, and then the list is executed repeatedly with the variable set to each word in turn. .Ic do and .Ic done may be replaced with .Sq Ic \&{ and .Sq Ic \&} , but doing so is non-standard and not recommended. .Pp The syntax of the .Ic break and .Ic continue commands is .Bd -literal -offset indent break [ num ] continue [ num ] .Ed .Pp .Ic break terminates the .Ar num innermost .Ic for , while , or .Ic until loops. .Ic continue breaks execution of the .Ar num\-1 innermost .Ic for , while , or .Ic until loops, and then continues with the next iteration of the enclosing loop. These are implemented as built-in commands. The parameter .Ar num , if given, must be an unsigned positive integer (greater than zero). If not given, 1 is used. .Pp The syntax of the .Ic case command is .Bd -literal -offset indent case word in [(] pattern ) list ;& [(] pattern ) list ;; \&... esac .Ed .Pp The pattern can actually be one or more patterns (see .Sx Shell Patterns described later), separated by .Dq \*(Ba characters. .Pp Word is expanded and matched against each pattern in turn, from first to last, with each pattern being expanded just before the match is attempted. When a match is found, pattern comparisons cease, and the associated .Dq list (which may be empty) is evaluated. If the list is terminated with .Dq \&;& execution then falls through to the following list, if any, without evaluating its pattern, or attempting a match. When a list terminated with .Dq \&;; has been executed, or when .Ic esac is reached execution of the .Ic case statement is complete. The exit status is that of the last command executed from the last list evaluated, if any, or zero otherwise. .Ss Grouping Commands Together Commands may be grouped by writing either .Pp .Dl (list) .Pp or .Pp .Dl { list; } .Pp Note that while parentheses are operators, and do not require any extra syntax, braces are reserved words, so the opening brace must be followed by white space (or some other operator), and the closing brace must occur in a position where a new command word might otherwise appear. .Pp The first of these executes the commands in a sub-shell. Built-in commands grouped into a (list) will not affect the current shell. The second form does not fork another shell so is slightly more efficient, and allows for commands which do affect the current shell. Grouping commands together this way allows you to redirect their output as though they were one program: .Bd -literal -offset indent { echo -n \*qhello \*q ; echo \*qworld\*q ; } > greeting .Ed .Pp Note that .Dq } must follow a control operator (here, .Dq \&; ) so that it is recognized as a reserved word and not as another command argument. .Ss Functions The syntax of a function definition is .Pp .Dl name ( ) command [ redirect... ] .Pp A function definition is an executable statement; when executed it installs a function named name and returns an exit status of zero. The command is normally a list enclosed between .Dq { and .Dq } . The standard syntax also allows the command to be any of the other compound commands, including a sub-shell, all of which are supported. As an extension, this shell also allows a simple command (or even another function definition) to be used, though users should be aware this is non-standard syntax. This means that .Dl l() ls "$@" works to make .Dq l an alternative name for the .Ic ls command. .Pp If the optional redirect, (see .Sx Redirections ) , which may be of any of the normal forms, is given, it is applied each time the function is called. This means that a simple .Dq Hello World function might be written (in the extended syntax) as: .Dl hello() cat < 0). The shell sets these initially to the values of its command line arguments that follow the name of the shell script. The .Ic set built-in can also be used to set or reset them, and .Ic shift can be used to manipulate the list. .Pp To refer to the 10th (and later) positional parameters, the form ${n} must be used. Without the braces, a digit following .Dq $ can only refer to one of the first 9 positional parameters, or the special parameter .Dq 0 . The word .Dq $10 is treated identically to .Dq ${1}0 . .Ss Special Parameters A special parameter is a parameter denoted by one of the following special characters. The value of the parameter is listed next to its character. .Bl -tag -width thinhyphena .It * Expands to the positional parameters, starting from one. When the expansion occurs within a double-quoted string it expands to a single field with the value of each parameter separated by the first character of the .Ev IFS variable, or by a .Aq space if .Ev IFS is unset. .It @ Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, each positional parameter expands as a separate argument. If there are no positional parameters, the expansion of @ generates zero arguments, even when @ is double-quoted. What this basically means, for example, is if $1 is .Dq abc and $2 is .Dq def ghi , then .Qq $@ expands to the two arguments: .Pp .Sm off .Dl \*q abc \*q \ \*q def\ ghi \*q .Sm on .It # Expands to the number of positional parameters. .It \&? Expands to the exit status of the most recent pipeline. .It \- (Hyphen, or minus.) Expands to the current option flags (the single-letter option names concatenated into a string) as specified on invocation, by the set built-in command, or implicitly by the shell. .It $ Expands to the process ID of the invoked shell. A sub-shell retains the same value of $ as its parent. .It \&! Expands to the process ID of the most recent background command executed from the current shell. For a pipeline, the process ID is that of the last command in the pipeline. If no background commands have yet been started by the shell, then .Dq \&! will be unset. Once set, the value of .Dq \&! will be retained until another background command is started. .It 0 (Zero.) Expands to the name of the shell or shell script. .El .Ss Word Expansions This section describes the various expansions that are performed on words. Not all expansions are performed on every word, as explained later. .Pp Tilde expansions, parameter expansions, command substitutions, arithmetic expansions, and quote removals that occur within a single word expand to a single field. It is only field splitting or pathname expansion that can create multiple fields from a single word. The single exception to this rule is the expansion of the special parameter @ within double quotes, as was described above. .Pp The order of word expansion is: .Bl -enum .It Tilde Expansion, Parameter Expansion, Command Substitution, Arithmetic Expansion (these all occur at the same time). .It Field Splitting is performed on fields generated by step (1) unless the .Ev IFS variable is null. .It Pathname Expansion (unless set .Fl f is in effect). .It Quote Removal. .El .Pp The $ character is used to introduce parameter expansion, command substitution, or arithmetic evaluation. .Ss Tilde Expansion (substituting a user's home directory) A word beginning with an unquoted tilde character (~) is subjected to tilde expansion. Provided all of the subsequent characters in the word are unquoted up to an unquoted slash (/) or when in an assignment or not in posix mode, an unquoted colon (:), or if neither of those appear, the end of the word, they are treated as a user name and are replaced with the pathname of the named user's home directory. If the user name is missing (as in .Pa ~/foobar ) , the tilde is replaced with the value of the .Va HOME variable (the current user's home directory). .Pp In variable assignments, an unquoted tilde immediately after the assignment operator (=), and each unquoted tilde immediately after an unquoted colon in the value to be assigned is also subject to tilde expansion as just stated. .Ss Parameter Expansion The format for parameter expansion is as follows: .Pp .Dl ${expression} .Pp where expression consists of all characters until the matching .Dq } . Any .Dq } escaped by a backslash or within a quoted string, and characters in embedded arithmetic expansions, command substitutions, and variable expansions, are not examined in determining the matching .Dq } . .Pp The simplest form for parameter expansion is: .Pp .Dl ${parameter} .Pp The value, if any, of parameter is substituted. .Pp The parameter name or symbol can be enclosed in braces, which are optional in this simple case, except for positional parameters with more than one digit or when parameter is followed by a character that could be interpreted as part of the name. If a parameter expansion occurs inside double quotes: .Bl -enum .It Pathname expansion is not performed on the results of the expansion. .It Field splitting is not performed on the results of the expansion, with the exception of the special rules for @. .El .Pp In addition, a parameter expansion where braces are used, can be modified by using one of the following formats. If the .Dq Dv \&: is omitted in the following modifiers, then the test in the expansion applies only to unset parameters, not null ones. .Bl -tag -width aaparameterwordaaaaa .It ${parameter:\(miword} Use Default Values. If parameter is unset or null, the expansion of word is substituted; otherwise, the value of parameter is substituted. .It ${parameter:=word} Assign Default Values. If parameter is unset or null, the expansion of word is assigned to parameter. In all cases, the final value of parameter is substituted. Only variables, not positional parameters or special parameters, can be assigned in this way. .It ${parameter:?[word]} Indicate Error if Null or Unset. If parameter is unset or null, the expansion of word (or a message indicating it is unset if word is omitted) is written to standard error and a non-interactive shell exits with a nonzero exit status. An interactive shell will not exit, but any associated command(s) will not be executed. If the parameter is set, its value is substituted. .It ${parameter:+word} Use Alternative Value. If parameter is unset or null, null is substituted; otherwise, the expansion of word is substituted. The value of parameter is not used in this expansion. .It ${#parameter} String Length. The length in characters of the value of parameter. .El .Pp The following four varieties of parameter expansion provide for substring processing. In each case, pattern matching notation (see .Sx Shell Patterns ) , rather than regular expression notation, is used to evaluate the patterns. If parameter is * or @, the result of the expansion is unspecified. Enclosing the full parameter expansion string in double quotes does not cause the following four varieties of pattern characters to be quoted, whereas quoting characters within the braces has this effect. .Bl -tag -width aaparameterwordaaaaa .It ${parameter%word} Remove Smallest Suffix Pattern. The word is expanded to produce a pattern. The parameter expansion then results in parameter, with the smallest portion of the suffix matched by the pattern deleted. If the word is to start with a .Sq \&% character, it must be quoted. .It ${parameter%%word} Remove Largest Suffix Pattern. The word is expanded to produce a pattern. The parameter expansion then results in parameter, with the largest portion of the suffix matched by the pattern deleted. The .Dq %% pattern operator only produces different results from the .Dq \&% operator when the pattern contains at least one unquoted .Sq \&* . .It ${parameter#word} Remove Smallest Prefix Pattern. The word is expanded to produce a pattern. The parameter expansion then results in parameter, with the smallest portion of the prefix matched by the pattern deleted. If the word is to start with a .Sq \&# character, it must be quoted. .It ${parameter##word} Remove Largest Prefix Pattern. The word is expanded to produce a pattern. The parameter expansion then results in parameter, with the largest portion of the prefix matched by the pattern deleted. This has the same relationship with the .Sq \&# pattern operator as .Dq %% has with .Dq \&% . .El .Ss Command Substitution Command substitution allows the output of a command to be substituted in place of the command (and surrounding syntax). Command substitution occurs when the command is enclosed as follows: .Pp .Dl $(command) .Pp or .Po .Dq backquoted version .Pc : .Pp .Dl `command` .Pp The shell expands the command substitution by executing command in a sub-shell environment and replacing the command substitution with the standard output of the command, removing sequences of one or more .Ao newline Ac Ns s at the end of the substitution. (Embedded .Ao newline Ac Ns s before the end of the output are not removed; however, during field splitting, they may be translated into .Ao space Ac Ns s , depending on the value of .Ev IFS and any quoting that is in effect.) .Ss Arithmetic Expansion Arithmetic expansion provides a mechanism for evaluating an arithmetic expression and substituting its value. The format for arithmetic expansion is as follows: .Pp .Dl $((expression)) .Pp The expression in an arithmetic expansion is treated as if it were in double quotes, except that a double quote character inside the expression is just a normal character (it quotes nothing.) The shell expands all tokens in the expression for parameter expansion, command substitution, and quote removal (the only quoting character is the backslash .Sq \&\e , and only when followed by another .Sq \&\e , a dollar sign .Sq \&$ , a backquote .Sq \&` or a newline.) .Pp Next, the shell evaluates the expanded result as an arithmetic expression and substitutes the calculated value of that expression. .Pp Arithmetic expressions use a syntax similar to that of the C language, and are evaluated using the .Ql intmax_t data type (this is an extension to .Tn POSIX , which requires only .Ql long arithmetic.) Shell variables may be referenced by name inside an arithmetic expression, without needing a .Dq \&$ sign. Variables that are not set, or which have an empty (null string) value, used this way evaluate as zero (that is, .Dq x in arithmetic, as an R-Value, is evaluated as .Dq ${x:-0} ) unless the .Nm .Fl u flag is set, in which case a reference to an unset variable is an error. Note that unset variables used in the ${var} form expand to a null string, which might result in syntax errors. Referencing the value of a variable which is not numeric is an error. .Pp All of the C expression operators applicable to integers are supported, and operate as they would in a C expression, except the unary .Dq ++ and .Dq -- operators (in both prefix and postfix forms) and the .Dq \&, (comma) operator, which are currently not supported. .Pp It should not be necessary to state that the C operators which operate on, or produce, pointer types, are not supported. Those include unary .Dq \&* and .Dq \&& and the struct and array referencing binary operators: .Dq \&. , .Dq \&-> and .Dq \&[ . .Ss White Space Splitting (Field Splitting) After parameter expansion, command substitution, and arithmetic expansion the shell scans the results of expansions and substitutions that did not occur in double quotes, and .Dq $@ even if it did, for field splitting and multiple fields can result. .Pp The shell treats each character of the .Ev IFS as a delimiter and uses the delimiters to split the results of parameter expansion and command substitution into fields. .Pp Non-whitespace characters in .Ev IFS are treated strictly as parameter separators. So adjacent non-whitespace .Ev IFS characters will produce empty parameters. On the other hand, any sequence of whitespace characters that occur in .Ev IFS (known as .Ev IFS whitespace) can occur, leading and trailing .Ev IFS whitespace, and any .Ev IFS whitespace surrounding a non whitespace .Ev IFS delimiter, is removed. Any sequence of .Ev IFS whitespace characters without a non-whitespace .Ev IFS delimiter acts as a single field separator. .Pp If .Ev IFS is unset it is assumed to contain space, tab, and newline, all of which are .Ev IFS whitespace characters. If .Ev IFS is set to a null string, there are no delimiters, and no field splitting occurs. .Ss Pathname Expansion (File Name Generation) Unless the .Fl f flag is set, file name generation is performed after word splitting is complete. Each word is viewed as a series of patterns, separated by slashes. The process of expansion replaces the word with the names of all existing files whose names can be formed by replacing each pattern with a string that matches the specified pattern. There are two restrictions on this: first, a pattern cannot match a string containing a slash, and second, a pattern cannot match a string starting with a period unless the first character of the pattern is a period. The next section describes the patterns used for both Pathname Expansion and the .Ic case command. .Ss Shell Patterns A pattern consists of normal characters, which match themselves, and meta-characters. The meta-characters are .Dq \&! , .Dq * , .Dq \&? , and .Dq \&[ . These characters lose their special meanings if they are quoted. When command or variable substitution is performed and the dollar sign or backquotes are not double-quoted, the value of the variable or the output of the command is scanned for these characters and they are turned into meta-characters. .Pp An asterisk .Pq Dq * matches any string of characters. A question mark .Pq Dq \&? matches any single character. A left bracket .Pq Dq \&[ introduces a character class. The end of the character class is indicated by a right bracket .Pq Dq \&] ; if this .Dq \&] is missing then the .Dq \&[ matches a .Dq \&[ rather than introducing a character class. A character class matches any of the characters between the square brackets. A named class of characters (see .Xr wctype 3 ) may be specified by surrounding the name with .Pq Dq [: and .Pq Dq :] . For example, .Pq Dq [[:alpha:]] is a shell pattern that matches a single letter. A range of characters may be specified using a minus sign .Pq Dq \(mi . The character class may be complemented by making an exclamation mark .Pq Dq \&! the first character of the character class. .Pp To include a .Dq \&] in a character class, make it the first character listed (after the .Dq \&! , if any). To include a .Dq \(mi , make it the first (after !) or last character listed. If both .Dq \&] and .Dq \(mi are to be included, the .Dq \&] must be first (after !) and the .Dq \(mi last, in the character class. .Ss Built-ins This section lists the built-in commands which are built-in because they need to perform some operation that can't be performed by a separate process. Or just because they traditionally are. In addition to these, there are several other commands that may be built in for efficiency (e.g. .Xr printf 1 , .Xr echo 1 , .Xr test 1 , etc). .Bl -tag -width 5n .It : [ Ar arg ... ] A null command that returns a 0 (true) exit value. Any arguments or redirects are evaluated, then ignored. .It \&. file The dot command reads and executes the commands from the specified .Ar file in the current shell environment. The file does not need to be executable and is looked up from the directories listed in the .Ev PATH variable if its name does not contain a directory separator .Pq Sq / . The return command (see .Sx Built-ins below) can be used for a premature return from the sourced file. .Pp The POSIX standard has been unclear on how loop control keywords (break and continue) behave across a dot command boundary. This implementation allows them to control loops surrounding the dot command, but obviously such behavior should not be relied on. It is now permitted by the standard, but not required. .It alias Op Ar name Ns Op Ar "=string ..." If .Ar name=string is specified, the shell defines the alias .Ar name with value .Ar string . If just .Ar name is specified, the value of the alias .Ar name is printed. With no arguments, the .Ic alias built-in prints the names and values of all defined aliases (see .Ic unalias ) . .It bg [ Ar job ] ... Continue the specified jobs (or the current job if no jobs are given) in the background. .It command Oo Fl p Oc Oo Fl v Oc Oo Fl V Oc Ar command Oo Ar arg ... Oc Execute the specified command but ignore shell functions when searching for it. (This is useful when you have a shell function with the same name as a command.) .Bl -tag -width 5n .It Fl p search for command using a .Ev PATH that guarantees to find all the standard utilities. .It Fl V Do not execute the command but search for the command and print the resolution of the command search. This is the same as the .Ic type built-in. .It Fl v Do not execute the command but search for the command and print the absolute pathname of utilities, the name for built-ins or the expansion of aliases. .El .It cd Oo Fl P Oc Op Ar directory Op Ar replace Switch to the specified directory (default .Ev $HOME ) . If .Ar replace is specified, then the new directory name is generated by replacing the first occurrence of the string .Ar directory in the current directory name with .Ar replace . Otherwise if .Ar directory is .Sq - , then the current working directory is changed to the previous current working directory as set in .Ev OLDPWD . Otherwise if an entry for .Ev CDPATH appears in the environment of the .Ic cd command or the shell variable .Ev CDPATH is set and the directory name does not begin with a slash, and its first (or only) component isn't dot or dot dot, then the directories listed in .Ev CDPATH will be searched for the specified directory. The format of .Ev CDPATH is the same as that of .Ev PATH . .Pp The .Fl P option instructs the shell to update .Ev PWD with the specified physical directory path and change to that directory. This is the default. .Pp When the directory changes, the variable .Ev OLDPWD is set to the working directory before the change. .Pp Some shells also support a .Fl L option, which instructs the shell to update .Ev PWD with the logical path and to change the current directory accordingly. This is not supported. .Pp In an interactive shell, the .Ic cd command will print out the name of the directory that it actually switched to if this is different from the name that the user gave, or always if the .Ic cdprint option is set. The destination may be different either because the .Ev CDPATH mechanism was used .\" or because a symbolic link was crossed. or if the .Ar replace argument was used. .It eval Ar string ... Concatenate all the arguments with spaces. Then re-parse and execute the command. .It exec Op Ar command arg ... Unless command is omitted, the shell process is replaced with the specified program (which must be a real program, not a shell built-in or function). Any redirections on the .Ic exec command are marked as permanent, so that they are not undone when the .Ic exec command finishes. When the .Ic posix option is not set, file descriptors created via such redirections are marked close-on-exec (see .Xr open 2 .Dv O_CLOEXEC or .Xr fcntl 2 .Dv F_SETFD / .Dv FD_CLOEXEC ) , unless the descriptors they point to refer to the standard input, output, or error (file descriptors 0, 1, 2). Traditionally Bourne-like shells (except .Xr ksh 1 ) , made those file descriptors available to exec'ed processes. This behavior is required by the .Tn POSIX standard, so when the .Ic posix option is set, this shell also acts that way. To be assured the close-on-exec setting is off, redirect the descriptor to (or from) itself, either when invoking a command for which the descriptor is wanted open, or by using .Ic exec (perhaps the same .Ic exec as opened it, after the open) to leave the descriptor open in the shell and pass it to all commands invoked subsequently. Alternatively, see the .Ic fdflags command below, which can set, or clear, this, and other, file descriptor flags. .It exit Op Ar exitstatus Terminate the shell process. If .Ar exitstatus is given it is used as the exit status of the shell; otherwise the exit status of the preceding command (the current value of $?) is used. .It export Oo Fl npx Oc Ar name ... .It export Fl p Oo Fl x Oc With no options, but one or more names, the specified names are exported so that they will appear in the environment of subsequent commands. With .Fl n the specified names are un-exported. Variables can also be un-exported using the unset built in command. With .Fl x (exclude) the specified names are marked not to be exported, and any that had been exported, will be un-exported. Later attempts to export the variable will be refused. Note this does not prevent explicitly exporting a variable to a single command, script or function by preceding that command invocation by a variable assignment to that variable, provided the variable is not also readonly. That is .Dl export -x FOO ; # FOO will now not be exported by default .Dl FOO=some_value my_command still passes the value (FOO=some_value) to .Ic my_command through the environment. .Pp The shell allows the value of a variable to be set at the same time it is exported by writing .Pp .Dl export name=value .Pp With no arguments the export command lists the names of all exported variables, or if .Fl x was given, all variables marked not for export. With the .Fl p option specified the output will be formatted suitably for non-interactive use. .Pp The .Ic export built-in exits with status 0, unless an invalid option, or option combination, is given, or unless an attempt is made to export a variable which has been marked as unavailable for export, in which cases it exits with status 1. .Pp Note that there is no restriction upon exporting, or un-exporting, readonly variables. The no-export flag can be reset by unsetting the variable and creating it again \(en provided it is not also readonly. .It fc Oo Fl e Ar editor Oc Oo Ar first Oo Ar last Oc Oc .It fc Fl l Oo Fl nr Oc Oo Ar first Oo Ar last Oc Oc .It fc Fl s Oo Ar old=new Oc Oo Ar first Oc The .Ic fc built-in lists, or edits and re-executes, commands previously entered to an interactive shell. .Bl -tag -width 5n .It Fl e No editor Use the editor named by editor to edit the commands. The editor string is a command name, subject to search via the .Ev PATH variable. The value in the .Ev FCEDIT variable is used as a default when .Fl e is not specified. If .Ev FCEDIT is null or unset, the value of the .Ev EDITOR variable is used. If .Ev EDITOR is null or unset, .Xr ed 1 is used as the editor. .It Fl l No (ell) List the commands rather than invoking an editor on them. The commands are written in the sequence indicated by the first and last operands, as affected by .Fl r , with each command preceded by the command number. .It Fl n Suppress command numbers when listing with -l. .It Fl r Reverse the order of the commands listed (with .Fl l ) or edited (with neither .Fl l nor .Fl s ) . .It Fl s Re-execute the command without invoking an editor. .It first .It last Select the commands to list or edit. The number of previous commands that can be accessed are determined by the value of the .Ev HISTSIZE variable. The value of first or last or both are one of the following: .Bl -tag -width 5n .It Oo Cm + Oc Ns Ar number A positive number representing a command number; command numbers can be displayed with the .Fl l option. .It Cm \- Ns Ar number A negative decimal number representing the command that was executed number of commands previously. For example, \-1 is the immediately previous command. .El .It string A string indicating the most recently entered command that begins with that string. If the old=new operand is not also specified with .Fl s , the string form of the first operand cannot contain an embedded equal sign. .El .Pp The following environment variables affect the execution of fc: .Bl -tag -width HISTSIZE .It Ev FCEDIT Name of the editor to use. .It Ev HISTSIZE The number of previous commands that are accessible. .El .It fg Op Ar job Move the specified job or the current job to the foreground. A foreground job can interact with the user via standard input, and receive signals from the terminal. .It fdflags Oo Fl v Oc Oo fd ... Oc .It fdflags Oo Fl v Oc Fl s Ar flags fd Oo ... Oc Get or set file descriptor flags. The .Fl v argument enables verbose printing, printing flags that are also off, and the flags of the file descriptor being set after setting. The .Fl s flag interprets the .Ar flags argument as a comma separated list of file descriptor flags, each preceded with a .Dq \(pl or a .Dq \(mi indicating to set or clear the respective flag. Valid flags are: .Cm append , .Cm async , .Cm sync , .Cm nonblock , .Cm fsync , .Cm dsync , .Cm rsync , .Cm direct , .Cm nosigpipe , and .Cm cloexec . Unique abbreviations of these names, of at least 2 characters, may be used on input. See .Xr fcntl 2 and .Xr open 2 for more information. .It getopts Ar optstring var The .Tn POSIX .Ic getopts command, not to be confused with the .Em Bell Labs -derived .Xr getopt 1 . .Pp The first argument should be a series of letters, each of which may be optionally followed by a colon to indicate that the option requires an argument. The variable specified is set to the parsed option. .Pp The .Ic getopts command deprecates the older .Xr getopt 1 utility due to its handling of arguments containing whitespace. .Pp The .Ic getopts built-in may be used to obtain options and their arguments from a list of parameters. When invoked, .Ic getopts places the value of the next option from the option string in the list in the shell variable specified by .Va var and its index in the shell variable .Ev OPTIND . When the shell is invoked, .Ev OPTIND is initialized to 1. For each option that requires an argument, the .Ic getopts built-in will place it in the shell variable .Ev OPTARG . If an option is not allowed for in the .Va optstring , then .Ev OPTARG will be unset. .Pp .Va optstring is a string of recognized option letters (see .Xr getopt 3 ) . If a letter is followed by a colon, the option is expected to have an argument which may or may not be separated from it by whitespace. If an option character is not found where expected, .Ic getopts will set the variable .Va var to a .Dq \&? ; .Ic getopts will then unset .Ev OPTARG and write output to standard error. By specifying a colon as the first character of .Va optstring all errors will be ignored. .Pp A nonzero value is returned when the last option is reached. If there are no remaining arguments, .Ic getopts will set .Va var to the special option, .Dq -- , otherwise, it will set .Va var to .Dq \&? . .Pp The following code fragment shows how one might process the arguments for a command that can take the options .Op a and .Op b , and the option .Op c , which requires an argument. .Bd -literal -offset indent while getopts abc: f do case $f in a | b) flag=$f;; c) carg=$OPTARG;; \e?) echo $USAGE; exit 1;; esac done shift $((OPTIND - 1)) .Ed .Pp This code will accept any of the following as equivalent: .Bd -literal -offset indent cmd \-acarg file file cmd \-a \-c arg file file cmd \-carg -a file file cmd \-a \-carg \-\- file file .Ed .It hash Fl rv Ar command ... The shell maintains a hash table which remembers the locations of commands. With no arguments whatsoever, the .Ic hash command prints out the contents of this table. Entries which have not been looked at since the last .Ic cd command are marked with an asterisk; it is possible for these entries to be invalid. .Pp With arguments, the .Ic hash command removes the specified commands from the hash table (unless they are functions) and then locates them. With the .Fl v option, hash prints the locations of the commands as it finds them. The .Fl r option causes the hash command to delete all the entries in the hash table except for functions. .It inputrc Ar file Read the .Va file to set key bindings as defined by .Xr editrc 5 . .It jobid Op Ar job Print the process id's of the processes in the job. If the .Ar job argument is omitted, the current job is used. .It jobs This command lists out all the background processes which are children of the current shell process. .It local Oo Fl INx Oc Oo Ar variable | \- Oc ... Define local variables for a function. Local variables have their attributes, and values, as they were before the .Ic local declaration, restored when the function terminates. .Pp With the .Fl N flag, variables made local, are unset initially inside the function. Unless the .Fl x flag is also given, such variables are also unexported. The .Fl I flag, which is the default in this shell, causes the initial value and exported attribute of local variables to be inherited from the variable with the same name in the surrounding scope, if there is one. If there is not, the variable is initially unset, and not exported. The .Fl N and .Fl I flags are mutually exclusive, if both are given, the last specified applies. The read-only and unexportable attributes are always inherited, if a variable with the same name already exists. .Pp The .Fl x flag (lower case) causes the local variable to be exported, while the function runs, unless it has the unexportable attribute. This can also be accomplished by using the .Ic export command, giving the same .Ar variable names, after the .Ic local command. .Pp Making an existing read-only variable local is possible, but pointless. If an attempt is made to assign an initial value to such a variable, the .Ic local command fails, as does any later attempted assignment. If the .Ic readonly command is applied to a variable that has been declared local, the variable cannot be (further) modified within the function, or any other functions it calls, however when the function returns, the previous status (and value) of the variable is returned. .Pp Values may be given to local variables on the .Ic local command line in a similar fashion as used for .Ic export and .Ic readonly . These values are assigned immediately after the initialization described above. Note that any variable references on the command line will have been expanded before .Ic local is executed, so expressions like .Dl "local -N X=${X}" are well defined, first $X is expanded, and then the command run is .Dl "local -N X=old-value-of-X" After arranging to preserve the old value and attributes, of X .Dq ( old-value-of X ) .Ic local unsets .Ev X , unexports it, and then assigns the .Dq old-value-of-X to .Ev X . .Pp The shell uses dynamic scoping, so that if you make the variable x local to function f, which then calls function g, references to the variable x made inside g will refer to the variable x declared inside f, not to the global variable named x. .Pp Another way to view this, is as if the shell just has one flat, global, namespace, in which all variables exist. The .Ic local command conceptually copies the variable(s) named to unnamed temporary variables, and when the function ends, copies them back again. All references to the variables reference the same global variables, but while the function is active, after the .Ic local command has run, the values and attributes of the variables might be altered, and later, when the function completes, be restored. .Pp Note that the parameters $1, $2, ... (see .Sx Positional Parameters ) , and $#, $* and $@ (see .Sx Special Parameters ) , are always made local in all functions, and are reset inside the function to represent the options and arguments passed to the function. Note that $0 however retains the value it had outside the function, as do all the other special parameters. .Pp The only other special parameter that can be made local is .Dq \- . Making .Dq \- local causes any shell options that are changed via the set command inside the function to be restored to their original values when the function returns. If any of the shell's magic variables (those which return a value which may vary without the variable being explicitly altered, e.g.: .Dv SECONDS or .Dv HOSTNAME ) are made local in a function, they will lose their special properties when set within the function, including by the .Ic local command itself (if not to be set in the function, there is little point in making a variable local) but those properties will be restored when the function returns. .Pp It is an error to use .Ic local outside the scope of a function definition. When used inside a function, it exits with status 0, unless an undefined option is used, or at attempt is made to assign a value to a read-only variable. .Pp Note that either .Fl I or .Fl N should always be used, or variables made local should always be given a value, or explicitly unset, as the default behavior (inheriting the earlier value, or starting unset after .Ic local ) differs amongst shell implementations. Using .Dq local \&\- is an extension not implemented by most shells. .Pp See the section .Sx LINENO below for details of the effects of making the variable .Ev LINENO local. .It pwd Op Fl \&LP Print the current directory. If .Fl L is specified the cached value (initially set from .Ev PWD ) is checked to see if it refers to the current directory; if it does the value is printed. Otherwise the current directory name is found using .Xr getcwd 3 . The environment variable .Ev PWD is set to the printed value. .Pp The default is .Ic pwd .Fl L , but note that the built-in .Ic cd command doesn't support the .Fl L option and will cache (almost) the absolute path. If .Ic cd is changed (as unlikely as that is), .Ic pwd may be changed to default to .Ic pwd .Fl P . .Pp If the current directory is renamed and replaced by a symlink to the same directory, or the initial .Ev PWD value followed a symbolic link, then the cached value may not be the absolute path. .Pp The built-in command may differ from the program of the same name because the program will use .Ev PWD and the built-in uses a separately cached value. .It read Oo Fl p Ar prompt Oc Oo Fl r Oc Ar variable Oo Ar ... Oc The prompt is printed if the .Fl p option is specified and the standard input is a terminal. Then a line is read from the standard input. The trailing newline is deleted from the line and the line is split as described in the field splitting section of the .Sx Word Expansions section above, and the pieces are assigned to the variables in order. If there are more pieces than variables, the remaining pieces (along with the characters in .Ev IFS that separated them) are assigned to the last variable. If there are more variables than pieces, the remaining variables are assigned the null string. The .Ic read built-in will indicate success unless EOF is encountered on input, in which case failure is returned. .Pp By default, unless the .Fl r option is specified, the backslash .Dq \e acts as an escape character, causing the following character to be treated literally. If a backslash is followed by a newline, the backslash and the newline will be deleted. .It readonly Ar name ... .It readonly Oo Fl p Oc The specified names are marked as read only, so that they cannot be subsequently modified or unset. The shell allows the value of a variable to be set at the same time it is marked read only by writing .Pp .Dl readonly name=value .Pp With no arguments the readonly command lists the names of all read only variables. With the .Fl p option specified the output will be formatted suitably for non-interactive use. .It return Op Ar n Stop executing the current function or a dot command with return value of .Ar n or the value of the last executed command, if not specified. For portability, .Ar n should be in the range from 0 to 255. .Pp The POSIX standard says that the results of .Sq return outside a function or a dot command are unspecified. This implementation treats such a return as a no-op with a return value of 0 (success, true). Use the exit command instead, if you want to return from a script or exit your shell. .It set Oo { Fl options | Cm +options | Cm \-- } Oc Ar arg ... The .Ic set command performs four different functions. .Pp With no arguments, it lists the values of all shell variables. .Pp With a single option of either .Sq Fl o or .Sq Cm +o .Ic set outputs the current values of the options. In the .Fl o form, all options are listed, with their current values. In the .Cm +o form, the shell outputs a string that can later be used as a command to reset all options to their current values. .Pp If options are given, it sets the specified option flags, or clears them as described in the .Sx Argument List Processing section. In addition to the options listed there, when the .Dq "option name" given to .Ic set Fl o is .Cm default all of the options are reset to the values they had immediately after .Nm initialization, before any startup scripts, or other input, had been processed. While this may be of use to users or scripts, its primary purpose is for use in the output of .Dq Ic set Cm +o , to avoid that command needing to list every available option. There is no .Cm +o default . .Pp The fourth use of the set command is to set the values of the shell's positional parameters to the specified arguments. To change the positional parameters without changing any options, use .Dq -\|- as the first argument to set. If no following arguments are present, the set command will clear all the positional parameters (equivalent to executing .Dq shift $# . ) Otherwise the following arguments become .Dq \&$1 , .Dq \&$2 , \&..., and .Dq \&$# is set to the number of arguments present. .It setvar Ar variable Ar value Assigns value to variable. (In general it is better to write variable=value rather than using .Ic setvar . .Ic setvar is intended to be used in functions that assign values to variables whose names are passed as parameters.) .It shift Op Ar n Shift the positional parameters n times. If n is omitted, 1 is assumed. Each .Ic shift sets the value of .Va $1 to the previous value of .Va $2 , the value of .Va $2 to the previous value of .Va $3 , and so on, decreasing the value of .Va $# by one. The shift count must be less than or equal to the number of positional parameters ( .Dq $# ) before the shift. .It trap Ar action signal ... .It trap \- .It trap Oo Fl l Oc .It trap Oo Fl p Oc signal ... .It trap Ar N signal ... .Pp Cause the shell to parse and execute action when any of the specified signals are received. The signals are specified by signal number or as the name of the signal. If .Ar signal is .Li 0 or its equivalent, EXIT, the action is executed when the shell exits. The .Ar action may be a null (empty) string, which causes the specified signals to be ignored. With .Ar action set to .Sq - the specified signals are set to their default actions. If the first .Ar signal is specified in its numeric form, then .Ar action can be omitted to achieve the same effect. This archaic, but still standard, form should not be relied upon, use the explicit .Sq - action. If no signals are specified with an action of .Sq - , all signals are reset. .Pp When the shell forks off a sub-shell, it resets trapped (but not ignored) signals to the default action. On non-interactive shells, the .Ic trap command has no effect on signals that were ignored on entry to the shell. On interactive shells, the .Ic trap command will catch or reset signals ignored on entry. .Pp Issuing .Ic trap with option .Fl l will print a list of valid signal names. .Ic trap without any arguments causes it to write a list of signals and their associated non-default actions to the standard output in a format that is suitable as an input to the shell that achieves the same trapping results. With the .Fl p flag, trap prints the same information for the signals specified, or if none are given, for all signals, including those where the action is the default. .Pp Examples: .Pp .Dl trap .Pp List trapped signals and their corresponding actions. .Pp .Dl trap -l .Pp Print a list of valid signals. .Pp .Dl trap '' INT QUIT tstp 30 .Pp Ignore signals INT QUIT TSTP USR1. .Pp .Dl trap date INT .Pp Run the .Dq date command (print the date) upon receiving signal INT. .Pp .Dl trap HUP INT .Pp Run the .Dq HUP command, or function, upon receiving signal INT. .Pp .Dl trap 1 2 .Pp Reset the actions for signals 1 (HUP) and 2 (INT) to their defaults. .Bd -literal -offset indent traps=$(trap -p) # more commands ... trap 'action' SIG # more commands ... eval "$traps" .Ed .Pp Save the trap status, execute commands, changing some traps, and then reset all traps to their values at the start of the sequence. The .Fl p option is required in the first command here, or any signals that were previously untrapped (in their default states) and which were altered during the intermediate code, would not be reset by the final .Dq eval . .It type Op Ar name ... Interpret each name as a command and print the resolution of the command search. Possible resolutions are: shell keyword, alias, shell built-in, command, tracked alias and not found. For aliases the alias expansion is printed; for commands and tracked aliases the complete pathname of the command is printed. .It ulimit Oo Fl H \*(Ba Fl S Oc Oo Fl a \*(Ba Fl btfdscmlrpnv Oo Ar value Oc Oc Inquire about or set the hard or soft limits on processes or set new limits. The choice between hard limit (which no process is allowed to violate, and which may not be raised once it has been lowered) and soft limit (which causes processes to be signaled but not necessarily killed, and which may be raised) is made with these flags: .Bl -tag -width Fl .It Fl H set or inquire about hard limits .It Fl S set or inquire about soft limits. If neither .Fl H nor .Fl S is specified, the soft limit is displayed or both limits are set. If both are specified, the last one wins. .El .Pp The limit to be interrogated or set, then, is chosen by specifying any one of these flags: .Bl -tag -width Fl .It Fl a show all the current limits .It Fl b show or set the limit on the socket buffer size of a process (in bytes) .It Fl c show or set the limit on the largest core dump size that can be produced (in 512-byte blocks) .It Fl d show or set the limit on the data segment size of a process (in kilobytes) .It Fl f show or set the limit on the largest file that can be created (in 512-byte blocks) .It Fl l show or set the limit on how much memory a process can lock with .Xr mlock 2 (in kilobytes) .It Fl m show or set the limit on the total physical memory that can be in use by a process (in kilobytes) .It Fl n show or set the limit on the number of files a process can have open at once .It Fl p show or set the limit on the number of processes this user can have at one time .It Fl r show or set the limit on the number of threads this user can have at one time .It Fl s show or set the limit on the stack size of a process (in kilobytes) .It Fl t show or set the limit on CPU time (in seconds) .It Fl v show or set the limit on how large a process address space can be .El .Pp If none of these is specified, it is the limit on file size that is shown or set. If value is specified, the limit is set to that number; otherwise the current limit is displayed. .Pp Limits of an arbitrary process can be displayed or set using the .Xr sysctl 8 utility. .It umask Oo Fl S Oc Op Ar mask Set the value of umask (see .Xr umask 2 ) to the specified octal value. If the argument is omitted, the umask value is printed. With .Fl S a symbolic form is used instead of an octal number. .It unalias Oo Fl a Oc Oo Ar name Oc If .Ar name is specified, the shell removes that alias. If .Fl a is specified, all aliases are removed. .It unset Oo Fl efvx Oc Ar name ... If .Fl v is specified, the specified variables are unset and unexported. Readonly variables cannot be unset. If .Fl f is specified, the specified functions are undefined. If .Fl e is given, the specified variables are unexported, but otherwise unchanged, alternatively, if .Fl x is given, the exported status of the variable will be retained, even after it is unset. .Pp If no flags are provided .Fl v is assumed. If .Fl f is given with one of the other flags, then the named variables will be unset, or unexported, and functions of the same names will be undefined. The .Fl e and .Fl x flags both imply .Fl v . If .Fl e is given, the .Fl x flag is ignored. .Pp The exit status is 0, unless an attempt was made to unset a readonly variable, in which case the exit status is 1. It is not an error to unset (or undefine) a variable (or function) that is not currently set (or defined.) .It wait Op Ar job Wait for the specified job to complete and return the exit status of the last process in the job, or 127 if the job is not a current child of the shell. If the argument is omitted, wait for all jobs to complete and then return an exit status of zero. If the wait is interrupted by a signal, its exit status will be greater than 128. .Pp Once waited upon, by specific process number or job-id, or by a .Ic wait with no arguments, knowledge of the child is removed from the system, and it cannot be waited upon again. .El .Ss Command Line Editing When .Nm is being used interactively from a terminal, the current command and the command history (see .Ic fc in the .Sx Built-ins section) can be edited using emacs-mode or vi-mode command-line editing. The command .Ql set -o emacs enables emacs-mode editing. The command .Ql set -o vi enables vi-mode editing and places the current shell process into .Ar vi insert mode. (See the .Sx Argument List Processing section above.) .Pp The .Ar vi mode uses commands similar to a subset of those described in the .Xr vi 1 man page. With vi-mode enabled, .Nm sh can be switched between insert mode and command mode. It's similar to .Xr vi 1 : pressing the .Aq ESC key will throw you into command VI command mode. Pressing the .Aq return key while in command mode will pass the line to the shell. .Pp The .Ar emacs mode uses commands similar to a subset available in the .Xr emacs 1 editor. With emacs-mode enabled, special keys can be used to modify the text in the buffer using the control key. .Pp .Nm uses the .Xr editline 3 library. See .Xr editline 7 for a list of the possible command bindings, and the default settings in .Ar emacs and .Ar vi modes. Also see .Xr editrc 5 for the commands that can be given to configure .Xr editline 7 in the file named by the .Ev EDITRC parameter, or a file used with the .Ic inputrc built-in command, or using .Xr editline 7 Ap s configuration command line. .Pp When command line editing is enabled, the .Xr editline 7 functions control printing of the .Ev PS1 and .Ev PS2 prompts when required. As, in this mode, the command line editor needs to keep track of what characters are in what position on the command line, care needs to be taken when setting the prompts. Normal printing characters are handled automatically, however mode setting sequences, which do not actually display on the terminal, need to be identified to .Xr editline 7 . This is done, when needed, by choosing a character that is not needed anywhere in the prompt, including in the mode setting sequences, any single character is acceptable, and assigning it to the shell parameter .Ev PSlit . Then that character should be used, in pairs, in the prompt string. Between each pair of .Ev PSlit characters are mode setting sequences, which affect the printing attributes of the following (normal) characters of the prompt, but do not themselves appear visibly, nor change the terminal's cursor position. .Pp Each such sequence, that is .Ev PSlit character, mode setting character sequence, and another .Ev PSlit character, must currently be followed by at least one following normal prompt character, or it will be ignored. That is, a .Ev PSlit character cannot be the final character of .Ev PS1 or .Ev PS2 , nor may two .Ev PSlit delimited sequences appear adjacent to each other. Each sequence can contain as many mode altering sequences as are required however. Only the first character from .Ev PSlit will be used. When set .Ev PSlit should usually be set to a string containing just one character, then it can simply be embedded in .Ev PS1 (or .Ev PS2 ) as in .Dl PS1="${PSlit}mset${PSlit}XYZ${PSlit}mclr${PSlit}ABC" The prompt visible will be .Dq XYZABC with the .Dq XYZ part shown according as defined by the mode setting characters .Dq mset , and then cleared again by .Dq mclr . See .Xr tput 1 for one method to generate appropriate mode sequences. Note that both parts, XYZ and ABC, must each contain at least one character. .Pp If .Ev PSlit is unset, which is its initial state, or set to a null string, no literal character will be defined, and all characters of the prompt strings will be assumed to be visible characters (which includes spaces etc.) To allow smooth use of prompts, without needing redefinition, when .Xr editline 7 is disabled, the character chosen should be one which will be ignored by the terminal if received, as when .Xr edlitline 7 is not in use, the prompt strings are simply written to the terminal. For example, setting: .Bd -compact -literal -offset left PSlit="$(printf\ '\e1')" PS1="${PSlit}$(tput\ bold\ blink)${PSlit}\e$${PSlit}$(tput\ sgr0)${PSlit}\ " .Ed will arrange for the primary prompt to be a bold blinking dollar sign, if supported by the current terminal, followed by an (ordinary) space, and, as the SOH (Control-A) character ('\e1') will not normally affect a terminal, this same prompt will usually work with .Xr editline 7 enabled or disabled. .Sh ENVIRONMENT .Bl -tag -width MAILCHECK .It Ev CDPATH The search path used with the .Ic cd built-in. .It Ev EDITRC Gives the name of the file containing commands for .Xr editline 7 . See .Xr editrc 5 for possible content and format. The file is processed, when in interactive mode with command line editing enabled, whenever .Ev EDITRC is set (even with no actual value change,) and if command line editing changes from disabled to enabled, or the editor style used is changed. (See the .Fl E and .Fl V options of the .Ic set builtin command, described in .Sx Built-ins above, which are documented further above in .Sx Argument List Processing . ) If unset .Dq $HOME/.editrc is used. .It Ev ENV Names the file sourced at startup by the shell. Unused by this shell after initialization, but is usually passed through the environment to descendant shells. .It Ev EUSER Set to the login name of the effective user id running the shell, as returned by .Bd -compact -literal -offset indent getpwuid(geteuid())->pw_name .Ed .Po See .Xr getpwuid 3 and .Xr geteuid 2 for more details. .Pc This is obtained each time .Ev EUSER is expanded, so changes to the shell's execution identity cause updates without further action. If unset, it returns nothing. If set it loses its special properties, and is simply a variable. .It Ev HISTSIZE The number of lines in the history buffer for the shell. .It Ev HOME Set automatically by .Xr login 1 from the user's login directory in the password file .Pq Xr passwd 5 . This environment variable also functions as the default argument for the .Ic cd built-in. .It Ev HOSTNAME Set to the current hostname of the system, as returned by .Xr gethostname 3 . This is obtained each time .Ev HOSTNAME is expanded, so changes to the system's name are reflected without further action. If unset, it returns nothing. If set it loses its special properties, and is simply a variable. .It Ev IFS Input Field Separators. This is normally set to .Aq space , .Aq tab , and .Aq newline . See the .Sx White Space Splitting section for more details. .It Ev LANG The string used to specify localization information that allows users to work with different culture-specific and language conventions. See .Xr nls 7 . .It Ev LINENO The current line number in the script or function. See the section .Sx LINENO below for more details. .It Ev MAIL The name of a mail file, that will be checked for the arrival of new mail. Overridden by .Ev MAILPATH . The check occurs just before .Ev PS1 is written, immediately after reporting jobs which have changed status, in interactive shells only. New mail is considered to have arrived if the monitored file has increased in size since the last check. .\" .It Ev MAILCHECK .\" The frequency in seconds that the shell checks for the arrival of mail .\" in the files specified by the .\" .Ev MAILPATH .\" or the .\" .Ev MAIL .\" file. .\" If set to 0, the check will occur at each prompt. .It Ev MAILPATH A colon .Dq \&: separated list of file names, for the shell to check for incoming mail. This environment setting overrides the .Ev MAIL setting. There is a maximum of 10 mailboxes that can be monitored at once. .It Ev PATH The default search path for executables. See the .Sx Path Search section above. .It Ev POSIXLY_CORRECT If set in the environment upon initialization of the shell, then the shell option .Ic posix will be set. .Po See the description of the .Ic set command in the .Sx Built-ins section. .Pc After initialization it is unused by the shell, but is usually passed through the environment to descendant processes, including other instances of the shell, which may interpret it in a similar way. .It Ev PPID The process identified of the parent process of the current shell. This value is set at shell startup, ignoring any value in the environment, and then made readonly. .It Ev PS1 The primary prompt string, which defaults to .Dq $ \ , unless you are the superuser, in which case it defaults to .Dq # \ . This string is subject to parameter, arithmetic, and if enabled by setting the .Ic promptcmds option, command substitution before being output. During execution of commands used by command substitution, execution tracing, the .Ic xtrace .Ic ( set Fl x ) option is temporarily disabled. If .Ic promptcmds is not set and the prompt string uses command substitution, the prompt used will be an appropriate error string. For other expansion errors, a message will be output, and the unexpanded string will then be used as the prompt. .It Ev PS2 The secondary prompt string, which defaults to .Dq > \ . After expansion (as for .Ev PS1 ) it is written whenever more input is required to complete the current command. .It Ev PS4 Output, after expansion like .Ev PS1 , before each line when execution trace .Ic ( set Fl x ) is enabled. .Ev PS4 defaults to .Dq + \ . .It Ev PSc Initialised by the shell, ignoring any value from the environment, to a single character string, either .Sq \&# or .Sq \&$ , depending upon whether the current user is the superuser or not. This is intended for use when building a custom .Ev PS1 . .It Ev PSlit Defines the character which may be embedded in pairs, in .Ev PS1 or .Ev PS2 to indicate to .Xr editline 7 that the characters between each pair of occurrences of the .Ev PSlit character will not appear in the visible prompt, and will not cause the terminal's cursor to change position, but rather set terminal attributes for the following prompt character(s) at least one of which must be present. See .Sx Command Line Editing above for more information. .It Ev RANDOM Returns a different pseudo-random integer, in the range [0,32767] each time it is accessed. .Ev RANDOM can be assigned an integer value to seed the PRNG. If the value assigned is a constant, then the sequence of values produces on subsequent references of .Ev RANDOM will repeat after the next time the same constant is assigned. Note, this is not guaranteed to remain constant from one version of the shell to another \(en the PRNG algorithm, or seeding method is subject to change. If .Ev RANDOM is assigned an empty value (null string) then the next time .Ev RANDOM is accessed, it will be seeded from a more genuinely random source. The sequence of pseudo-random numbers generated will not be able to be generated again (except by luck, whether good or bad, depends!) This is also how the initial seed is generated, if none has been assigned before .Ev RANDOM is first accessed after shell initialization. .It Ev SECONDS Returns the number of seconds since the current shell was started. If unset, it remains unset, and returns nothing, unless set again. If set, it loses its special properties, and becomes a normal variable. .It Ev START_TIME Initialised by the shell to the number of seconds since the Epoch (see .Xr localtime 3 ) when the shell was started. The value of .Dl $(( Ns Ev START_TIME + Ev SECONDS Ns )) represents the current time, if .Ev START_TIME has not been modified, and .Ev SECONDS has not been set or unset. .It Ev TERM The default terminal setting for the shell. This is inherited by children of the shell, and is used in the history editing modes. .\" This is explicitly last, not in sort order - please leave! .It Ev ToD When referenced, uses the value of .Ev ToD_FORMAT (or .Dq \&%T if .Ev ToD_FORMAT is unset) as the format argument to .Xr strftime 3 to encode the current time of day, in the time zone defined by .Ev TZ if set, or current local time if not, and returns the result. If unset .Ev ToD returns nothing. If set, it loses its special properties, and becomes a normal variable. .It Ev ToD_FORMAT Can be set to the .Xr strftime 3 format string to be used when expanding .Ev ToD . Initially unset. .It Ev TZ If set, gives the time zone (see .Xr localtime 3 , .Xr environ 7 ) to use when formatting .Ev ToD and if exported, other utilities that deal with times. If unset, the system's local wall clock time zone is used. .It Ev NETBSD_SHELL Unlike the variables previously mentioned, this variable is somewhat strange, in that it cannot be set, inherited from the environment, modified, or exported from the shell. If set, by the shell, it indicates that the shell is the .Ic sh defined by this manual page, and gives its version information. It can also give information in additional space separated words, after the version string. If the shell was built as part of a reproducible build, the relevant date that was used for that build will be included. Finally, any non-standard compilation options, which may affect features available, that were used when building the shell will be listed. .Ev NETBSD_SHELL behaves like any other variable that has the read-only and un-exportable attributes set. .El .Ss Ev LINENO .Ev LINENO is in many respects a normal shell variable, containing an integer value. and can be expanded using any of the forms mentioned above which can be used for any other variable. .Pp .Ev LINENO can be exported, made readonly (which prevents attempts to assign to it, and to unset it, but which does not change the value, that is the current line number, from being obtained when .Ev LINENO is referenced,) and can be unset. All of those act as they would with any other variable. However, .Ev LINENO should normally not ever be set or unset. In this shell setting .Ev LINENO reverses the effect of an earlier .Ic unset , but does not otherwise affect the value obtained. If unset, .Ev LINENO should not normally be set again, doing so is not portable. If .Ev LINENO is set or unset, different shells act differently. The value of .Ev LINENO is never imported from the environment when the shell is started, though if present there, as with any other variable, .Ev LINENO will be exported by this shell. .Pp .Ev LINENO is set automatically by the shell to be the number of the source line on which it occurs. When exported, .Ev LINENO is exported with its value set to the line number it would have had had it been referenced on the command line of the command to which it is exported. Line numbers are counted from 1, which is the first line the shell reads from any particular file. For this shell, standard input, including in an interactive shell, the user's terminal, is just another file and lines are counted there as well. However note that not all shells count interactive lines this way, it is not wise to rely upon .Ev LINENO having a useful value, except in a script, or a function. .Pp The role of .Ev LINENO in functions is less clear. In some shells, .Ev LINENO continues to refer to the line number in the script which defines the function, in others lines count from one within the function, always (and resume counting normally once the function definition is complete) and others count in functions from one if the function is defined interactively, but otherwise just reference the line number in the script in which the function is defined. This shell gives the user the option to choose. If the .Fl L flag (the .Ic local_lineno option, see .Sx Argument List Processing ) is set, when the function is defined, then the function defaults to counting lines with one being the first line of the function. When the .Fl L flag is not set, the shell counts lines in a function definition in the same continuous sequence as the lines that surround the function definition. Further, if .Ev LINENO is made local (see .Sx Built-ins above) inside the function, the function can decide which behavior it prefers. If .Ev LINENO is made local and inherited, and not given a value, as in .Dl local Fl I Ev LINENO then from that point in the function, .Ev LINENO will give the line number as if lines are counted in sequence with the lines that surround the function definition (and any other function definitions in which this is nested.) If .Ev LINENO is made local, and in that same command, given a value, as .Dl local Oo Fl I Ns | Ns Fl N Oc Ev LINENO Ns = Ns Ar value then .Ev LINENO will give the line number as if lines are counted from one from the beginning of the function. The value nominally assigned in this case is irrelevant, and ignored. For completeness, if lineno is made local and unset, as in .Dl local Fl N Ev LINENO then .Ev LINENO is simply unset inside the function, and gives no value at all. .Pp Now for some technical details. The line on which .Ev LINENO occurs in a parameter expansion, is the line that contains the .Sq \&$ that begins the expansion of .Ev LINENO . In the case of nested expansions, that .Sq \&$ is the one that actually has .Ev LINENO as its parameter. In an arithmetic expansion, where no .Sq \&$ is used to evaluate .Ev LINENO but .Ev LINENO is simply referenced as a variable, then the value is the line number of the line that contains the .Sq L of .Ev LINENO . For functions line one of the function definition (when relevant) is the line that contains the first character of the function name in the definition. When exported, the line number of the command is the line number where the first character of the word which becomes the command name occurs. .Pp When the shell opens a new file, for any reason, it counts lines from one in that file, and then resumes its original counting once it resumes reading the previous input stream. When handling a string passed to .Ic eval the line number starts at the line on which the string starts, and then if the string contains internal newline characters, those characters increase the line number. This means that references to .Ev LINENO in such a case can produce values larger than would be produced by a reference on the line after the .Ic eval . .Sh FILES .Bl -item .It .Pa $HOME/.profile .It .Pa /etc/profile .El .Sh EXIT STATUS Errors that are detected by the shell, such as a syntax error, will cause the shell to exit with a non-zero exit status. If the shell is not an interactive shell, the execution of the shell file will be aborted. Otherwise the shell will return the exit status of the last command executed, or if the exit built-in is used with a numeric argument, it will return the argument. .Sh SEE ALSO .Xr csh 1 , .Xr echo 1 , .Xr getopt 1 , .Xr ksh 1 , .Xr login 1 , .Xr printf 1 , .Xr test 1 , .Xr editline 3 , .Xr getopt 3 , .\" .Xr profile 4 , .Xr editrc 5 , .Xr passwd 5 , .Xr editline 7 , .Xr environ 7 , .Xr nls 7 , .Xr sysctl 8 .Sh HISTORY A .Nm command appeared in .At v1 . It was replaced in .At v7 with a version that introduced the basis of the current syntax. That was, however, unmaintainable so we wrote this one. .Sh BUGS Setuid shell scripts should be avoided at all costs, as they are a significant security risk. .Pp The characters generated by filename completion should probably be quoted to ensure that the filename is still valid after the input line has been processed. .Pp The .Ic trap command cannot usefully be used, yet, within a command substitution, to obtain the current trap values, as all command substitutions are currently executed within a sub-shell environment, and in sub-shells all non-ignored, non-default, traps are reset. As a workaround, it is possible to redirect output from .Dq trap or .Dq trap -p to a file, and then read the file later using the .Dq \&. command. .Pp Many, many, more. (But less than there were...)