# man > ksh93(1)

[_KSH_(1)](https://www.chedong.com/phpMan.php/man/KSH/1/markdown)                                 General Commands Manual                                [_KSH_(1)](https://www.chedong.com/phpMan.php/man/KSH/1/markdown)

## NAME
       ksh, rksh - KornShell, a standard/restricted command and programming language

## SYNOPSIS
       **ksh **[ **±abcefhiklmnprstuvxBCDEGH **] [ **±o **option ] ... [ **- **] [ arg ... ]
       **rksh **[ **±abcefhiklmnpstuvxBCDEGH **] [ **±o **option ] ... [ **- **] [ arg ... ]

## DESCRIPTION
       _Ksh_  is  a  command and programming language that executes commands read from a terminal or a
       file.  _Rksh_ is a restricted version of the command interpreter _ksh_; it is used to set up  lo‐
       gin names and execution environments whose capabilities are more controlled than those of the
       standard shell.  See _Invocation_ below for the meaning of arguments to the shell.

### Definitions.
       A _metacharacter_ is one of the following characters:

              **;   &   (   )   |   <   >   new-line   space   tab**

       A  _blank_ is a **tab **or a **space**.  An _identifier_ is a sequence of letters, digits, or underscores
       starting with a letter or underscore.  Identifiers are used as components of _variable_  names.
       A  _vname_ is a sequence of one or more identifiers separated by a **. **and optionally preceded by
       a **.**.  Vnames are used as function and variable names.  A _word_ is  a  sequence  of  _characters_
       from the character set defined by the current locale, excluding non-quoted _metacharacters_.

       A  _command_  is a sequence of characters in the syntax of the shell language.  The shell reads
       each command and carries out the desired action either directly or by invoking separate util‐
       ities.  A built-in command is a command that is carried out by the shell itself without  cre‐
       ating a separate process.  Some commands are built in purely for convenience and are not doc‐
       umented  here.  Built-ins that cause side effects in the shell environment and built-ins that
       are found before performing a path search (see _Execution_ below)  are  documented  here.   For
       historical  reasons,  some of these built-ins behave differently than other built-ins and are
       called _special_ _built-ins_.

### Commands.
       A _simple-command_ is a list of variable assignments (see _Variable_ _Assignments_ below) or a  se‐
       quence  of _blank_ separated words which may be preceded by a list of variable assignments (see
       _Environment_ below).  The first word specifies the name of the command to be executed.  Except
       as specified below, the remaining words are passed as arguments to the invoked command.   The
       command  name  is  passed  as argument 0 (see [_exec_(2)](https://www.chedong.com/phpMan.php/man/exec/2/markdown)).  The _value_ of a _simple-command_ is its
       exit status; 0-255 if it terminates normally; 256+_signum_ if  it  terminates  abnormally  (the
       name  of the signal corresponding to the exit status can be obtained via the **-l **option of the
       **kill **built-in utility).

       A _pipeline_ is a sequence of one or more _command_s separated by **|**.  The standard output of each
       command but the last is connected by a [_socketpair_(2)](https://www.chedong.com/phpMan.php/man/socketpair/2/markdown) or (if the **posix **shell option is on)  by
       a  [_pipe_(2)](https://www.chedong.com/phpMan.php/man/pipe/2/markdown)  to  the  standard input of the next command.  Each command except the last is run
       asynchronously in a subshell (see _Subshells_ below).  If the **monitor **or **pipefail **option is on,
       or the pipeline is preceded by the _reserved_ _word_ **time**, then the shell waits for all component
       commands in the pipeline to terminate; otherwise, the shell only waits for the last component
       command.  The exit status of a pipeline is the exit status of its last component command, un‐
       less the **pipefail **option is enabled.  Each pipeline can be preceded by the  _reserved_  _word_  **!**
       which  causes the exit status of the pipeline to become 0 if the exit status of the last com‐
       mand is non-zero, and 1 if the exit status of the last command is 0.

       A _list_ is a sequence of one or more pipelines separated by **;**, **&**, **|&**, **&&**, or **||**,  and  option‐
       ally  terminated  by **;**, **&**, or **|&**.  Of these five symbols, **;**, **&**, and **|& **have equal precedence,
       which is lower than that of **&& **and **||**.  The symbols **&& **and **|| **also have equal precedence.   A
       semicolon  (**;**) causes sequential execution of the preceding pipeline; an ampersand (**&**) causes
       asynchronous execution of the preceding pipeline (i.e., the shell  does  _not_  wait  for  that
       pipeline  to  finish).  The symbol **|& **causes asynchronous execution of the preceding pipeline
       with a two-way pipe established to the parent shell; the standard input  and  output  of  the
       spawned pipeline can be written to and read from by the parent shell by applying the redirec‐
       tion  operators  **<& **and **>& **with arg **p **to commands and by using **-p **option of the built-in com‐
       mands **read **and **print **described later.  The symbol **&& **(**||**) causes the _list_ following it to  be
       executed  only  if  the preceding pipeline returns a zero (non-zero) value.  One or more new-
       lines may appear in a _list_ instead of a semicolon, to delimit a command.  The first _item_   of
       the  first  _pipeline_ of a _list_ that is a simple command not beginning with a redirection, and
       not occurring within a **while**, **until**, or **if _**list_, can be preceded by a semicolon.  This  semi‐
       colon  is  ignored unless the **showme **option is enabled as described with the **set **built-in be‐
       low.

       A _command_ is either a _simple-command_ or a _compound-command_, which is one  of  the  following.
       Unless  otherwise  stated, the value returned by a command is that of the last _simple-command_
       executed in the command.

       **for _**vname_ [ **in _**word_ ... ] **;do _**list_ **;done**
              Each time a **for **command is executed, _vname_ is set to the next _word_ taken from  the  **in**
              _word_ list.  If **in _**word_ ...  is omitted, then the **for **command executes the **do _**list_ once
              for each positional parameter that is set starting from **1 **(see _Parameter_ _Expansion_ be‐
              low).  Execution ends when there are no more words in the list.

       **for (( **[_expr1_] **; **[_expr2_] **; **[_expr3_] **)) ;do _**list_ **;done**
              The  arithmetic expression _expr1_ is evaluated first (see _Arithmetic_ _Evaluation_ below).
              The arithmetic expression _expr2_ is repeatedly evaluated until it evaluates to zero and
              when non-zero, _list_ is executed and the arithmetic expression _expr3_ evaluated.  If any
              expression is omitted, then it behaves as if it evaluated to 1.

       **select _**vname_ [ **in _**word_ ... ] **;do _**list_ **;done**
              A **select **command prints on standard error (file descriptor 2) the set of  _word_s,  each
              preceded  by  a  number.   If  **in _**word_ ...  is omitted, then the positional parameters
              starting from **1 **are used instead (see _Parameter_ _Expansion_ below).  The **PS3  **prompt  is
              printed and a line is read from the standard input.  If this line consists of the num‐
              ber  of  one  of  the listed _word_s, then the value of the variable _vname_ is set to the
              _word_ corresponding to this number.  If this line  is  empty,  the  selection  list  is
              printed  again.  Otherwise the value of the variable _vname_ is set to the empty string.
              The contents of the line read from standard input is saved in the variable **REPLY**.  The
              _list_ is executed for each selection until a **break **or _end-of-file_ is  encountered.   If
              the  **REPLY  **variable is set to the empty string by the execution of _list_, then the se‐
              lection list is printed before displaying the **PS3 **prompt for the next selection.

       **case _**word_ **in **[ [**(**]_pattern_ [ | _pattern_ ] ... **) _**list_ **;; **] ... **esac**
              A **case **command executes the _list_ associated with the first _pattern_ that matches  _word_.
              The form of the patterns is the same as that used for pathname expansion (see _Pathname_
              _Expansion_  below).   The  **;; **operator causes execution of **case **to terminate.  If **;& **is
              used in place of **;; **the next subsequent list, if any,  is executed.

       **if _**list_ **;then _**list_ [ **;elif _**list_ **;then _**list_ ] ... [ **;else _**list_ ] **;fi**
              The _list_ following **if **is executed and, if it returns a zero exit status, the _list_ fol‐
              lowing the first **then **is executed.  Otherwise, the _list_  following  **elif  **is  executed
              and, if its value is zero, the _list_ following the next **then **is executed.  Failing each
              successive  **elif  _**list_,  the  **else _**list_ is executed.  If the **if _**list_ has non-zero exit
              status and there is no **else _**list_, then the **if **command returns a zero exit status.

       **while _**list_ **;do _**list_ **;done**
       **until _**list_ **;do _**list_ **;done**
              A **while **command repeatedly executes the **while _**list_ and, if the exit status of the last
              command in the list is zero, executes the **do _**list_; otherwise the loop terminates.   If
              no  commands  in  the **do _**list_ are executed, then the **while **command returns a zero exit
              status; **until **may be used in place of **while **to negate the loop termination test.

       **while _**inputredirection_ **;do _**list_ **;done**
              Filescan loop. This is defined by a lone input redirection following  **while  **(see  _In‐_
              _put/Output_  below).   It  is  faster than using the **read **built-in command in a regular
              **while **loop.  The shell reads lines from the file or stream opened by  _inputredirection_
              until  the end is reached or the loop is broken.  For each line read, the command _list_
              is executed with the line's contents assigned to the **REPLY  **variable  and  the  line's
              fields  split into the positional parameters (see _Field_ _Splitting_ and _Positional_ _Para‐_
              _meters_ below).  Within the _list_, standard input is redirected to  **/dev/null**.   If  the
              **posix  **compatibility  shell option is on, this loop type is disabled and _inputredirec‐_
              _tion_ is processed like a lone redirection in any other context.

       **((_**expression_**))**
              The _expression_ is evaluated using the rules for arithmetic evaluation described below.
              If the value of the arithmetic expression is non-zero, the exit status is 0, otherwise
              the exit status is 1.

       **(_**list_**)**
              Execute _list_ in a subshell (see _Subshells_ below).  Note, that  if  two  adjacent  open
              parentheses are needed for nesting, a space must be inserted to avoid evaluation as an
              arithmetic command as described above.

       **{ _**list_**;}**
              _list_ is simply executed.  Note that unlike the metacharacters **( **and **)**, **{ **and **} **are _re‐_
              _served_  _word_s  and  must  occur at the beginning of a line or after a **; **in order to be
              recognized.

       **[[ _**expression_ **]]**
              Evaluates _expression_ and returns a zero exit status when _expression_ is true.  See _Con‐_
              _ditional_ _Expressions_ below, for a description of _expression_.

       **function _**varname_ **{ _**list_ **;} **[ _redirection_ ... ]
       _varname_ **() _**compound-command_ [ _redirection_ ... ]
              Define a function which is referenced by _varname_.  A function whose _varname_ contains a
              **.  **is called a discipline function and the portion of the _varname_ preceding the last **.**
              must refer to an existing variable.  The body of the function is the _list_ of  commands
              between **{ **and **}**.  A function defined with the **function _**varname_ syntax can also be used
              as an argument to the **.  **special built-in command to get the equivalent behavior as if
              the _varname_**() **syntax were used to define it.  (See _Functions_ below.)

       **namespace _**identifier_ **{ _**list_ **;}**
              Defines  or  uses the name space _identifier_ and runs the commands in _list_ in this name
              space.  (See _Name_ _Spaces_ below.)

       **time **[ _pipeline_ ]
              If _pipeline_ is omitted the user and system time for the current  shell  and  completed
              child processes is printed on standard error.  Otherwise, _pipeline_ is executed and the
              elapsed  time  as well as the user and system time are printed on standard error.  The
              **TIMEFORMAT **variable may be set to a format string that specifies how the timing infor‐
              mation should be displayed.  See **Shell Variables **below for a description of the  **TIME‐**
              **FORMAT **variable.

       The  following reserved words are recognized as reserved only when they are the first word of
       a command and are not quoted:

### if then else elif fi case esac for while until do done { } function select time [[ ]] !

### Variable Assignments.
       One or more variable assignments can start a simple command or can be arguments to the  **type‐**
       **set**, **enum**, **export**, or **readonly **special built-in commands as well as to other declaration com‐
       mands created as types.  The syntax for an _assignment_ is of the form:

       _varname_**=_**word_
       _varname_**[_**word_**]**=_word_
              No space is permitted between _varname_ and the **= **or between **= **and _word_.

       _varname_**=(_**assign_list_**)**
              No space is permitted between _varname_ and the **=**.  The variable _varname_ is unset before
              the assignment.  An _assign_list_ can be one of the following:
                      _word_ ...
                             Indexed array assignment.
                      **[_**word_**]=_**word_ ...
                             Associative array assignment.  If preceded by **typeset -a **this will cre‐
                             ate an indexed array instead.
                      _assignment_ ...
                             Compound variable assignment.  This creates a compound variable _varname_
                             with subvariables of the form _varname_**._**name_, where _name_ is the name por‐
                             tion  of _assignment_.  The value of _varname_ will contain all the assign‐
                             ment elements.  Additional assignments made to subvariables of  _varname_
                             will  also be displayed as part of the value of _varname_.  If no _assign‐_
                             _ment_s are specified, _varname_ will be a compound variable allowing  sub‐
                             sequence child elements to be defined.
                      **typeset **[_options_] _assignment_ ...
                             Nested  variable  assignment.  Multiple assignments can be specified by
                             separating each of them with a **;**.  The previous value is  unset  before
                             the assignment.  Other declaration commands such as **readonly, enum**, and
                             other declaration commands can be used in place of **typeset**.
                      **. _**filename_
                             Include the assignment commands contained in _filename_.

       In addition, a **+= **can be used in place of the **= **to signify adding to or appending to the pre‐
       vious  value.   When  **+= **is applied to an arithmetic type, _word_ is evaluated as an arithmetic
       expression and added to the current value.  When applied to a string variable, the value  de‐
       fined  by _word_ is appended to the value.  For compound assignments, the previous value is not
       unset and the new values are appended to the current ones provided that the types are compat‐
       ible.

       The right hand side of a variable assignment undergoes all the expansion listed below  except
       word  splitting,  brace expansion, and pathname expansion.  When the left hand side is an as‐
       signment is a compound variable and the right hand is the name of a  compound  variable,  the
       compound  variable  on  the  right will be copied or appended to the compound variable on the
       left.

### Comments.
       A word beginning with **# **causes that word and all the following characters up to a new-line to
       be ignored.

### Aliasing.
       The first word of each command is replaced by the text of an **alias **if an **alias **for this  word
       has  been  defined.  An **alias **name consists of any number of characters excluding metacharac‐
       ters, quoting characters, file expansion characters, parameter expansion and command  substi‐
       tution  characters,  the  characters  **/  **and **=**.  The replacement string can contain any valid
       shell script including the metacharacters listed above.  The first word of  each  command  in
       the  replaced  text, other than any that are in the process of being replaced, will be tested
       for aliases.  If the last character of the alias value is a _blank_ then the word following the
       alias will also be checked for alias substitution.  Aliases can be used to redefine  built-in
       commands but cannot be used to redefine the reserved words listed above.  Aliases can be cre‐
       ated and listed with the **alias **command and can be removed with the **unalias **command.

       _Aliasing_  is performed when scripts are read, not while they are executed.  Therefore, for an
       alias to take effect, the **alias **definition command has to  be  executed  before  the  command
       which references the alias is read.

       The  following  aliases  are automatically preset when the shell is invoked as an interactive
       shell.  Preset aliases can be unset or redefined.
                           **history=′hist -l′**
                           **r=′hist -s′**

### Tilde Expansion.
       After alias substitution is performed, each word is checked to see if it begins with  an  un‐
       quoted  **∼**.   For tilde expansion, _word_ also refers to the _word_ portion of parameter expansion
       (see _Parameter_ _Expansion_ below).  If a _word_ is preceded by a tilde, then it is checked up  to
       a **/ **to see if it matches a user name in the password database (see [_getpwname_(3)](https://www.chedong.com/phpMan.php/man/getpwname/3/markdown)).  If a match
       is found, the **∼ **and the matched login name are replaced by the login directory of the matched
       user.  If no match is found, the original text is left unchanged.  A **∼ **by itself, or in front
       of  a  **/**,  is replaced by **$HOME**, unless the **HOME **variable is unset, in which case the current
       user's home directory as configured in the operating system is used.  A **∼ **followed by a **+  **or
       **- **is replaced by **$PWD **or **$OLDPWD **respectively.

       In addition, when expanding a variable assignment (see _Variable_ _Assignments_ above), tilde ex‐
       pansion  is  attempted when the value of the assignment begins with a **∼**, and when a **∼ **appears
       after a **:**.  A **: **also terminates a user name following a **∼**.

       The tilde expansion mechanism may be extended or modified by defining one of  the  discipline
       functions  **.sh.tilde.set **or **.sh.tilde.get **(see _Functions_ and _Discipline_ _Functions_ below).  If
       either exists, then upon encountering a tilde word to expand, that function  is  called  with
       the  tilde  word  assigned  to either **.sh.value **(for the **.sh.tilde.set **function) or **.sh.tilde**
       (for the **.sh.tilde.get **function).  Performing tilde expansion within  a  discipline  function
       will  not recursively call that function, but default tilde expansion remains active, so lit‐
       eral tildes should still be quoted where required.  Either function may assign a  replacement
       string to **.sh.value**.  If this value is non-empty and does not start with a **∼**, it replaces the
       default tilde expansion when the function terminates.  Otherwise, the tilde expansion is left
       unchanged.

### Subshells.
       A  _subshell_  is  a separate execution environment that is a complete duplicate of the current
       shell environment, except for two things: all traps are reset to  default  except  those  for
       signals  that are being ignored, and subshells cannot be interactive (i.e., they have no com‐
       mand prompt).  Changes made within a subshell do not affect the parent  environment  and  are
       lost when the subshell exits.

       Particular  care should be taken not to confuse a subshell with a newly invoked shell that is
       merely a child process of the current shell,  and  which  (unlike  a  subshell)  starts  from
       scratch  in terms of variables and functions and may be interactive.  Beware of shell tutori‐
       als on the Internet that confuse these.

       Subshells cannot be created or invoked using any command.  Instead, the following  are  auto‐
       matically run in a subshell:

               •  any command or group of commands enclosed in parentheses;

               •  command  substitutions  of  the first and third form (see _Command_ _Substitution_ be‐
                  low);

               •  process substitutions (see _Process_ _Substitution_ below);

               •  all elements of a pipeline except the last;

               •  any command executed asynchronously (i.e., in a background process).

       Creating processes is expensive, so as a performance optimization, a subshell of a non-inter‐
       active shell may share the process of its parent environment. Such a subshell is known  as  a
       virtual subshell.  Subshells are virtual unless or until something (such as asynchronous exe‐
       cution,  or an attempt to set a process limit using the **ulimit **built-in command, or other im‐
       plementation- or system-defined requirements) makes it necessary to [_fork_(2)](https://www.chedong.com/phpMan.php/man/fork/2/markdown) it into  a  sepa‐
       rate  process.   Barring any bugs in the shell, virtual subshells should be indistinguishable
       from real subshells except by their execution speed and their process ID.  See  the  descrip‐
       tion of the **.sh.pid **variable below for more information.

### Command Substitution.
       The  standard  output from a command list enclosed in parentheses preceded by a dollar sign (
       **$(_**list_**) **), or in a brace group preceded by a dollar sign ( **${ _**list_**;} **), or in a pair of grave
       accents (**``**) may be used as part or all of a word; trailing new-lines are  removed.   In  the
       second  case,  the  **{  **and  **} **are treated as a reserved words so that **{ **must be followed by a
       _blank_ and **} **must appear at the beginning of the line or follow a **;**.  In the third  (obsolete)
       form,  the  string  between the quotes is processed for special quoting characters before the
       command is executed (see _Quoting_ below).  The command substitution **$(cat  file)  **can  be  re‐
       placed by the equivalent but faster **$(<file)**.  The command substitution **$(_**n_**<#) **will expand to
       the  current byte offset for file descriptor _n_.  Except for the second form, the command list
       is run in a subshell so that no side effects are possible.  For the second form, the final  **}**
       will be recognized as a reserved word after any token.

### Arithmetic Expansion.
       An  arithmetic  expression enclosed in double parentheses preceded by a dollar sign ( **$(()) **)
       is replaced by the value of the arithmetic expression within the double parentheses.

### Process Substitution.
       Each command argument of the form **<(_**list_**) **or **>(_**list_**) **will  run  process  _list_  asynchronously
       connected to some file in **/dev/fd **if this directory exists, or else a fifo in a temporary di‐
       rectory.   The name of this file will become the argument to the command.  If the form with **>**
       is selected then writing on this file will provide input for _list_.  If **< **is  used,  then  the
       file passed as an argument will contain the output of the _list_ process.  For example,

              **paste <(cut -f1 _**file1_**) <(cut -f3 _**file2_**) | tee >(_**process1_**) >(_**process2_**)**

       _cuts_ fields 1 and 3 from the files _file1_ and _file2_ respectively, _pastes_ the results together,
       and  sends it to the processes _process1_ and _process2_, as well as putting it onto the standard
       output.  Note that the file, which is passed as an argument to the command, is a UNIX [_pipe_(2)](https://www.chedong.com/phpMan.php/man/pipe/2/markdown)
       so programs that expect to [_lseek_(2)](https://www.chedong.com/phpMan.php/man/lseek/2/markdown) on the file will not work.

       Process substitution of the form **<(_**list_**) **can also be used with  the  **<  **redirection  operator
       which  causes the output of _list_ to be standard input or the input for whatever file descrip‐
       tor is specified.

### Parameter Expansion.
       A _parameter_ is a _variable_, one or more digits, or any of the characters *****, **@**, **#**, **?**, **-**, **$**, and
       **!**.  A _variable_ is denoted by a _vname_.  To create a variable whose _vname_ contains a **.**, a vari‐
       able whose _vname_ consists of everything before the last **. **must already exist.  A _variable_ has
       a _value_ and zero or more _attributes_.  _Variables_ can be assigned _values_ and _attributes_ by  us‐
       ing  the  **typeset  **special  built-in  command.  The attributes supported by the shell are de‐
       scribed later with the **typeset **special built-in command.  Exported variables pass  their  at‐
       tributes  to the environment so that a newly invoked ksh that is a child or exec'd process of
       the current shell will automatically import them, unless the **posix **shell option is on.

       The shell supports both indexed and associative arrays.  An element of an array  variable  is
       referenced  by a _subscript_.  A _subscript_ for an indexed array is denoted by an _arithmetic_ _ex‐_
       _pression_ (see _Arithmetic_ _Evaluation_ below) between a **[ **and a **]**.  To assign values to  an  in‐
       dexed  array,  use _vname_**=(_**value_ ...**) **or **set -A _**vname_  _value_ ... .  The value of all non-nega‐
       tive subscripts must be in the range of 0 through 4,194,303.  A negative subscript is treated
       as an offset from the maximum current index +1 so that -1 refers to the  last  element.   In‐
       dexed  arrays  can be declared with the **-a **option to **typeset.  **Indexed arrays need not be de‐
       clared.  Any reference to a variable with a valid subscript is legal and  an  array  will  be
       created if necessary.

       An  associative  array is created with the **-A **option to **typeset.  **A _subscript_ for an associa‐
       tive array is denoted by a string enclosed between **[ **and **]**.

       Referencing any array without a subscript is equivalent to referencing the  array  with  sub‐
       script 0.

       The _value_ of a _variable_ may be assigned by writing:

              _vname_**=_**value_ [ _vname_**=_**value_ ] ...

       or

              _vname_**[_**subscript_**]=_**value_ [ _vname_**[_**subscript_**]=_**value_ ] ...

       Note that no space is allowed before or after the **=**.

       Attributes  assigned by the _typeset_ special built-in command apply to all elements of the ar‐
       ray.  An array element can be a simple variable, a compound variable or  an  array  variable.
       An  element  of  an indexed array can be either an indexed array or an associative array.  An
       element of an associative array can also be either.  To refer to an  array  element  that  is
       part  of  an  array element, concatenate the subscript in brackets.  For example, to refer to
       the _foobar_ element of an associative array that is defined as the third element  of  the  in‐
       dexed array, use **${_**vname_**[_**3_**][_**foobar_**]}**

       A  _nameref_  is a variable that is a reference to another variable.  A nameref is created with
       the **-n **attribute of **typeset **or with the equivalent **nameref **command.  The value of  the  vari‐
       able  at  the  time of that command becomes the variable that will be referenced whenever the
       nameref variable is used.  The name of a nameref cannot contain a  **.**.   When  a  variable  or
       function name contains a **.**, and the portion of the name up to the first **. **matches the name of
       a  nameref,  the  variable  referred to is obtained by replacing the nameref portion with the
       name of the variable referenced by the nameref.  If a nameref is used as the index of  a  **for**
       loop, a name reference is established for each item in the list.

       A  nameref provides a convenient way to refer to the variable inside a function whose name is
       passed as an argument to a function.  For example, if the name of a variable is passed as the
       first argument to a function, the command **typeset -n var=$1 **(a.k.a.  **nameref  var=$1**)  inside
       the function causes references and assignments to **var **to be references and assignments to the
       variable  whose name has been passed to the function.  Note that, for this to work, the posi‐
       tional parameter must be assigned directly to the nameref as part of the declaration command,
       as in the example above; only that idiom can allow one function to access a local variable of
       another.  For instance, **typeset -n var; var=$1 **won't cross that  barrier,  nor  will  **typeset**
       **foo=$1; typeset -n var=foo**.

       If  any of the floating point attributes, **-E**, **-F**, or **-X**, or the integer attribute, **-i**, is set
       for _vname_, then the _value_ is subject to arithmetic evaluation as described below.

       Positional parameters, parameters denoted by a number, may be assigned values  with  the  **set**
       special built-in command.  Parameter **$0 **is set from argument zero when the shell is invoked.

       The character **$ **is used to introduce substitutable _parameters_.

       **${_**parameter_**}**
              The  shell reads all the characters from **${ **to the matching **} **as part of the same word
              even if it contains braces or metacharacters.  The value, if any, of the parameter  is
              substituted.   The  braces are required when _parameter_ is followed by a letter, digit,
              or underscore that is not to be interpreted as part of its  name,  when  the  variable
              name contains a **.**.  The braces are also required when a variable is subscripted unless
              it  is  part of an Arithmetic Expression or a Conditional Expression.  If _parameter_ is
              one or more digits then it is a positional parameter.  A positional parameter of  more
              than one digit must be enclosed in braces.  If _parameter_ is *** **or **@**, then all the posi‐
              tional  parameters,  starting with **$1**, are substituted (separated by a field separator
              character).  If an array _vname_ with last subscript *** @**, or for indexed arrays  of  the
              form _sub1_ **..  _**sub2_.  is used, then the value for each of the elements between _sub1_ and
              _sub2_  inclusive  (or  all elements for *** **and **@**) is substituted, separated by the first
              character of the value of **IFS**.

       **${#_**parameter_**}**
              If _parameter_ is *** **or **@**, the number of positional parameters  is  substituted.   Other‐
              wise, the length of the value of the _parameter_ is substituted.

       **${#_**vname_**[*]}**
       **${#_**vname_**[@]}**
              The number of elements in the array _vname_ is substituted.

       **${@_**vname_**}**
              Expands to the type name (See _Type_ _Variables_  below) or attributes of the variable re‐
              ferred to by _vname_.

       **${!_**vname_**}**
              Expands  to  the name of the variable referred to by _vname_.  This will be _vname_ except
              when _vname_ is a name reference.

       **${!_**vname_**[_**subscript_**]}**
              Expands to name of the subscript unless _subscript_ is *****, **@**.  or of  the  form  _sub1_  **..**
              _sub2_.   When _subscript_ is *****, the list of array subscripts for _vname_ is generated.  For
              a variable that is not an array, the value is _0_ if the variable is set.  Otherwise  it
              is  the  empty  string.   When _subscript_ is **@**, same as above, except that when used in
              double quotes, each array subscript yields a separate argument.  When _subscript_ is  of
              the  form _sub1_ **..  _**sub2_ it expands to the list of subscripts between _sub1_ and _sub2_ in‐
              clusive using the same quoting rules as **@**.

       **${!_**prefix_**@}**
       **${!_**prefix_***}**
              These both expand to the names of the variables whose names begin  with  _prefix_.   The
              expansions otherwise work like **$@ **and **$***, respectively (see under _Quoting_ below).

       **${_**parameter_**:-_**word_**}**
              If  _parameter_  is  set and has a non-empty value, then substitute its value; otherwise
              substitute _word_.

       **${_**parameter_**:=_**word_**}**
              If _parameter_ is not set or has the empty string value, then set it to _word_; the  value
              of the parameter is then substituted.  Positional parameters may not be assigned to in
              this way.

       **${_**parameter_**:?_**word_**}**
              If  _parameter_  is set and has a non-empty value, then substitute its value; otherwise,
              print _word_ and exit from the shell (if not interactive).  If _word_ is  omitted  then  a
              standard message is printed.

       **${_**parameter_**:+_**word_**}**
              If  _parameter_ is set and has a non-empty value then substitute _word_; otherwise substi‐
              tute the empty string.

       In the above, _word_ is not evaluated unless it is to be used as  the  substituted  string,  so
       that,  in the following example, **pwd **is executed only if **d **is not set or has the empty string
       value:

              print ${d:-$(pwd)}

       If the colon (**:**) is omitted from the above expressions, then the shell  only  checks  whether
       _parameter_ is set or not.

       **${_**parameter_**:_**offset_**:_**length_**}**
       **${_**parameter_**:_**offset_**}**
              Expands  to  the portion of the value of _parameter_ starting at the character (counting
              from **0**) determined by expanding _offset_ as an arithmetic expression and  consisting  of
              the  number  of  characters determined by the arithmetic expression defined by _length._
              In the second form, the remainder of the value is used.  If A negative  _offset_  counts
              backwards  from  the  end  of  _parameter_.  Note that one or more _blank_s is required in
              front of a minus sign to prevent the shell from interpreting the operator as  **:-**.   If
              _parameter_ is *** **or **@**, or is an array name indexed by *** **or **@**, then _offset_ and _length_ re‐
              fer  to  the  array  index  and number of elements respectively.  A negative _offset_ is
              taken relative to one greater than the highest subscript for indexed arrays.  The  or‐
              der for associative arrays is unspecified.

       **${_**parameter_**#_**pattern_**}**
       **${_**parameter_**##_**pattern_**}**
              If  the  shell _pattern_ matches the beginning of the value of _parameter_, then the value
              of this expansion is the value of the _parameter_ with the matched portion deleted; oth‐
              erwise the value of this _parameter_ is substituted.  In the  first  form  the  smallest
              matching  pattern  is  deleted  and in the second form the largest matching pattern is
              deleted.  When _parameter_ is **@**, *****, or an array variable with subscript **@ **or *****, the sub‐
              string operation is applied to each element in turn.

       **${_**parameter_**%_**pattern_**}**
       **${_**parameter_**%%_**pattern_**}**
              If the shell _pattern_ matches the end of the value of _parameter_, then the value of this
              expansion is the value of the _parameter_ with the matched part deleted; otherwise  sub‐
              stitute  the  value  of _parameter_.  In the first form the smallest matching pattern is
              deleted and in the second form the largest matching pattern is deleted.  When  _parame‐_
              _ter_  is  **@**,  *****, or an array variable with subscript **@ **or *****, the substring operation is
              applied to each element in turn.

       **${_**parameter_**/_**pattern_**/_**string_**}**
       **${_**parameter_**//_**pattern_**/_**string_**}**
       **${_**parameter_**/#_**pattern_**/_**string_**}**
       **${_**parameter_**/%_**pattern_**/_**string_**}**
              Expands _parameter_ and replaces the longest match of _pattern_  with  the  given  _string._
              Each  occurrence  of **\_**n_ in _string_ is replaced by the portion of _parameter_ that matches
              the _n_-th subpattern.  In the first form, only the first occurrence of _pattern_  is  re‐
              placed.   In  the second form, each match for _pattern_ is replaced by the given _string._
              The third form restricts the pattern match to the beginning of the  string  while  the
              fourth  form  restricts  the pattern match to the end of the string.  In the first and
              second forms, an empty _pattern_ never matches.  In the third and fourth forms, an empty
              _pattern_ matches the beginning or the end of the string, respectively.  When _string_  is
              empty,  the _pattern_ will be deleted and the **/ **in front of _string_ may be omitted.  When
              _parameter_ is **@**, *****, or an array variable with subscript **@ **or *****, the substitution opera‐
              tion is applied to each element in turn.  In this case, the  _string_  portion  of  _word_
              will be re-evaluated for each element.

### Shell Variables.
       The following parameters are automatically set by the shell:
              **#      **The number of positional parameters in decimal.

              **-      **Options supplied to the shell on invocation or by the **set **command.

              **?      **The  exit  status returned by the last executed command. Its meaning depends on
                     the command or function that defines it, but there are conventions  that  other
                     commands  often  depend on: zero typically means 'success' or 'true', one typi‐
                     cally means 'non-success' or 'false', and a value greater  than  one  typically
                     indicates some kind of error. Only the 8 least significant bits of **$? **(values 0
                     to  255)  are  preserved when the exit status is passed on to a parent process,
                     but within the same (sub)shell environment, it is a signed integer value with a
                     range of possible values as shown by the commands **getconf INT_MIN  **and  **getconf**
                     **INT_MAX**.  Shell functions that run in the current environment may return status
                     values in this range.

              **$      **The process ID of the main shell process. Note that this value will not  change
                     in  a  subshell,  even  if  the subshell runs in a different process.  See also
                     **.sh.pid**.

              **_      **Initially, the value of **_ **is an absolute pathname of the shell or script  being
                     executed  as  passed  in the _environment_.  Subsequently it is assigned the last
                     argument of the previous command.  This parameter is not set for commands which
                     are asynchronous.  This parameter is also used to hold the name of the matching
                     **MAIL **file when checking for mail.  While defining  a  compound  variable  or  a
                     type, **_ **is initialized as a reference to the compound variable or type.  When a
                     discipline function is invoked, **_ **is initialized as a reference to the variable
                     associated  with the call to this function.  Finally when **_ **is used as the name
                     of the first variable of a type definition, the new type is  derived  from  the
                     type of the first variable. (See _Type_ _Variables_  below.)

              **!      **The  process  ID  of the last background command invoked or the most recent job
                     put in the background with the **bg **built-in command.

              **.sh.command**
                     When processing a **DEBUG **trap, this variable contains the current  command  line
                     that  is about to run.  The value is in the same format as the output generated
                     by the **xtrace **option (minus the preceding **PS4 **prompt).

              **.sh.edchar**
                     This variable contains the value of the  keyboard  character  (or  sequence  of
                     characters  if  the first character is an ESC, ASCII **033**) that has been entered
                     when processing a **KEYBD **trap (see _Key_ _Bindings_ below).  If the value is changed
                     as part of the trap action, then the new value replaces the  key  (or  key  se‐
                     quence) that caused the trap.

              **.sh.edcol**
                     The character position of the cursor at the time of the most recent **KEYBD **trap.

              **.sh.edmode**
                     Upon  executing  a  **KEYBD **trap action, the value of this variable is set to the
                     ESC control character if the shell is in **vi **input mode (See _Vi_  _Editing_  _Mode_
                     below), or to the empty string value otherwise.

              **.sh.edtext**
                     The  characters  in the input buffer at the time of the most recent **KEYBD **trap.
                     The variable is unset when not processing a **KEYBD **trap.

              **.sh.file**
                     The pathname of the file that contains the current command.

              **.sh.fun**
                     The name of the current function that is being executed.

              **.sh.level**
                     Set to the current call depth of functions and  dot  scripts.   Normally,  this
                     variable  is  read-only,  but  while  executing  a **DEBUG **trap, its value may be
                     changed to switch the current function scope to that of the specified level for
                     the duration of the trap run, making it possible to access a parent  scope  for
                     debugging  purposes.   When trap execution ends, the variable and the scope are
                     restored.  It is an error to assign a value lower than 0 (the global scope)  or
                     higher than the current call depth.

              **.sh.lineno**
                     Set during a **DEBUG **trap to the line number for the caller of each function.

              **.sh.match**
                     Whenever  a  match is found in a pattern matching operation using either the **[[**
                     compound command (see _Conditional_ _Expressions_ below) or the expansions  **${_**para‐_
                     _meter_**#_**pattern_**}**,  **${_**parameter_**%_**pattern_**}**,  **${_**parameter_**/_**pattern_**/_**string_**}**,  or one of
                     their variants (see _Parameter_ _Expansion_ above), the match  and  its  subpattern
                     matches are stored in this indexed array, overwriting its previous values.  The
                     **0**-th  element  stores  the  complete match and the _i_-th element stores the _i_-th
                     submatch.  For **//**, the array is two-dimensional, with the first subscript indi‐
                     cating the most recent match and subpattern match, and the second subscript in‐
                     dicating which match with **0 **representing the  first  match.   If  no  match  is
                     found,  **.sh.match **is not reset or modified.  Note that even matching operations
                     performed on the **.sh.match **variable itself will overwrite  it  upon  finding  a
                     match.

              **.sh.math**
                     Used  for  defining  arithmetic functions (see _Arithmetic_ _Evaluation_ below) and
                     stores the list of user defined arithmetic functions.

              **.sh.name**
                     Set to the name of the variable at the time that a discipline function  is  in‐
                     voked.

              **.sh.subscript**
                     Set  to  the name subscript of the variable at the time that a discipline func‐
                     tion is invoked.

              **.sh.subshell**
                     The current depth for subshells and command substitution.

              **.sh.pid**
                     Set to the process ID of the current shell process.  Unlike **$$**, this is updated
                     in a subshell when it forks into a new process.  Note that a  virtual  subshell
                     may have to fork mid-execution due to various system- and implementation-depen‐
                     dent  requirements,  so  the  value should not be counted on to remain the same
                     from one command to the next.  If a persistent process ID  is  required  for  a
                     subshell,  it  must be ensured it is running in its own process first.  Any at‐
                     tempt to set a process limit using the **ulimit **built-in command, such as  **ulimit**
                     **-t  unlimited  2>/dev/null**,  is  a  reliable  way to make a subshell fork if it
                     hasn't already.

              **.sh.ppid**
                     Set to the process ID of the parent  of  the  current  shell  process.   Unlike
                     **$PPID**,  this  is  updated  in a subshell when it forks into a new process.  The
                     same note as for **.sh.pid **applies.

              **.sh.value**
                     Set to the value of the variable at the time that the **set **or **append  **discipline
                     function  is  invoked.  When a user defined arithmetic function is invoked, the
                     value of **.sh.value **is saved and **.sh.value  **is  set  to  long  double  precision
                     floating point.  **.sh.value **is restored when the function returns.

              **.sh.version**
                     Set to a value that identifies the version of this shell.

              **COLUMNS**
                     Width  of the terminal window in character positions.  Updated automatically at
                     initialization and on receiving a **SIGWINCH **signal.  The shell uses the value to
                     define the width of the edit window for the shell edit modes and  for  printing
                     **select **lists.

              **KSH_VERSION**
                     A name reference to **.sh.version**.

              **LINENO **The current line number within the script or function being executed.

              **LINES  **Height  of  the terminal window in lines.  Updated automatically at initializa‐
                     tion and on receiving a **SIGWINCH **signal.  The shell uses the value to determine
                     the column length for printing **select **lists: they are printed vertically  until
                     about two thirds of **LINES **lines are filled.

              **OLDPWD **The previous working directory set by the **cd **command.

              **OPTARG **The  value  of  the last option argument processed by the **getopts **built-in com‐
                     mand.

              **OPTIND **The index of the last option argument processed by the  **getopts  **built-in  com‐
                     mand.

              **PPID   **The  process  ID of the parent of the main shell process.  Note that this value
                     will not change in a subshell,  even  if  the  subshell  runs  in  a  different
                     process.  See also **.sh.ppid**.

              **PWD    **The present working directory set by the **cd **command.

              **RANDOM **Each  time this variable is referenced, a random integer, uniformly distributed
                     between 0 and 32767, is generated.  The sequence of random numbers can be  ini‐
                     tialized by assigning a numeric value to **RANDOM**.

              **REPLY  **This  variable  is set by the **select **statement and by the **read **built-in command
                     when no arguments are supplied.

              **SECONDS**
                     Each time this variable is referenced, the number of seconds since shell  invo‐
                     cation  is  returned.  If this variable is assigned a value, then the value re‐
                     turned upon reference will be the value that was assigned plus  the  number  of
                     seconds since the assignment.

              **SHLVL  **An integer variable that is incremented and exported each time the shell is in‐
                     voked.  If **SHLVL **is not in the environment when the shell is invoked, it is set
                     to 1.

       The following variables are used by the shell:
              **CDPATH **The search path for the **cd **command.

              **EDITOR **If  the  **VISUAL **variable is not set, the value of this variable will be checked
                     for certain patterns and the corresponding editing option will be turned on  as
                     described with **VISUAL **below.

              **ENV    **If  this  variable  is set, then parameter expansion, command substitution, and
                     arithmetic expansion are performed on the value to generate the pathname of the
                     script that will be executed when the shell is invoked interactively (see _Invo‐_
                     _cation_ below).  This file is typically used for **alias **and **function **definitions.
                     The default value is **$HOME/.kshrc**.  On  systems  that  support  a  system  wide
                     **/etc/ksh.kshrc  **initialization file, if the filename generated by the expansion
                     of **ENV **begins with **/./ **or **././ **the system wide initialization file will not  be
                     executed.

              **FCEDIT **Obsolete  name for the default editor name for the **hist **command.  **FCEDIT **is not
                     used when **HISTEDIT **is set.

              **FIGNORE**
                     A pattern that defines the set of filenames that will be ignored when  perform‐
                     ing filename matching.

              **FPATH  **The  search  path  for  function definitions.  The directories in this path are
                     searched for a file with the same name as the function or command when a  func‐
                     tion  with  the **-u **attribute is referenced and when a command is not found.  If
                     an executable file with the name of that command is found, then it is read  and
                     executed  in  the current environment.  Unlike **PATH**, the current directory must
                     be represented explicitly by **.  **rather than by adjacent **: **characters or  a  be‐
                     ginning or ending **:**.

              **histchars**
                     This  variable can be used to specify up to three ASCII characters that control
                     history expansion (see _History_ _Expansion_ below).  The first (default:  **!**)  sig‐
                     nals  the  start  of  a history expansion.  The second (default: **^**) is used for
                     short-form substitutions.  The third (default: **#**),  when  found  as  the  first
                     character of a word, causes history expansion to be skipped for the rest of the
                     words  on  the  line.  Multi-byte characters (e.g. UTF-8) are not supported and
                     produce undefined results.

              **HISTCMD**
                     Number of the current command in the history file.

              **HISTEDIT**
                     Name for the default editor name for the **hist **command.

              **HISTFILE**
                     If this variable is set when the shell is invoked, then the value is the  path‐
                     name  of  the  file that will be used to store the command history (see _Command_
                     _Re-entry_ below).

              **HISTSIZE**
                     If this variable is set when the shell is invoked, then the  number  of  previ‐
                     ously  entered  commands that are accessible by this shell will be greater than
                     or equal to this number.  The default is 512.

              **HOME   **The default argument (home directory) for the **cd **command.

              **IFS    **Internal field separators, normally **space**, **tab**, and **new-line **that are  used  to
                     separate the results of command substitution or parameter expansion and to sep‐
                     arate  fields  with  the built-in command **read**.  The first character of the **IFS**
                     variable is used to separate arguments for the **"$*" **expansion (see _Quoting_  be‐
                     low).   Each  single  occurrence  of an **IFS **character in the string to be split
                     that is not in the _isspace_ character class, and any adjacent characters in  **IFS**
                     that  are in the _isspace_ character class, delimit a field.  One or more charac‐
                     ters in **IFS **that belong to the _isspace_ character class delimit a field.  In ad‐
                     dition, if the same _isspace_ character appears consecutively inside **IFS **and  the
                     **posix  **shell  option  is not on, this character is treated as if it were not in
                     the _isspace_ class - for example, if **IFS **consists of two  **tab  **characters,  then
                     two adjacent **tab **characters delimit an empty field.

              **JOBMAX **This  variable  defines the maximum number running background jobs that can run
                     at a time.  When this limit is reached, the shell will wait for a job  to  com‐
                     plete before starting a new job.

              **LANG   **This  variable determines the locale category for any category not specifically
                     selected with a variable starting with **LC_ **or **LANG**.

              **LC_ALL **This variable overrides the value of the **LANG **variable and any other **LC_  **vari‐
                     able.

              **LC_COLLATE**
                     This  variable  determines the locale category for character collation informa‐
                     tion.

              **LC_CTYPE**
                     This variable determines the locale category for character handling  functions.
                     It  determines  the character classes for pattern matching (see _Pathname_ _Expan‐_
                     _sion_ below).

              **LC_NUMERIC**
                     This variable determines the locale category for the decimal point character.

              **MAIL   **If this variable is set to the name of a mail file _and_ the **MAILPATH **variable is
                     not set, then the shell informs the user of arrival of mail  in  the  specified
                     file.

              **MAILCHECK**
                     This variable specifies how often (in seconds) the shell will check for changes
                     in  the modification time of any of the files specified by the **MAILPATH **or **MAIL**
                     variables.  The default value is 600 seconds.  When the time  has  elapsed  the
                     shell will check before issuing the next prompt.

              **MAILPATH**
                     A  colon ( **: **) separated list of file names.  If this variable is set, then the
                     shell informs the user of any modifications to the specified  files  that  have
                     occurred  within the last **MAILCHECK **seconds.  Each file name can be followed by
                     a **?  **and a message that will be printed.  The message  will  undergo  parameter
                     expansion,  command substitution, and arithmetic expansion with the variable **$_**
                     defined as the name of the file that has changed.  The default message  is  _you_
                     _have_ _mail_ _in_ _$_._

              **PATH   **The  search  path  for commands (see _Execution_ below).  The user may not change
                     **PATH **if executing under **rksh **(except in **.profile).**

              **PS1    **Every time a new command line is started on an interactive shell, the value  of
                     this  variable  is expanded to resolve backslash escaping, parameter expansion,
                     command substitution, and arithmetic expansion.  The result defines the primary
                     prompt string for that command line.  The default is ``**$ **''.  The  character  **!**
                     in the primary prompt string is replaced by the _command_ number (see _Command_ _Re-_
                     _entry_  below).   Two successive occurrences of **!  **will produce a single **!  **when
                     the prompt string is printed.  Note that any terminal escape sequences used  in
                     the **PS1 **prompt thus need every instance of **!  **in them to be changed to **!!**.

              **PS2    **Secondary prompt string, by default ``**> **''.

              **PS3    **Selection prompt string used within a **select **loop, by default ``**#? **''.

              **PS4    **The  value  of this variable is expanded for parameter evaluation, command sub‐
                     stitution, and arithmetic expansion and precedes  each  line  of  an  execution
                     trace.   By  default, **PS4 **is ``**+ **''.  In addition when **PS4 **is unset, the execu‐
                     tion trace prompt is also ``**+ **''.

              **SHELL  **The pathname of the _shell_ is kept in the environment.  At  invocation,  if  the
                     basename  of  this  variable  is **rsh**, **rksh**, or **krsh**, then the shell becomes re‐
                     stricted.

              **TIMEFORMAT**
                     The value of this parameter is used as a format string specifying how the  tim‐
                     ing  information  for  pipelines prefixed with the **time **reserved word should be
                     displayed.  The **% **character introduces a format sequence that is expanded to  a
                     time  value  or other information.  The format sequences and their meanings are
                     as follows.
                     **%%        **A literal **%**.
                     **%[_**p_**][l]R  **The elapsed time in seconds.
                     **%[_**p_**][l]U  **The number of CPU seconds spent in user mode.
                     **%[_**p_**][l]S  **The number of CPU seconds spent in system mode.
                     **%P        **The CPU percentage, computed as (U + S) / R.

                     The brackets denote optional portions.  The optional _p_ is  a  digit  specifying
                     the  _precision_, the number of fractional digits after a decimal point.  A value
                     of 0 causes no decimal point or fraction to be output.  At  most  three  places
                     after  the  decimal  point  can  be  displayed;  values of _p_ greater than 3 are
                     treated as 3.  If _p_ is not specified, the value 3 is used.

                     The optional **l **specifies a longer format, including hours if greater than zero,
                     minutes, and seconds of the form  _HH_h_MM_m_SS_._FF_s.   The  value  of  _p_  determines
                     whether  or  not  the fraction is included.  Seconds are zero-padded unless the
                     **posix **shell option is on.

                     All other characters are output without change and a trailing newline is added.
                     If      the      variable      is      unset,      the      default      value,
                     **$'\nreal\t%2lR\nuser\t%2lU\nsys\t%2lS'**,  is  used.   If  the value is empty, no
                     timing information is displayed.

              **TMOUT  **Terminal read timeout. If set to a value greater than zero, the  **read  **built-in
                     command and the **select **compound command time out after **TMOUT **seconds when input
                     is from a terminal.  An interactive shell will issue a warning and allow for an
                     extra  60  second  timeout grace period before terminating if a line is not en‐
                     tered within the prescribed number of seconds while reading  from  a  terminal.
                     (Note  that the shell can be compiled with a maximum bound for this value which
                     cannot be exceeded.)

              **VISUAL **The value of this variable is scanned when the shell is  invoked  and  whenever
                     its value is changed; if it is found to match certain patterns, the correspond‐
                     ing  line  editor  (see  _In-line_  _Editing_  _Options_  below) is activated.  If it
                     matches the pattern _*[Vv][Ii]*_, the **vi **option is turned on; else if it  matches
                     the pattern _*gmacs*_, the **gmacs **option is turned on; else if it matches the pat‐
                     tern  _*macs*_,  the  **emacs  **option is turned on.  If none of the patterns match,
                     **emacs **is turned on by default upon initializing an interactive shell.   If  the
                     value  is  changed by assignment and none of the patterns match, no options are
                     changed.  The value of **VISUAL **overrides the value of **EDITOR.**

       The shell gives default values to **PATH**, **PS1**, **PS2**, **PS3**, **PS4**, **MAILCHECK**, **FCEDIT**, **TMOUT **and **IFS**,
       while **HOME**, **SHELL**, **ENV**, **histchars**, and **MAIL **are not set at all by the shell (although **HOME _**is_
       set by [_login_(1)](https://www.chedong.com/phpMan.php/man/login/1/markdown)).  On some systems **MAIL **and **SHELL **are also set by [_login_(1)](https://www.chedong.com/phpMan.php/man/login/1/markdown).

### Field Splitting.
       After parameter expansion and command substitution, the results of substitutions are  scanned
       for  the field separator characters (those found in **IFS**) and split into distinct fields where
       such characters are found.  Explicit empty fields (**"" **or **′′**) are  retained.   Implicit  empty
       fields  (those  resulting  from _parameters_ that are unset or have empty string values or from
       command substitutions yielding the empty string, and that are not quoted  with  **""**)  are  re‐
       moved.

### Brace Expansion.
       If  the  **braceexpand  **(**-B**) option is set then each _word_, as well as any fields resulting from
       _field_ _splitting_ (see above), are checked to see if they contain one or more of the brace pat‐
       terns **{*,*}**, **{_**l1_**.._**l2_**} **, **{_**n1_**.._**n2_**} **, **{_**n1_**.._**n2_**% _**fmt_**} **, **{_**n1_**.._**n2_ **.._**n3_**} **,  or  **{_**n1_**.._**n2_  **.._**n3_**%_**fmt_**}  **,
       where  ***  **represents any character, _l1_,_l2_ are letters and _n1_,_n2_,_n3_ are signed numbers and _fmt_
       is a format specified as used by **printf**.  In each case, fields are created by prepending  the
       characters  before the **{ **and appending the characters after the **} **to each of the strings gen‐
       erated by the characters between the **{ **and **}**.  The resulting fields are  checked  to  see  if
       they have any brace patterns.

       In  the  first form, a field is created for each string between **{ **and **,**, between **, **and **,**, and
       between **, **and **}**.  The string represented by *** **can contain embedded matching **{ **and  **}  **without
       quoting.  Otherwise, each **{ **and **} **with *** **must be quoted.

       In  the  seconds form, _l1_ and _l2_ must both be either upper case or both be lower case charac‐
       ters in the C locale.  In this case a field is created for each character from _l1_ through _l2_.

       In the remaining forms, a field is created for each number starting at _n1_ and continuing  un‐
       til it reaches _n2_ incrementing _n1_ by _n3_.  The cases where _n3_ is not specified behave as if _n3_
       where **1 **if _n1_**<=_**n2_ and **-1 **otherwise.  If forms which specify **%_**fmt_ any format flags, widths and
       precisions  can  be specified and _fmt_ can end in any of the specifiers **cdiouxX**.  For example,
       **{a,z}{1..5..3%02d}{b..c}x **expands to the 8 fields, **a01bx**, **a01cx**, **a04bx**, **a04cx**, **z01bx**,  **z01cx**,
       **z04bx **and **z04cx**.

### Pathname Expansion.
       This  is also known as _globbing_ or sometimes _filename_ _generation_.  Pathname expansion is dis‐
       abled if the **-f **a.k.a.  **--noglob **shell option is on.  Otherwise, if certain  special  charac‐
       ters  are  found in a _word_ or in a field resulting from _field_ _splitting_ (see above), then the
       word or field is regarded as a _pattern_.  Each literal _word_ is scanned for the  characters  *****,
       **?**, **[**, and **(**, but fields resulting from _field_ _splitting_ are scanned only for the characters *****,
       **?**, and **[ **for compatibility reasons (in which case the **( **character is not special and any pat‐
       tern syntax described below that involves parentheses does not apply).

       Each file name component that contains a recognized pattern character is replaced with a lex‐
       icographically  sorted set of names that matches the pattern from that directory.  If no file
       name is found that matches the pattern, then that component of the filename is left unchanged
       unless the pattern is prefixed with **∼(N)**, in which case it is  removed  as  described  below.
       The  special traversal names **.  **and **..  **are never matched.  If **FIGNORE **is set, then each file
       name component that matches the pattern defined by the value of **FIGNORE **is ignored when  gen‐
       erating the matching filenames.  If **FIGNORE **is not set, the character **.  **at the start of each
       file  name  component will be ignored unless the first character of the pattern corresponding
       to this component is the character **.  **itself.  Note that, for uses of pattern matching  other
       than pathname expansion, the **/ **and **.  **are not treated specially.

              ***      **Matches  any string, including the empty string.  When used for filename expan‐
                     sion, if the **globstar **option is on, an isolated pattern of two adjacent *****s will
                     match all files and zero or more directories and subdirectories.   If  followed
                     by a **/ **then only directories and subdirectories will match.
              **?      **Matches any single character.
              **[**...**]  **Matches  any one of the enclosed characters.  A pair of characters separated by
                     **- **matches any character lexically between the pair, inclusive.   If  the  first
                     character following the opening **[ **is a **!  **or **^**, then any character not enclosed
                     is  matched.   A  **-  **can  be included in the character set by putting it as the
                     first or last character.
                     Within **[ **and **]**, character classes can be specified with the  syntax  **[:_**class_**:]**,
                     where  _class_  is  one  of  the following classes defined in the ANSI C standard
                     (note that **word **is equivalent to **alnum **plus the character **_**):
                     **alnum alpha blank cntrl digit graph lower print punct space upper word xdigit**
                     Within **[ **and **]**, an equivalence class can be specified  with  the  syntax  **[=_**c_**=]**
                     which matches all characters with the same primary collation weight (as defined
                     by the current locale) as the character _c_.  Within **[ **and **]**, **[._**symbol_**.]  **matches
                     the collating symbol _symbol_.

       A  _pattern-list_ is a list of one or more patterns separated from each other with a **& **or **|**.  A
       **& **signifies that all patterns must be matched whereas **| **requires that  only  one  pattern  be
       matched.  Composite patterns can be formed with one or more of the following subpatterns:
              **?(_**pattern-list_**)**
                     Optionally matches any one of the given patterns.
              ***(_**pattern-list_**)**
                     Matches zero or more occurrences of the given patterns.
              **+(_**pattern-list_**)**
                     Matches one or more occurrences of the given patterns.
              **{_**n_**}**(_pattern-list_**)**
                     Matches _n_ occurrences of the given patterns.
              **{_**m_**,_**n_**}**(_pattern-list_**)**
                     Matches from _m_ to _n_ occurrences of the given patterns.  If _m_ is omitted, **0 **will
                     be used.  If _n_ is omitted, at least _m_ occurrences will be matched.
              **@(_**pattern-list_**)**
                     Matches exactly one of the given patterns.
              **!(_**pattern-list_**)**
                     Matches anything except one of the given patterns.

       By default, each pattern or subpattern will match the longest string possible consistent with
       generating  the  longest overall match.  If more than one match is possible, the one starting
       closest to the beginning of the string will be chosen.   However, for each of the above  com‐
       pound  patterns,  a  **-  **can  be inserted in front of the **( **to cause the shortest match to the
       specified _pattern-list_ to be used.

       When _pattern-list_ is contained within parentheses, the backslash character **\ **is treated  spe‐
       cially  even when inside a character class.   All ANSI C character escapes are recognized and
       match the specified character.  In addition, the following escape sequences are recognized:
              **\d     **Matches any character in the **digit **class.
              **\D     **Matches any character not in the **digit **class.
              **\s     **Matches any character in the **space **class.
              **\S     **Matches any character not in the **space **class.
              **\w     **Matches any character in the **word **class.
              **\W     **Matches any character not in the **word **class.

       A pattern of the form **%(_**pattern-pair_(s)**) **is a subpattern that can be  used  to  match  nested
       character  expressions.   Each _pattern-pair_ is a two-character sequence that cannot contain **&**
       or **|**.  The first _pattern-pair_ specifies the starting and ending  characters  for  the  match.
       Each subsequent _pattern-pair_ represents the beginning and ending characters of a nested group
       that  will be skipped over when counting starting and ending character matches.  The behavior
       is unspecified when the first character of a _pattern-pair_ is  alphanumeric,  except  for  the
       following:
              **D      **Causes  the  ending  character to terminate the search for this pattern without
                     finding a match.
              **E      **Causes the ending character to be interpreted as an escape character.
              **L      **Causes the ending character to be interpreted as a quote character, causing all
                     characters to be ignored when looking for a match.
              **Q      **Causes the ending character to be interpreted as a quote character, causing all
                     characters other than any escape character to be ignored  when  looking  for  a
                     match.

       Thus, **%({}Q"E\)**, matches characters starting at **{ **until the matching **} **is found, not counting
       any  **{  **or  **}  **that  is  inside a double-quoted string or preceded by the escape character **\**.
       Without the **{}**, this pattern matches any C language string.

       Each subpattern in a composite pattern is numbered, starting at 1, by the location of  the  **(**
       within  the  pattern.   The sequence **\_**n_, where _n_ is a single digit and **\_**n_ comes after the _n_th
       subpattern, matches the same string as the subpattern itself.

       Finally, a pattern can contain subpatterns of the form **∼(_**options_**:_**pattern-list_**)**, where  either
       _options_  or  **:_**pattern-list_ can be omitted.  Unlike the other compound patterns, these subpat‐
       terns are not counted in the numbered subpatterns.  **:_**pattern-list_ must be omitted for options
       **E**, **F**, **G**, **N**, **P**, **V**, and **X **below.  If _options_ is present, it can consist of one or more  of  the
       following:
              **+      **Enable the following options.  This is the default.
              **-      **Disable the following options.
              **E      **The  remainder  of the pattern uses extended regular expression syntax like the
                     **-E **option of the [_grep_(1)](https://www.chedong.com/phpMan.php/man/grep/1/markdown) command.
              **F      **The remainder of the pattern uses the fixed pattern syntax of the **-F **option  of
                     the [_grep_(1)](https://www.chedong.com/phpMan.php/man/grep/1/markdown) command.
              **G      **The  remainder  of  the  pattern  uses basic regular expression syntax like the
                     [_grep_(1)](https://www.chedong.com/phpMan.php/man/grep/1/markdown) command without options.
              **K      **The remainder of the pattern uses shell pattern syntax.  This is the default.
              **N      **When it is the first letter and is used with pathname expansion, and no matches
                     occur, the file pattern expands to the empty string instead of remaining  unex‐
                     panded.  Otherwise, it is ignored.
              **X      **The  remainder of the pattern uses augmented regular expression syntax like the
                     **-X **option of the AT&T AST version of the [_grep_(1)](https://www.chedong.com/phpMan.php/man/grep/1/markdown) command.
              **P      **The remainder of the pattern uses [_perl_(1)](https://www.chedong.com/phpMan.php/man/perl/1/markdown) regular expression syntax.   Not  all
                     perl regular expression syntax is currently implemented.
              **V      **The remainder of the pattern uses System V regular expression syntax.
              **i      **Always  treat  the  match as case-insensitive, regardless of the **globcasedetect**
                     shell option.
              **g      **File the longest match (greedy).  This is the default.
              **l      **Left-anchor the pattern.  This is the default for **K **style patterns.
              **r      **Right-anchor the pattern.  This is the default for **K **style patterns.

       If both _options_ and **:_**pattern-list_ are specified, then the options  apply  only  to   _pattern-_
       _list_.   Otherwise,  these  options  remain  in effect until they are disabled by a subsequent
       **∼(_**..._**) **or at the end of the subpattern containing **∼(_**..._**)**.

### Quoting.
       Each of the _metacharacters_ listed earlier (see _Definitions_ above) has a  special  meaning  to
       the  shell  and causes termination of a word unless quoted.  A character may be _quoted_ (i.e.,
       made to stand for itself) by preceding it with a **\**.  The  pair  **\new-line  **is  removed.   All
       characters enclosed between a pair of single quote marks (**′′**) that is not preceded by a **$ **are
       quoted.   A single quote cannot appear within the single quotes.  A single quoted string pre‐
       ceded by an unquoted **$ **is processed as an ANSI C string except for the following:
              **\0     **Causes the remainder of the string to be ignored.
              **\E     **Equivalent to the escape character (ASCII **033**),
              **\e     **Equivalent to the escape character (ASCII **033**),
              **\c_**x_    Expands to the character control-_x_.
              **\C[._**name_**.]**
                     Expands to the collating element _name_.

       Inside double quote marks (**""**), parameter and command substitution occur  and  **\  **quotes  the
       characters **\**, **`**, **"**, and **$**.  A **$ **in front of a double quoted string will be ignored in the "C"
       or "POSIX" locale, and may cause the string to be replaced by a locale specific string other‐
       wise.   The  meaning of **$* **and **$@ **is identical when not quoted or when used as a variable as‐
       signment value or as a file name.  However, when used as a command argument, **"$*" **is  equiva‐
       lent  to  **"$1_**d_**$2_**d_...**"**,  where  _d_  is the first character of the **IFS **variable, whereas **"$@" **is
       equivalent to **"$1" "$2" **....  Inside grave quote marks (**``**), **\ **quotes the  characters  **\**,  **`**,
       and **$**.  If the grave quotes occur within double quotes, then **\ **also quotes the character **"**.

       The  special  meaning of reserved words or aliases can be removed by quoting any character of
       the reserved word.  The recognition of function names or built-in command names listed  below
       cannot be altered by quoting them.

### Arithmetic Evaluation.
       The  shell performs arithmetic evaluation for arithmetic expansion, to evaluate an arithmetic
       command, to evaluate an indexed array subscript, and to evaluate arguments  to  the  built-in
       commands  **shift  **and **let **as well as arguments to numeric format specifiers given to **print -f**
       and **printf**.  Evaluations are performed using double precision floating  point  arithmetic  or
       long double precision floating point for systems that provide this data type.  Floating point
       constants follow the ANSI C programming language floating point conventions.  The case-insen‐
       sitive  floating  point constants **NaN **and **Inf **can be used to represent "not a number" and in‐
       finity respectively, unless the **posix **shell option is on.  Integer constants follow the  ANSI
       C  programming language integer constant conventions although only single byte character con‐
       stants are recognized and character casts are not recognized.  In addition constants  can  be
       of  the  form [_base_**#**]_n_ where _base_ is a decimal number between two and sixty-four representing
       the arithmetic base and _n_ is a number in that base.  The digits above 9  are  represented  by
       the  lower  case letters, the upper case letters, **@**, and **_ **respectively.  For bases less than
       or equal to 36, upper and lower case characters can be used interchangeably.

       An arithmetic expression uses the same syntax, precedence, and associativity of expression as
       the C language.  All the C language operators that apply to floating point quantities can  be
       used.  In addition, the operator **** **can be used for exponentiation.  It has higher precedence
       than  multiplication  and  is left associative.  In addition, when the value of an arithmetic
       variable or subexpression can be represented as a long integer, all C language integer arith‐
       metic operations can be performed.  Variables can be referenced by name within an  arithmetic
       expression  without using the parameter expansion syntax.  When a variable is referenced, its
       value is evaluated as an arithmetic expression.

       Any of the following math library functions that are in the C math library can be used within
       an arithmetic expression:

### abs acos acosh asin asinh atan atan2 atanh cbrt ceil copysign cos cosh  erf  erfc  exp  exp10
### exp2 expm1 fabs fdim finite float floor fma fmax fmin fmod fpclass fpclassify hypot ilogb int
### isfinite isgreater isgreaterequal isinf isinfinite isless islessequal islessgreater isnan is‐
### normal  issubnormal  isunordered iszero j0 j1 jn ldexp lgamma log log10 log1p log2 logb near‐
### byint nextafter nexttoward pow remainder rint round scalb scalbn signbit sin  sinh  sqrt  tan
### tanh tgamma trunc y0 y1 yn

       In  addition,  arithmetic  functions  can be defined as shell functions with a variant of the
       **function _**name_ syntax,

       **function .sh.math._**name_ _ident_ ... **{ _**list_ **;}**
              where _name_ is the function name used in the arithmetic expression and each identifier,
              _ident_ is a name reference to the long double precision floating point  argument.   The
              value  of **.sh.value **when the function returns is the value of this function.  User de‐
              fined functions can take up to 3 arguments and override C math library functions.

       An internal representation of a _variable_ as a double precision floating point can  be  speci‐
       fied  with the **-E **[_n_], **-F **[_n_], or **-X **[_n_] option of the **typeset **special built-in command.  The
### -E 
       it  is  expanded.   The optional option argument _n_ defines the number of significant figures.
       The **-F **option causes the expansion to be represented as a floating decimal number when it  is
       expanded.   The  **-X **option causes the expansion to be represented using the **%a **format defined
       by ISO C-99.  The optional option argument _n_ defines the number of places after  the  decimal
       (or radix) point in this case.

       An  internal  integer representation of a _variable_ can be specified with the **-i **[_n_] option of
       the **typeset **special built-in command.  The optional option argument _n_ specifies an arithmetic
       base to be used when expanding the variable.  If you do not specify an arithmetic base,  base
       10 will be used.

       Arithmetic evaluation is performed on the value of each assignment to a variable with the **-E**,
### -F -X -i 
       integer causes the fractional part to be truncated.

### Prompting.
       When used interactively, the shell prompts with the value of **PS1 **after expanding it for para‐
       meter expansion, command substitution, and arithmetic expansion, before  reading  a  command.
       In  addition,  each  single **!  **in the prompt is replaced by the command number.  A **!!  **is re‐
       quired to place **!  **in the prompt.  If at any time a new-line is typed and  further  input  is
       needed to complete a command, then the secondary prompt (i.e., the value of **PS2**) is issued.

### Conditional Expressions.
       A _conditional_ _expression_ is used with the **[[ **compound command to test attributes of files and
       to  compare  strings.   Field splitting and pathname expansion are not performed on the words
       between **[[ **and **]]**.  Each expression can be constructed from one  or  more  of  the  following
       unary or binary expressions:
              _string_ Same as **-n _**string_ below.
              **-a _**file_
                     Same as **-e **below.  This is obsolete.
              **-b _**file_
                     True if _file_ exists and is a block special file.
              **-c _**file_
                     True if _file_ exists and is a character special file.
              **-d _**file_
                     True if _file_ exists and is a directory.
              **-e _**file_
                     True if _file_ exists.
              **-f _**file_
                     True if _file_ exists and is an ordinary file.
              **-g _**file_
                     True if _file_ exists and it has its setgid bit set.
              **-k _**file_
                     True if _file_ exists and it has its sticky bit set.
              **-n _**string_
                     True if length of _string_ is non-zero.
              **-o ?_**option_
                     True if option named _option_ is a valid option name.
              **-o _**option_
                     True if option named _option_ is on.
              **-p _**file_
                     True if _file_ exists and is a fifo special file or a pipe.
              **-r _**file_
                     True if _file_ exists and is readable by current process.
              **-s _**file_
                     True if _file_ exists and has size greater than zero.
              **-t _**fildes_
                     True  if  file  descriptor number _fildes_ is open and associated with a terminal
                     device.
              **-u _**file_
                     True if _file_ exists and it has its setuid bit set.
              **-v _**name_
                     True if variable _name_ is a valid variable name and is set.
              **-w _**file_
                     True if _file_ exists and is writable by current process.
              **-x _**file_
                     True if _file_ exists and is executable by current process.  If _file_  exists  and
                     is  a  directory,  then true if the current process has permission to search in
                     the directory.
              **-z _**string_
                     True if length of _string_ is zero.
              **-L _**file_
                     True if _file_ exists and is a symbolic link.
              **-h _**file_
                     True if _file_ exists and is a symbolic link.
              **-N _**file_
                     True if _file_ exists and the modification time is greater than the  last  access
                     time.
              **-O _**file_
                     True if _file_ exists and is owned by the effective user ID of this process.
              **-G _**file_
                     True  if  _file_  exists  and  its  group  matches the effective group ID of this
                     process.
              **-R _**name_
                     True if variable _name_ is a name reference.
              **-S _**file_
                     True if _file_ exists and is a socket.
              _file1_ **-nt _**file2_
                     True if _file1_ exists and _file2_ does not, or _file1_ is newer than _file2_.
              _file1_ **-ot _**file2_
                     True if _file2_ exists and _file1_ does not, or _file1_ is older than _file2_.
              _file1_ **-ef _**file2_
                     True if _file1_ and _file2_ exist and refer to the same file.
              _string_ **== _**pattern_
                     True if _string_ matches _pattern_.  Any part of _pattern_ can be quoted to cause  it
                     to be matched as a string.  With a successful match to a pattern, the **.sh.match**
                     array variable will contain the match and subpattern matches.
              _string_ **= _**pattern_
                     Same as **== **above, but is obsolete.
              _string_ **!= _**pattern_
                     True if _string_ does not match _pattern_.  When the _string_ matches the _pattern_ the
                     **.sh.match **array variable will contain the match and subpattern matches.
              _string_ **=∼ _**ere_
                     True if _string_ matches the pattern **∼(E)_**ere_ where _ere_ is an extended regular ex‐
                     pression.
              _string1_ **< _**string2_
                     True if _string1_ comes before _string2_ based on ASCII value of their characters.
              _string1_ **> _**string2_
                     True if _string1_ comes after _string2_ based on ASCII value of their characters.

       The following obsolete arithmetic comparisons are also permitted:
              _exp1_ **-eq _**exp2_
                     True if _exp1_ is equal to _exp2_.
              _exp1_ **-ne _**exp2_
                     True if _exp1_ is not equal to _exp2_.
              _exp1_ **-lt _**exp2_
                     True if _exp1_ is less than _exp2_.
              _exp1_ **-gt _**exp2_
                     True if _exp1_ is greater than _exp2_.
              _exp1_ **-le _**exp2_
                     True if _exp1_ is less than or equal to _exp2_.
              _exp1_ **-ge _**exp2_
                     True if _exp1_ is greater than or equal to _exp2_.

       In  each  of  the above expressions, if _file_ is of the form **/dev/fd/_**n_, where _n_ is an integer,
       then the test is applied to the open file whose descriptor number is _n_.  The **posix **shell  op‐
       tion disables this special handling.

       A compound expression can be constructed from these primitives by using any of the following,
       listed in decreasing order of precedence:
              **(_**expression_**)**
                     True if _expression_ is true.  Used to group expressions.
              **! _**expression_
                     True if _expression_ is false.
              _expression1_ **&& _**expression2_
                     True if _expression1_ and _expression2_ are both true.
              _expression1_ **|| _**expression2_
                     True if either _expression1_ or _expression2_ is true.

### Input/Output.
       Before a command is executed, its input and output may be redirected using a special notation
       interpreted  by the shell.  The following may appear anywhere in a _simple-command_ or may pre‐
       cede or follow a _command_ and are _not_ passed on to the invoked command.  Command substitution,
       parameter expansion, and arithmetic expansion occur before _word_ or _digit_ is  used  except  as
       noted  below.   Pathname  expansion  occurs  only if the shell is interactive and the pattern
       matches a single file.  Field splitting is not performed.

       In each  of  the  following  redirections,  if  _file_  is  of  the  form  **/dev/sctp/_**host_**/_**port_,
       **/dev/tcp/_**host_**/_**port_, or **/dev/udp/_**host_**/_**port_, where _host_ is a hostname or host address, and _port_
       is a service given by name or an integer port number, then the redirection attempts to make a
       **tcp**, **sctp **or **udp **connection to the corresponding socket.

       No intervening space is allowed between the characters of redirection operators.

       **<_**word_         Use file _word_ as standard input (file descriptor 0).

       **>_**word_         Use file _word_ as standard output (file descriptor 1).  If the file does not ex‐
                     ist  then  it  is created.  If the file exists, and the **noclobber **option is on,
                     this causes an error; otherwise, it is truncated to zero length.

       **>|_**word_        Same as **>**, except that it overrides the **noclobber **option.

       **>;_**word_        Write output to a temporary file.  If the command completes successfully rename
                     it to _word_, otherwise, delete the temporary file.  **>;_**word_ cannot be  used  with
                     the _exec_ and _redirect_ built-ins.

       **>>_**word_        Use  file _word_ as standard output.  If the file exists, then output is appended
                     to it (by first seeking to the end-of-file); otherwise, the file is created.

       **<>_**word_        Open file _word_ for reading and writing as standard output.  If the **posix **option
                     is active, it defaults to standard input instead.

       **<>;_**word_       The same as **<>_**word_ except that if the command completes successfully,  _word_  is
                     truncated to the offset at command completion.  **<>;_**word_ cannot be used with the
                     _exec_ and _redirect_ built-ins.

       **<<**[**-**]_word_     The shell input is read up to a line that is the same as _word_ after any quoting
                     has  been  removed, or to an end-of-file.  No parameter expansion, command sub‐
                     stitution, arithmetic expansion or pathname expansion  is  performed  on  _word_.
                     The resulting document, called a _here-document_, becomes the standard input.  If
                     any  character  of  _word_  is  quoted, then no interpretation is placed upon the
                     characters of the document; otherwise, parameter expansion,  command  substitu‐
                     tion,  and arithmetic expansion occur, **\new-line **is ignored, and **\ **must be used
                     to quote the characters **\**, **$**, **`**.  If **- **is appended to **<<**, then all leading tabs
                     are stripped from _word_ and from the document.  If **# **is  appended  to  **<<**,  then
                     leading spaces and tabs will be stripped off the first line of the document and
                     up  to  an equivalent indentation will be stripped from the remaining lines and
                     from _word_.  A tab stop is assumed to occur at every 8 columns for the  purposes
                     of determining the indentation.

       **<<<_**word_       A  short  form of here document in which _word_ becomes the contents of the here-
                     document after any parameter expansion, command  substitution,  and  arithmetic
                     expansion occur.

       **<&_**digit_       The standard input is duplicated from file descriptor _digit_ (see [_dup_(2)](https://www.chedong.com/phpMan.php/man/dup/2/markdown)).

       **>&_**digit_       The standard output is duplicated from file descriptor _digit_.

       **<&_**digit_**-      **The file descriptor given by _digit_ is moved to standard input.

       **>&_**digit_**-      **The file descriptor given by _digit_ is moved to standard output.

       **<&-           **The standard input is closed.

       **>&-           **The standard output is closed.

       **<&p           **The input from the co-process is moved to standard input.

       **>&p           **The output to the co-process is moved to standard output.

       **<#((_**expr_**))    **Evaluate  arithmetic  expression _expr_ and position file descriptor 0 to the re‐
                     sulting value bytes from the start of the file.   The  variables  **CUR  **and  **EOF**
                     evaluate  to the current offset and end-of-file offset respectively when evalu‐
                     ating _expr._

       **>#((_**offset_**))  **The same as **<# **except applies to file descriptor 1.

       **<#_**pattern_     Seeks forward to the beginning of the next line containing _pattern_.

       **<##_**pattern_    The same as **<# **except that the portion of the file that is skipped is copied to
                     standard output.

       If one of the above is preceded by a digit, with no intervening space, then the file descrip‐
       tor number referred to is that specified by the digit (instead of the default 0  or  1).   If
       one  of  the  above, other than **>&- **and the **># **and **<# **forms, is preceded by **{_**varname_**} **with no
       intervening space, then a file descriptor number > 9 will be selected by the shell and stored
       in the variable _varname_, so it can be read from or written to with redirections like **<& _**$var‐_
       _name_ or **>& _**$varname_.  If **>&- **or the any of the **># **and **<# **forms is preceded by  **{_**varname_**}  **the
       value of _varname_ defines the file descriptor to close or position.  For example:

              **... 2>&1**

       means file descriptor 2 is to be opened for writing as a duplicate of file descriptor 1 and

              **exec {n}<file**

       means open file named **file **for reading and store the file descriptor number in variable **n**.

       A special shorthand redirection operator **&>_**word_ is available; it is equivalent to **>_**word_ **2>&1**.
       It  cannot be preceded by any digit or variable name. This shorthand is disabled if the **posix**
       shell option is active.

       The order in which redirections are specified is significant.  The shell evaluates each redi‐
       rection in terms of the (_file_ _descriptor_, _file_) association at the time of  evaluation.   For
       example:

              **... 1>_**fname_ **2>&1**

       first  associates  file  descriptor  1 with file _fname_.  It then associates file descriptor 2
       with the file associated with file descriptor 1 (i.e.  _fname_).  If the order of  redirections
       were  reversed,  file  descriptor  2 would be associated with the terminal (assuming file de‐
       scriptor 1 had been) and then file descriptor 1 would be associated with file _fname_.

       If a command is followed by **& **and job control is not active, then the default standard  input
       for the command is the empty file **/dev/null**.  Otherwise, the environment for the execution of
       a  command  contains  the  file descriptors of the invoking shell as modified by input/output
       specifications.

### Environment.
       The _environment_ (see [_environ_(7)](https://www.chedong.com/phpMan.php/man/environ/7/markdown)) is a list of name-value pairs that is passed to an  executed
       program  in  the  same  way as a normal argument list.  The names must be _identifiers_ and the
       values are character strings.  The shell interacts with the environment in several ways.   On
       invocation,  the shell scans the environment and creates a variable for each name found, giv‐
       ing it the corresponding value and attributes and marking it _export_.  Executed  commands  in‐
       herit  the  environment.   If  the user modifies the values of these variables or creates new
       ones, using the **export **or **typeset -x **commands, they become part of the environment.  The  en‐
       vironment  seen  by  any executed command is thus composed of any name-value pairs originally
       inherited by the shell, whose values may be modified by the current shell, plus any additions
       which must be noted in **export **or **typeset -x **commands.

       The environment for any _simple-command_ or function may be augmented by prefixing it with  one
       or  more  variable assignments.  A variable assignment argument is a word of the form _identi‐_
       _fier=value_.  Thus:

              **TERM=450 cmd args                  **and
              **(export TERM; TERM=450; cmd args)**

       are equivalent (as far as the above execution of _cmd_ is concerned except for special built-in
       commands listed below - those that are marked with **†**).

       If the obsolete **-k **option is set, _all_ variable assignment arguments are placed in  the  envi‐
       ronment,  even  if  they  occur after the command name.  The following first prints **a=b c **and
       then **c**:

              **echo a=b c**
              **set -k**
              **echo a=b c**

       This feature is intended for use with scripts written for early versions of the shell and its
       use in new scripts is strongly discouraged.  It is likely to disappear someday.

### Functions.
       For historical reasons, there are two ways to define functions, the  _name_**()  **syntax  and  the
       **function  _**name_  syntax, described in the _Commands_ section above.  Shell functions are read in
       and stored internally.  Alias names are resolved when the function is  read.   Functions  are
       executed  like  commands  with the arguments passed as positional parameters.  (See _Execution_
       below.)

       Functions defined by the **function _**name_ syntax and called by name execute in the same  process
       as  the  caller  and  share  all  files and present working directory with the caller.  Traps
       caught by the caller are reset to their default action inside the function.  A trap condition
       that is not caught or ignored by the function causes the function to terminate and the condi‐
       tion to be passed on to the caller.  A trap on **EXIT **set inside a function is executed in  the
       environment of the caller after the function completes.  Ordinarily, variables are shared be‐
       tween  the  calling  program and the function.  However, the **typeset **special built-in command
       used within a function defines local variables whose scope  includes  the  current  function.
       They  can be passed to functions that they call in the variable assignment list that precedes
       the call or as arguments passed as name references.  Errors within functions  return  control
       to the caller.

       Functions  defined with the _name_**() **syntax and functions defined with the **function _**name_ syntax
       that are invoked with the **.  **special built-in are executed in the  caller's  environment  and
       share all variables and traps with the caller.  Errors within these function executions cause
       the script that contains them to abort.

       The special built-in command **return **is used to return from function calls.

       Function  names  can  be listed with the **-f **or **+f **option of the **typeset **special built-in com‐
       mand.  The text of functions, when available, will also be listed with **-f**.  Functions can  be
       undefined with the **-f **option of the **unset **special built-in command.

       Ordinarily,  functions are unset when the shell executes a shell script.  Functions that need
       to be defined across separate invocations of the shell should be placed in  a  directory  and
       the  **FPATH **variable should contain the name of this directory.  They may also be specified in
       the **ENV **file.

### Discipline Functions.
       Each variable can have zero or more discipline functions associated with it.  The shell  ini‐
       tially  understands  the  discipline  names **get**, **set**, **append**, and **unset **but can be added when
       defining new types.  On most systems others can be added at run time via  the  C  programming
       interface  extension  provided by the **builtin **built-in utility.  If the **get **discipline is de‐
       fined for a variable, it is invoked whenever the given variable is referenced.  If the  vari‐
       able  **.sh.value  **is  assigned a value inside the discipline function, the referenced variable
       will evaluate to this value instead.  If the **set **discipline is defined for a variable, it  is
       invoked whenever the given variable is assigned a value.  If the **append **discipline is defined
       for  a variable, it is invoked whenever a value is appended to the given variable.  The vari‐
       able **.sh.value **is given the value of the variable before invoking  the  discipline,  and  the
       variable  will  be  assigned  the  value  of  **.sh.value  **after  the discipline completes.  If
       **.sh.value **is unset inside the discipline, then that value is unchanged.  If the **unset  **disci‐
       pline is defined for a variable, it is invoked whenever the given variable is unset.

       The  variable **.sh.name **contains the name of the variable for which the discipline function is
       called, **.sh.subscript **is the subscript of the variable, and **.sh.value **will contain the  value
       being  assigned  inside  the  **set  **discipline function.  The variable **_ **is a reference to the
       variable including the subscript if any.  For the **set  **discipline,  changing  **.sh.value  **will
       change  the  value  that gets assigned.  Finally, the expansion **${_**var_**._**name_**}**, when _name_ is the
       name of a discipline, and there is no variable of this name, is  equivalent  to  the  command
       substitution **${ _**var_**._**name_**;}**.


### Name Spaces.
       Commands and functions that are executed as part of the _list_ of a **namespace **command that mod‐
       ify  variables  or  create new ones, create a new variable whose name is the name of the name
       space as given by _identifier_ preceded by **.**.  When a variable whose name  is  _name_  is  refer‐
       enced,  it  is first searched for using **._**identifier_**._**name_.  Similarly, a function defined by a
       command in the **namespace _**list_ is created using the name space name preceded by a **.**.

       When the _list_ of a **namespace **command contains a **namespace **command, the names of variables and
       functions that are created consist of the variable or function name preceded by the  list  of
       _identifier_s each preceded by **.**.

       Outside of a name space, a variable or function created inside a name space can be referenced
       by preceding it with the name space name.

       By default, variables starting with **.sh **are in the **sh **name space.


### Type Variables.
       Typed  variables  provide  a way to create data structure and objects.  A type can be defined
       either by a shared library, by the **enum **built-in command described below, or by using the new
### -T  -T 
       specified  as  an  option argument to **-T**, is set with a compound variable assignment that de‐
       fines the type.  Function definitions can appear inside the compound variable assignment  and
       these  become  discipline functions for this type and can be invoked or redefined by each in‐
       stance of the type.  The function name **create **is treated specially.  It is invoked  for  each
       instance  of  the  type that is created but is not inherited and cannot be redefined for each
       instance.

       When a type is defined a special built-in command of that name is added.  These built-ins are
       declaration commands and follow the same expansion rules as the built-in  commands  described
       below that are marked with a ‡ symbol. These commands can subsequently be used inside further
       type definitions.  The man page for these commands can be generated by using the **--man **option
       or any of the other **-- **options described with **getopts**.  The **-r**, **-a**, **-A**, **-h**, and **-S **options of
       **typeset **are permitted with each of these new built-ins.

       An  instance  of a type is created by invoking the type name followed by one or more instance
       names.  Each instance of the type is initialized with a copy of the subvariables  except  for
       subvariables  that  are defined with the **-S **option.  Variables defined with the **-S **are shared
       by all instances of the type.  Each instance can change the value of any subvariable and  can
       also  define  new discipline functions of the same names as those defined by the type defini‐
       tion as well as any standard discipline names.  No additional subvariables can be defined for
       any instance.

       When defining a type, if the value of a subvariable is not set and the **-r **attribute is speci‐
       fied, it causes the subvariable to be a required subvariable.  Whenever an instance of a type
       is created, all required subvariables must be specified.  These subvariables become read-only
       in each instance.

       When **unset **is invoked on a subvariable within a type, and the **-r **attribute has not been spec‐
       ified for this field, the value is reset to the default value associative with the type.  In‐
       voking **unset **on a type instance not contained within another type  deletes  all  subvariables
       and the variable itself.

       A  type definition can be derived from another type definition by defining the first subvari‐
       able name as **_ **and defining its type as the base type.  Any remaining definitions will be ad‐
       ditions and modifications that apply to the new type.  If the new type name is  the  same  as
       that  of the base type, the type will be replaced and the original type will no longer be ac‐
       cessible.

       The **typeset **command with the **-T **and no option argument or operands will write  all  the  type
       definitions to standard output in a form that can be read in to create all they types.

### Jobs.
       If  the **monitor **option of the **set **command is turned on, an interactive shell associates a _job_
       with each pipeline.  It keeps a table of current jobs, printed by the **jobs **command,  and  as‐
       signs  them  small  integer  numbers.  When a job is started asynchronously with **&**, the shell
       prints a line which looks like:

            [1] 1234

       indicating that the job which was started asynchronously was job number 1 and had  one  (top-
       level) process, whose process ID was 1234.

       This paragraph and the next require features that are not in all versions of UNIX and may not
       apply.   If  you are running a job and wish to do something else you may hit the key **^Z **(con‐
       trol-Z) which sends a STOP signal to the current job.  The shell will then normally  indicate
       that the job has been `Stopped', and print another prompt.  You can then manipulate the state
       of this job, putting it in the background with the **bg **command, or run some other commands and
       then  eventually bring the job back into the foreground with the foreground command **fg**.  A **^Z**
       takes effect immediately and is like an interrupt in that pending output and unread input are
       discarded when it is typed.

       A job being run in the background will stop if it tries to read  from  the  terminal.   Back‐
       ground  jobs  are  normally allowed to produce output, but this can be disabled by giving the
       command **stty tostop**.  If you set this tty option, then background jobs will  stop  when  they
       try to produce output like they do when they try to read input.

       There  are  several  ways  to  refer  to  jobs in the shell.  A job can be referred to by the
       process ID of any process of the job or by one of the following:
              **%_**number_
                     The job with the given number.
              **%_**string_
                     Any job whose command line begins with _string_.
              **%?_**string_
                     Any job whose command line contains _string_.
              **%%     **Current job.
              **%+     **Equivalent to **%%**.
              **%-     **Previous job.

       The shell learns immediately whenever a process changes state.  It normally informs you when‐
       ever a job becomes blocked so that no further progress is possible, but only just  before  it
       prints  a  prompt.  This is done so that it does not otherwise disturb your work.  The **notify**
       option of the **set **command causes the shell to print these job change messages as soon as they
       occur.

       When the **monitor **option is on, each background job that completes triggers any trap  set  for
       **CHLD**.

       When  you  try  to leave the shell while jobs are running or stopped, you will be warned that
       `You have stopped(running) jobs.'  You may use the **jobs **command to see what they are.  If you
       immediately try to exit again, the shell will not warn you a second  time,  and  the  stopped
       jobs  will be terminated.  When a login shell receives a HUP signal, it sends a HUP signal to
       each job that has not been disowned with the **disown **built-in command described below.

### Signals.
       The INT and QUIT signals for an invoked command are ignored if the command is followed  by  **&**
       and  the  **monitor  **option is not active.  Otherwise, signals have the values inherited by the
       shell from its parent (but see also the **trap **built-in command below).

### Execution.
       Each time a command is read, the above expansions and substitutions are carried out.  If  the
       command name matches one of the _Special_ _Built-in_ _Commands_ listed below, it is executed within
       the current shell process.  Next, the command name is checked to see if it matches a user de‐
       fined  function.  If it does, the positional parameters are saved and then reset to the argu‐
       ments of the _function_ call.  A function is also executed in the current shell process.   When
       the  _function_  completes  or issues a **return**, the positional parameter list is restored.  For
       functions defined with the **function _**name_ syntax, any trap set on **EXIT **within the function  is
       executed.  The exit value of a _function_ is the value of the last command executed.  If a com‐
       mand  name is not a _special_ _built-in_ _command_ or a user defined _function_, but it is one of the
       built-in commands listed below, it is executed in the current shell process.

       The shell variables **PATH **followed by the variable **FPATH **defines the list  of  directories  to
       search  for the command name.  Alternative directory names are separated by a colon (**:**).  The
       default path is the value that was output by **getconf PATH **at the time ksh was compiled.   The
       current  directory  can be specified by two or more adjacent colons, or by a colon at the be‐
       ginning or end of the path list.  If the command name contains a **/**, then the search  path  is
       not  used.  Otherwise, each directory in the list of directories defined by **PATH **and **FPATH **is
       checked in order.  If the directory being searched is contained in **FPATH **and contains a  file
       whose  name  matches  the  command  being searched, then this file is loaded into the current
       shell environment as if it were the argument to the **. **command except that only preset aliases
       are expanded, and a function of the given name is executed as described above.

       If this directory is not in **FPATH **the shell first determines whether there is a built-in ver‐
       sion of a command corresponding to a given pathname and if so it is invoked  in  the  current
       process.   If  no  built-in is found, the shell checks for a file named **.paths **in this direc‐
       tory.  If found and there is a line of the form **FPATH=_**path_ where _path_ names an  existing  di‐
       rectory then that directory is searched immediately after the current directory as if it were
       found  in  the  **FPATH **variable.  If _path_ does not begin with /, it is checked for relative to
       the directory being searched.

       The **.paths **file is then checked for a line of the form **PLUGIN_LIB=_**libname_ [ **: _**libname_ ] ... .
       Each library named by _libname_ will be searched for as  if  it  were  an  option  argument  to
       **builtin -f**, and if it contains a built-in of the specified name this will be executed instead
       of a command by this name.  Any built-in loaded from a library found this way will be associ‐
       ated with the directory containing the **.paths **file so it will only execute if not found in an
       earlier directory.

       Finally, the directory will be checked for a file of the given name.  If the file has execute
       permission but is not an **a.out **file, it is assumed to be a file containing shell commands.  A
       separate  shell  is spawned to read it.  All non-exported variables are removed in this case.
       If the shell command file doesn't have read permission, or if the _setuid_ and/or  _setgid_  bits
       are  set  on the file, then the shell executes an agent whose job it is to set up the permis‐
       sions and execute the shell with the shell command file passed down as an open file.  If  the
       **.paths  **contains a line of the form _name_**=_**value_ in the first or second line, then the environ‐
       ment variable _name_ is modified by prepending the directory specified by _value_ to  the  direc‐
       tory  list.  If _value_ is not an absolute directory, then it specifies a directory relative to
       the directory that the executable was found.  If the environment variable _name_ does  not  al‐
       ready  exist it will be added to the environment list for the specified command.  A parenthe‐
       sized command is executed in a subshell without removing non-exported variables.

### Command Re-entry.
       The text of the last **HISTSIZE **(default 512) commands entered from a terminal device is  saved
       in a _history_ file.  The file **$HOME/.sh_history **is used if the **HISTFILE **variable is not set or
       if  the  file  it  names is not writable.  A shell can access the commands of all _interactive_
       shells which use the same named **HISTFILE**.  The built-in command **hist **is used to list or  edit
       a  portion  of  this file.  The portion of the file to be edited or listed can be selected by
       number or by giving the first character or characters of the command.  A  single  command  or
       range  of  commands can be specified.  If you do not specify an editor program as an argument
       to **hist **then the value of the variable **HISTEDIT **is used.  If **HISTEDIT **is unset, the  obsolete
       variable  **FCEDIT  **is  used.  If **FCEDIT **is not defined, then **/bin/ed **is used.  The edited com‐
       mand(s) is printed and re-executed upon leaving the editor unless you quit  without  writing.
       The **-s **option (and in obsolete versions, the editor name **-**) is used to skip the editing phase
       and to re-execute the command.  In this case a substitution parameter of the form _old_**=_**new_ can
       be  used to modify the command before execution.  For example, with the preset alias **r**, which
       is aliased to **′hist -s′**, typing `**r bad=good c**' will re-execute the most recent command  which
       starts  with  the  letter **c**, replacing the first occurrence of the string **bad **with the string
       **good**.

### History Expansion.
       History expansions introduce words from the history list into the  input  stream,  making  it
       easy  to  repeat  commands, repeat arguments of a previous command in the current command, or
       fix typos in the previous command.  The history expansion facility is an alternative to  his‐
       tory control via the **fc **or **hist **built-in command.  To enable it, turn on the **-H **or **histexpand**
       option using the **set **command (see _Built-in_ _Commands_ below).

       History  expansions begin with the character **!**.  They may begin anywhere in the input.  The **!**
       may be preceded by a **\ **or enclosed in single quotes to prevent its special meaning.  A  **!  **is
       also  passed  unchanged when it is followed by a space, tab, newline, **= **or **(**.  History expan‐
       sions do not nest.  They are parsed separately before the shell parser is  invoked,  so  they
       can override shell grammar rules.

       By  default,  the  expanded version of any line that contains a history expansion is printed,
       added to the history, and then immediately executed.  History expansions are never  added  to
       the  history  themselves,  regardless  of whether they succeed or fail due to an error.  Nor‐
       mally, this means that a command line with an erroneous history expansion is lost  and  needs
       to be retyped from scratch, but if the **histreedit **shell option is turned on and a line editor
       is active (see _In-line_ _Editing_ _Options_ below), the erroneous line is pre-filled into the next
       prompt's  input  buffer for correcting.  The **histverify **option causes the same to be done for
       the results of successful history expansions, allowing verification and editing before execu‐
       tion.

       A history expansion may have an _event_ _specification_, which indicates  the  event  from  which
       words  are  to  be  taken,  a _word_ _designator_, which selects particular words from the chosen
       event, and/or a _modifier_, which manipulates the selected words.

       An event specification can be:

           _n_       A number, referring to a particular event.
           **-_**n_      An offset, referring to the event _n_ before the current event.
           **#       **The current event.
           **!       **The previous event (equivalent to **-1**).
           _s_       The most recent event whose first word begins with the string _s_.
           **?_**s_**?     **The most recent event which contains the string _s_.  The second **? **can  be  omitted
                   if it is immediately followed by a newline.

       For  example,  consider  this bit of someone's history list as might be output by the **hist -l**
       command:

           9        nroff -man wumpus.man
           10       cp wumpus.man wumpus.man.old
           11       vi wumpus.man
           12       diff wumpus.man.old wumpus.man

       The commands are shown with their event numbers.  The current event, which we  haven't  typed
       in  yet,  is  event 13.  **!11 **and **!-2 **refer to event 11.  **!! **refers to the previous event, 12.
       **!! **can be abbreviated **! **if it is followed by **: **(see below).  **!n **refers to event 9, which  be‐
       gins  with  **n**.  **!?old? **also refers to event 12, which contains **old**.  Without word designators
       or modifiers, history references simply expand to the entire event, so we might type  **!cp  **to
       redo the copy command or **!!|more **if the **diff **output scrolled off the top of the screen.

       To  select words from an event, the event specification can be followed by a **: **and a designa‐
       tor for the desired words.  The words of an input line are numbered from 0,  the  first  word
       (usually the command name) being 0, the second word (first argument) being 1, etc.  The basic
       word designators are:

           **0       **The first word (command name).
           _n_       The _n_th argument.
           **^       **The first argument, equivalent to **1**.
           **$       **The last argument.
           **%       **The word matched by the most recent **?_**s_**? **search.
           **x_**-_**y     **A range of words.
           **-_**y_      Equivalent to **0-_**y_.
           ***       **Equivalent to **^-$**, but returns nothing if the event contains only 1 word.
           _x_***      **Equivalent to _x_**-$**.
           _x_**-      **Equivalent to _x_*****, but omitting the last word (**$**).

       Selected  words  are inserted into the command line separated by single blanks.  For example,
       the **diff **command in the previous example might have been typed as **diff !!:1.old  !!:1  **(using
       **:1  **to  select  the first argument from the previous event) or **diff !-2:2 !-2:1 **to select and
       swap the arguments from the **cp **command.  If we didn't care about the order of  the  **diff**,  we
       might have said **diff !-2:1-2 **or simply **diff !-2:***.  The **cp **command might have been written **cp**
       **wumpus.man  !#:1.old**, using **# **to refer to the current event.  **!n:- hurkle.man **would reuse the
       first two words from the **nroff **command to say **nroff -man hurkle.man**.

       The **: **separating the event specification from the word designator can be omitted if the argu‐
       ment selector begins with a **^**, **$**, *****, **% **or **-**.  For example, our **diff **command might  have  been
       **diff !!^.old !!^ **or, equivalently, **diff !!$.old !!$**.  However, if **!! **is abbreviated **!**, an ar‐
       gument selector beginning with **- **will be interpreted as an event specification.

       The  word(s)  in  a  history reference can be edited by following them with one or more modi‐
       fiers, each preceded by a colon (**:**):

           **h       **Remove a trailing pathname component, leaving the head.
           **t       **Remove all leading pathname components, leaving the tail.
           **r       **Remove a filename extension **.xxx**, leaving the root name.
           **e       **Remove all but the extension.
           **s/_**l_**/_**r_**/  **Substitute _l_ for _r_.  _l_ is simply a string like _r_, not a regular expression as  in
                   the eponymous [_ed_(1)](https://www.chedong.com/phpMan.php/man/ed/1/markdown) command.  Any character may be used as the delimiter in place
                   of  **/**; a **\ **can be used to quote the delimiter inside _l_ and _r_.  The character **& **in
                   the _r_ is replaced by _l_; **\ **also quotes **&**.  If _l_ is empty, the _l_ from the  previous
                   substitution is used, or if there is none, the _s_ from the most recent **?_**s_**? **search.
                   The trailing delimiter may be omitted if it is immediately followed by a newline.
           **&       **Repeat the previous substitution.
           **g       **Global  substitution,  for example **:gs/foo/bar/ **or **:g&**.  Applies the **s **or **& **modi‐
                   fier to the entire command line.
           **a       **Same as **g**.
           **p       **Print the new command line but do not execute it.
           **q       **Quote the expanded words, preventing further expansions.
           **x       **Like **q**, but break into words at blanks, tabs and newlines.

       Modifiers are applied to only the first modifiable word (unless **g **or **a **is used).   It  is  an
       error for no word to be modifiable.

       For  example, the **diff **command might have been written as **diff wumpus.man.old !#^:r**, using **:r**
       to remove **.old **from the first argument on the same line (**!#^**).  We might follow  **mail  -s  "I**
       **forgot my password" rot **with **!:s/rot/root **to correct the spelling of **root**.

       History expansions also occur when an input line begins with **^**.  When it is the first charac‐
       ter  on  an  input line, it is an abbreviation of **!:s^**.  Thus we might have said **^rot^root **to
       make the spelling correction in the previous example.  This is  the  only  history  expansion
       that does not explicitly begin with **!**.

       If a word on a command line begins with the history comment character **#**, history expansion is
       ignored for the rest of that line.  This usually causes the shell parser (which uses the same
       character  to  signal  a  comment) to treat the rest of the line as a comment as well, but as
       history expansion is parsed separately from the shell grammar and with different rules,  this
       cannot  be  guaranteed  in all cases.  If the history comment character is changed, the shell
       grammar comment character does not change along with it.

       The three characters used to signal history expansion can  be  changed  using  the  **histchars**
       shell variable; see _Shell_ _Variables_ above.

### In-line Editing Options.
       Normally, each command line entered from a terminal device is simply typed followed by a **new-**
       **line **(`RETURN' or `LINE FEED').  If either the **emacs**, **gmacs**, or **vi **option is active, the user
       can  edit  the  command line.  To be in either of these edit modes, **set **the corresponding op‐
       tion.  An editing option is automatically selected each time the **VISUAL **or **EDITOR **variable is
       assigned a value matching any of these editor names; for details, see _Shell_  _Variables_  above
       under **VISUAL**.

       The  editing  features  require  that  the user's terminal accept `RETURN' as carriage return
       without line feed and that a space (` ') must overwrite the current character on the screen.

       Unless the **multiline **option is on, the editing modes implement a concept where  the  user  is
       looking through a window at the current line.  The window width is the value of **COLUMNS **if it
       is  defined,  otherwise 80.  If the window width is too small to display the prompt and leave
       at least 8 columns to enter input, the prompt is truncated from the left.   If  the  line  is
       longer  than  the window width minus two, a mark is displayed at the end of the window to no‐
       tify the user.  As the cursor moves and reaches the window boundaries,  the  window  will  be
       centered  about  the  cursor.  The mark is a **> **(<**, ***) if the line extends on the right (left,
       both) side(s) of the window.

       The search commands in each edit mode provide access to the history file.  Only  strings  are
       matched, not patterns, although a leading **^ **in the string restricts the match to begin at the
       first character in the line.

       Each  of the edit modes has an operation to list the files or commands that match a partially
       entered word.  When applied to the first word on the line, or the first word after a **;**, **|**, **&**,
       or **(**, and the word does not begin with **∼ **or contain a **/**, the list of aliases, functions,  and
       executable  commands  defined  by the **PATH **variable that could match the partial word is dis‐
       played.  Otherwise, the list of files that match the given word is displayed.   If  the  par‐
       tially  entered  word  does not contain any file expansion characters, a *** **is appended before
       generating these lists.  After displaying the generated list,  the  input  line  is  redrawn.
       These  operations are called command name listing and file name listing, respectively.  There
       are additional operations, referred to as command name completion and file  name  completion,
       which  compute  the list of matching commands or files, but instead of printing the list, re‐
       place the current word with a complete or partial match.  For file name  completion,  if  the
       match  is  unique,  a **/ **is appended if the file is a directory and a space is appended if the
       file is not a directory.  Otherwise, the longest common prefix for all the matching files re‐
       places the word.  For command name completion, only the portion of the file names  after  the
       last  **/ **are used to find the longest command prefix.  If only a single name matches this pre‐
       fix, then the word is replaced with the command name followed by a space.  When using  a  _tab_
       for  completion  that does not yield a unique match, a subsequent _tab_ will provide a numbered
       list of matching alternatives.  A specific selection can be made by  entering  the  selection
       number followed by a _tab_.  Neither completion nor listing operations are attempted before the
       first character in a line.

### Key Bindings.
       The **KEYBD **trap can be used to intercept keys as they are typed and change the characters that
       are  actually  seen by the shell.  This trap is executed after each character (or sequence of
       characters when the first character is ESC) is entered while reading from  a  terminal.   The
       variable  **.sh.edchar  **contains  the character or character sequence which generated the trap.
       Changing the value of **.sh.edchar **in the trap action causes the shell to behave as if the  new
       value were entered from the keyboard rather than the original value.

       The variable **.sh.edcol **is set to the input column number of the cursor at the time of the in‐
       put.   The variable **.sh.edmode **is set to ESC when in **vi **input mode (see below) and set to the
       empty string otherwise.  Prepending **${.sh.editmode} **to a value assigned  to  **.sh.edchar  **will
       cause the shell to change to control mode if it is not already in this mode.

       This  trap is not invoked for characters entered as arguments to editing directives, or while
       reading input for a character search.

### Emacs Editing Mode.
       This mode is entered by enabling either the **emacs **or **gmacs **option.  The only  difference  be‐
       tween  these  two modes is the way they handle **^T**.  To edit, the user moves the cursor to the
       point needing correction and then inserts or deletes characters or words as needed.  All  the
       editing  commands are control characters or escape sequences.  The notation for control char‐
       acters is caret (**^**) followed by the character.  For example, **^F **is the notation  for  control
       **F**.   This  is  entered  by  depressing  `f' while holding down the `CTRL' (control) key.  The
       `SHIFT' key is _not_ depressed.  (The notation **^?  **indicates the DEL (delete) key.)

       The notation for escape sequences is **M- **followed by a  character.   For  example,  **M-f  **(pro‐
       nounced  Meta f) is entered by depressing ESC (ASCII **033**) followed by `f'.  (**M-F **would be the
       notation for ESC followed by `SHIFT' (capital) `F'.)

       All edit commands operate from any place on the line (not just at  the  beginning).   Neither
       the `RETURN' nor the `LINE FEED' key is entered after edit commands except when noted.

       The  **M-[  **multi-character  commands below are DEC VT220 escape sequences generated by special
       keys on standard PC keyboards, such as the arrow keys.  You could type them directly but they
       are meant to recognize the keys in question, which are indicated in parentheses.

       **^F        **Move cursor forward (right) one character.
       **M-[C      **(Right arrow) Same as **^F**.
       **M-f       **Move cursor forward one word.  (The **emacs **editor's idea of a word is  a  string  of
                 characters consisting of only letters, digits and underscores.)
       **M-[1;3C   **(Alt-Right arrow) Same as **M-f**.
       **M-[1;5C   **(Ctrl-Right arrow) Same as **M-f**.
       **M-[1;9C   **(iTerm2 Alt-Right arrow) Same as **M-f**.
       **^B        **Move cursor backward (left) one character.
       **M-[D      **(Left arrow) Same as **^B**.
       **M-b       **Move cursor backward one word.
       **M-[1;3D   **(Alt-Left arrow) Same as **M-b**.
       **M-[1;5D   **(Ctrl-Left arrow) Same as **M-b**.
       **M-[1;9D   **(iTerm2 Alt-Left arrow) Same as **M-b**.
       **^A        **Move cursor to start of line.
       **M-[H      **(Home) Same as **^A**.
       **M-[1~     **Same as **^A**.
       **M-[7~     **Same as **^A**.
       **^E        **Move cursor to end of line.
       **M-[F      **(End) Same as **^E**.
       **M-[4~     **Same as **^E**.
       **M-[8~     **Same as **^E**.
       **M-[Y      **Same as **^E**.
       **M-OA      **(Up Arrow) Same as **M-[A**.
       **M-OB      **(Down Arrow) Same as **M-[B**.
       **M-OC      **(Right Arrow) Same as **M-[C**.
       **M-OD      **(Left Arrow) Same as **M-[D**.
       **M-O5C     **(Ctrl-Right Arrow) Same as **M-f**.
       **M-O5D     **(Ctrl-Left Arrow) Same as **M-b**.
       **^]_**char_    Move cursor forward to character _char_ on current line.
       **M-^]_**char_  Move cursor backward to character _char_ on current line.
       **^X^X      **Interchange the cursor and mark.
       _erase_     (User  defined  erase  character  as  defined  by the [_stty_(1)](https://www.chedong.com/phpMan.php/man/stty/1/markdown) command, usually **^H**.)
                 Delete previous character.
       _lnext_     (User defined literal next character as defined by the [_stty_(1)](https://www.chedong.com/phpMan.php/man/stty/1/markdown) command,  or  **^V  **if
                 not defined.)  Removes the next character's editing features (if any).
       **^D        **Delete current character.
       **M-[3~     **(Forward delete) Same as **^D**.
       **M-d       **Delete current word.
       **M-[3;5~   **(Ctrl-Delete) Same as **M-d**.
       **M-^H      **(Meta-backspace) Delete previous word.
       **M-h       **Delete previous word.
       **M-^?      **(Meta-DEL)  Delete  previous word (if your interrupt character is **^?  **(DEL, the de‐
                 fault) then this command will not work).
       **^T        **Transpose current character with previous character and advance the cursor in _emacs_
                 mode.  Transpose two previous characters in _gmacs_ mode.
       **^C        **Capitalize current character.
       **M-c       **Capitalize current word.
       **M-l       **Change the current word to lower case.
       **^K        **Delete from the cursor to the end of the line.  If preceded by a numerical  parame‐
                 ter  whose  value  is less than the current cursor position, then delete from given
                 position up to the cursor.  If preceded by a numerical  parameter  whose  value  is
                 greater  than the current cursor position, then delete from cursor up to given cur‐
                 sor position.
       **^W        **Kill from the cursor to the mark.
       **M-p       **Push the region from the cursor to the mark on the stack.
       _kill_      (User defined kill character as defined by the [_stty_(1)](https://www.chedong.com/phpMan.php/man/stty/1/markdown) command, usually **^U**.)   Kill
                 the  entire  current  line.   If two _kill_ characters are entered in succession, all
                 kill characters from then on cause a line feed (useful when using paper terminals).
                 A subsequent pair of _kill_ characters undoes this change.
       **^Y        **Restore last item removed from line. (Yank item back to the line.)
       **^X^E      **Return the command **hist -e ${VISUAL:-${EDITOR:-vi}} **in the input buffer to  call  a
                 full editor — **vi **by default — on the current command line.
       **^L        **Line feed and print current line.
       **M-^L      **Clear the screen.
       **^@        **(Null character) Set mark.
       **M-_**space_   (Meta space) Set mark.
       **^J        **(New line) Execute the current line.
       **^M        **(Return) Execute the current line.
       _eof_       End-of-file character, normally **^D**, is processed as an End-of-file only if the cur‐
                 rent line is empty.
       **^P        **Fetch  previous command.  Each time **^P **is entered the previous command back in time
                 is accessed.  Moves back one line when not on the first line of a  multi-line  com‐
                 mand.
       **M-[A      **(Up  arrow)  If  the  cursor is at the end of the line, it is equivalent to **^R **with
                 _string_ set to the contents of the current line.  Otherwise, it is equivalent to **^P**.
       **M-<       **Fetch the least recent (oldest) history line.
       **M->       **Fetch the most recent (youngest) history line.
       **^N        **Fetch next command line.  Each time **^N **is entered the next command line forward  in
                 time is accessed.
       **M-[B      **(Down arrow) Equivalent to **^N**.
       **^R_**string_  Reverse search history for a previous command line containing _string_.  If a parame‐
                 ter of zero is given, the search is forward.  _String_ is terminated by a `RETURN' or
                 `NEW LINE'.  If string is preceded by a **^**, the matched line must begin with _string_.
                 If  _string_ is omitted, then the next command line containing the most recent _string_
                 is accessed.  In this case a parameter  of  zero  reverses  the  direction  of  the
                 search.
       **^G        **Exit reverse search mode.
       **^O        **Operate - Execute the current line and fetch the next line relative to current line
                 from the history file.
       **M-_**digits_  (Escape)  Define numeric parameter, the digits are taken as a parameter to the next
                 command.  The commands that accept a parameter are **^F**, **^B**, _erase_, **^C**, **^D**,  **^K**,  **^R**,
                 **^P**,  **^N**, **^]**, **M-.**, **M-^]**, **M-_**, **M-=**, **M-b**, **M-c**, **M-d**, **M-f**, **M-h**, **M-l**, **M-^H**, and the arrow
                 keys and forward-delete key.
       **M-_**letter_  Soft-key - Your alias list is searched for an alias by the name **__**letter_ and  if  an
                 alias  of this name is defined, its value will be inserted on the input queue.  The
                 _letter_ must not be one of the above meta-functions.
       **M-[_**letter_ Soft-key - Your alias list is searched for an alias by the name **___**letter_ and if  an
                 alias of this name is defined, its value will be inserted on the input queue.  This
                 can be used to program function keys on many terminals.
       **M-.       **The  last  word  of the previous command is inserted on the line.  If preceded by a
                 numeric parameter, the value of this parameter  determines  which  word  to  insert
                 rather than the last word.
       **M-_       **Same as **M-.**.
       **M-*       **Attempt  pathname  expansion  on  the current word.  An asterisk is appended if the
                 word doesn't match any file or contain any special pattern characters.
       **M-ESC     **Command or file name completion as described above.
       **^I _**tab_    Attempts command or file name completion as described above.  If a partial  comple‐
                 tion  occurs,  repeating  this  will behave as if **M-= **were entered.  If no match is
                 found or entered after _space_, a _tab_ is inserted.
       **M-=       **If not preceded by a numeric parameter, it generates the list of matching  commands
                 or file names as described above.  Otherwise, the word under the cursor is replaced
                 by  the  item corresponding to the value of the numeric parameter from the most re‐
                 cently generated command or file list.  If the cursor is not on a word, it  is  in‐
                 serted instead.
       **^U        **Multiply parameter of next command by 4.
       **\         **If  the  **backslashctrl  **shell option is on (which is the default setting), this es‐
                 capes the next character.  Editing characters, the user's erase, kill and interrupt
                 (normally **^C**) characters may be entered in a command line or in a search string  if
                 preceded  by  a  **\**.   The **\ **removes the next character's editing features (if any).
                 See also _lnext_ which is not subject to any shell option.
       **M-^V      **Display version of the shell.
       **M-[2~     **(Insert) Escape the next character.
       **M-#       **If the line does not begin with a **#**, a **# **is inserted at the beginning of  the  line
                 and  after each new-line, and the line is entered.  This causes a comment to be in‐
                 serted in the history file.  If the line begins with a **#**, the **# **is deleted and  one
                 **# **after each new-line is also deleted.

### Vi Editing Mode.
       There  are  two typing modes.  Initially, when you enter a command you are in the _input_ mode.
       To edit, the user enters _control_ mode by typing ESC (**033**) and moves the cursor to  the  point
       needing  correction  and then inserts or deletes characters or words as needed.  Most control
       commands accept an optional repeat _count_ prior to the command.

       The notation for control characters used below is **^ **followed by a character. For instance, **^H**
       is entered by holding down the Control key and pressing H.  **^[ **(Control+**[**) is  equivalent  to
       the ESC key.  The notation for escape sequences is **^[ **followed by one or more characters.

       The  **^[[  **(ESC  **[**) multi-character commands below are DEC VT220 escape sequences generated by
       special keys on standard PC keyboards, such as the arrow keys, which are indicated in  paren‐
       theses.  When in _input_ mode, these keys will switch you to _control_ mode before performing the
       associated action.  These sequences can use preceding repeat count parameters, but only  when
       the  **^[ **and the subsequent **[ **are entered into the input buffer at the same time, such as when
       pressing one of those keys.

### Input Edit Commands
              By default the editor is in input mode.

              _erase_     (User defined erase character as defined by the [_stty_(1)](https://www.chedong.com/phpMan.php/man/stty/1/markdown) command, usually  **^H**
                        or **#**.)  Delete previous character.
              **^W        **Delete the previous blank separated word.
              _eof_       As  the first character of the line causes the shell to terminate unless the
                        **ignoreeof **option is set.  Otherwise this character is ignored.
              _lnext_     (User defined literal next character as defined by the [_stty_(1)](https://www.chedong.com/phpMan.php/man/stty/1/markdown) or **^V **if  not
                        defined.)  Removes the next character's editing features (if any).
              **\         **If the **backslashctrl **shell option is on (which is the default setting), this
                        escapes the next _erase_ or _kill_ character.
              **^I _**tab_    Attempts  command  or file name completion as described above and returns to
                        input mode. If a partial completion occurs, repeating this will behave as if
                        **= **were entered from control mode.  If no match is  found  or  entered  after
                        _space_, a _tab_ is inserted.

### Motion Edit Commands
              These commands will move the cursor.

              [_count_]**l  **Cursor forward (right) one character.
              [_count_]**^[[C**
                        (Right arrow) Same as **l**.
              [_count_]**w  **Cursor forward one alphanumeric word.
              [_count_]**W  **Cursor to the beginning of the next word that follows a blank.
              [_count_]**e  **Cursor to end of word.
              [_count_]**E  **Cursor to end of the current blank delimited word.
              [_count_]**h  **Cursor backward (left) one character.
              [_count_]**^[[D**
                        (Left arrow) Same as **h**.
              [_count_]**b  **Cursor backward one word.
              [_count_]**B  **Cursor to preceding blank separated word.
              [_count_]**|  **Cursor to column _count_.
              [_count_]**f_**c_ Find the next character _c_ in the current line.
              [_count_]**F_**c_ Find the previous character _c_ in the current line.
              [_count_]**t_**c_ Equivalent to **f **followed by **h**.
              [_count_]**T_**c_ Equivalent to **F **followed by **l**.
              [_count_]**;  **Repeats _count_ times, the last single character find command, **f**, **F**, **t**, or **T**.
              [_count_]**,  **Reverses the last single character find command _count_ times.
              **0         **Cursor to start of line.
              **^[[H      **(Home) Same as **0**.
              **^[[1~     **Same as **0**.
              **^[[7~     **Same as **0**.
              **^[[1;3D   **(Alt-Left arrow) Same as **b**.
              **^[[1;5D   **(Ctrl-Left arrow) Same as **b**.
              **^[[1;9D   **(iTerm2 Alt-Left arrow) Same as **b**.
              **^[[1;3C   **(Alt-Right arrow) Same as **w**.
              **^[[1;5C   **(Ctrl-Right arrow) Same as **w**.
              **^[[1;9C   **(iTerm2 Alt-Right arrow) Same as **w**.
              **^[[2~     **(Insert) Same as **i**.
              **^[[3;5~   **(Ctrl-Delete) Same as **dw**.
              **^[OA      **(Up Arrow) Same as **^[[A**.
              **^[OB      **(Down Arrow) Same as **^[[B**.
              **^[OC      **(Right Arrow) Same as **^[[C**.
              **^[OD      **(Left Arrow) Same as **^[[D**.
              **^[O5C     **(Ctrl-Right Arrow) Same as **w**.
              **^[O5D     **(Ctrl-Left Arrow) Same as **b**.
              **^         **Cursor to first non-blank character in line.
              **$         **Cursor to end of line.
              **^[[F      **(End) Same as **$**.
              **^[[4~     **Same as **$**.
              **^[[8~     **Same as **$**.
              **^[[Y      **Same as **$**.
              **^G        **Exit reverse search mode.
              **%         **Moves  to  balancing  **(**,  **)**,  **{**, **}**, **[**, or **]**.  If cursor is not on one of the
                        above characters, the remainder of the line is searched for the first occur‐
                        rence of one of the above characters first.

### Search Edit Commands
              These commands access your command history.

              [_count_]**k  **Fetch previous command.  Each time **k **is entered the previous command back in
                        time is accessed.
              [_count_]**-  **Equivalent to **k**.
              [_count_]**^[[A**
                        (Up arrow) If cursor is at the end of the line it is equivalent  to  **/  **with
                        _string_ set to the contents of the current line.  Otherwise, it is equivalent
                        to **k**.
              [_count_]**j  **Fetch next command.  Each time **j **is entered the next command forward in time
                        is accessed.
              [_count_]**+  **Equivalent to **j**.
              [_count_]**^[[B**
                        (Down arrow) Equivalent to **j**.
              [_count_]**G  **The  command  number _count_ is fetched.  The default is the least recent his‐
                        tory command.
              **/_**string_   Search backward through history for a previous  command  containing  _string_.
                        _String_  is terminated by a `RETURN' or `NEW LINE'.  If string is preceded by
                        a **^**, the matched line must begin with _string_.  If _string_ is empty, the  pre‐
                        vious string will be used.
              **?_**string_   Same as **/ **except that search will be in the forward direction.
              **n         **Search for next match of the last pattern to **/ **or **?  **commands.
              **N         **Search  for  next match of the last pattern to **/ **or **?**, but in reverse direc‐
                        tion.

### Text Modification Edit Commands
              These commands will modify the line.

              **a         **Enter input mode and enter text after the current character.
              **A         **Append text to the end of the line.  Equivalent to **$a**.
              [_count_]**c_**motion_
              **c**[_count_]_motion_
                        Delete current character through the character that _motion_  would  move  the
                        cursor  to  and  enter  input mode.  If _motion_ is **c**, the entire line will be
                        deleted and input mode entered.
              **C         **Delete the current character through the end of line and enter  input  mode.
                        Equivalent to **c$**.
              **S         **Equivalent to **cc**.
              [_count_]**s  **Replace characters under the cursor in input mode.
              **D         **Delete the current character through the end of line.  Equivalent to **d$**.
              [_count_]**d_**motion_
              **d**[_count_]_motion_
                        Delete  current  character  through the character that _motion_ would move to.
                        If _motion_ is **d , **the entire line will be deleted.
              **i         **Enter input mode and insert text before the current character.
              **I         **Insert text before the first non-blank character.  Equivalent to **^i**.
              [_count_]**P  **Place the previous text modification before the cursor.
              [_count_]**p  **Place the previous text modification after the cursor.
              **R         **Enter input mode and replace characters on the screen  with  characters  you
                        type overlay fashion.
              [_count_]**r_**c_ Replace  the _count_ character(s) starting at the current cursor position with
                        _c_, and advance the cursor.
              [_count_]**x  **Delete current character.
              [_count_]**^[[3~**
                        (Forward delete) Same as **x**.
              [_count_]**X  **Delete preceding character.
              [_count_]**.  **Repeat the previous text modification command.
              [_count_]**∼  **Invert the case of the _count_ character(s) starting at the current cursor po‐
                        sition and advance the cursor.
              [_count_]**_  **Causes the _count_ word of the previous command to be appended and input  mode
                        entered.  The last word is used if _count_ is omitted.
              ***         **Causes  an  ***  **to be appended to the current word and pathname expansion at‐
                        tempted.  If no match is found, it rings the bell.  Otherwise, the  word  is
                        replaced by the matching pattern and input mode is entered.
              **\         **Command or file name completion as described above.

### Other Edit Commands
              Miscellaneous commands.

              [_count_]**y_**motion_
              **y**[_count_]_motion_
                        Yank  current  character through character that _motion_ would move the cursor
                        to and puts them into the delete buffer.  The text and cursor are unchanged.
              **yy        **Yanks the entire line.
              **Y         **Yanks from current position to end of line.  Equivalent to **y$**.
              **u         **Undo the last text modifying command.
              **U         **Undo all the text modifying commands performed on the line.
              [_count_]**v  **Returns the command **hist -e  ${VISUAL:-${EDITOR:-vi}}  _**count_  in  the  input
                        buffer to call a full editor — **vi **by default — on a history entry.  If _count_
                        is omitted, then the current line is used.
              **^L        **Line feed and print current line.  Has effect only in control mode.
              **^J        **(New line) Execute the current line, regardless of mode.
              **^M        **(Return) Execute the current line, regardless of mode.
              **#         **If the first character of the command is a **#**, then this command deletes this
                        **#  **and  each  **# **that follows a newline.  Otherwise, sends the line after in‐
                        serting a **# **in front of each line in the command.  Useful  for  causing  the
                        current  line  to  be  inserted in the history as a comment and uncommenting
                        previously commented commands in the history file.
              [_count_]**=  **If _count_ is not specified, it generates the list  of  matching  commands  or
                        file  names as described above.  Otherwise, the word under the cursor is re‐
                        placed by the _count_ item from the most recently generated  command  or  file
                        list.  If the cursor is not on a word, it is inserted instead.
              **@_**letter_   Your alias list is searched for an alias by the name **__**letter_ and if an alias
                        of  this  name is defined, its value will be inserted on the input queue for
                        processing.
              **^V        **Display version of the shell.

### Built-in Commands.
       The _simple-command_s listed below are built in to the shell  and  are  executed  in  the  same
       process  as  the  shell.  The effects of any added Input/Output redirections are local to the
       command, except for the **exec **and **redirect **commands.  Unless otherwise indicated,  the  output
       is  written on standard output (file descriptor 1) and the exit status, when there is no syn‐
       tax error, is zero.  Except for **:**, **true**, **false**, and **echo**, all built-in commands accept **--  **to
       indicate end of options, and are self-documenting.

       The  self-documenting  commands  interpret the option **--man **as a request to display that com‐
       mand's own manual page, **--help **as a request to display the _OPTIONS_ section from their  manual
       page,  and **-?  **as a request to print a brief usage message.  All these are processed as error
       messages, so they are written on standard error (file descriptor 2) and to pipe them  into  a
       pager  such  as [_more_(1)](https://www.chedong.com/phpMan.php/man/more/1/markdown) you need to add a **2>&1 **redirection before the **|**. The display of bold‐
       face text depends on whether standard error is on a terminal, so is  disabled  when  using  a
       pager. Exporting the **ERROR_OPTIONS **environment variable with a value containing _emphasis_ will
       force  this on; a value containing _noemphasis_ forces it off.  The **test**/**[ **command needs an ad‐
       ditional **-- **argument to recognize self-documentation options, e.g. **test --man --**.   The  **exec**
       and **redirect **commands, as they make redirections permanent, should use self-documentation op‐
       tions in a subshell when redirecting, for example: **(redirect --man) 2>&1**.  There are advanced
       output options as well; see **getopts --man **for more information.

       Commands  that are preceded by a † symbol below are _special_ _built-in_ _commands_ and are treated
       specially in the following ways:
              1.     Variable assignment lists preceding the command remain in effect when the  com‐
                     mand completes.
              2.     I/O redirections are processed after variable assignments.
              3.     Errors cause a script that contains them to abort.
              4.     They are not valid function names.

       Commands that are preceded by a ‡ symbol below are _declaration_ _commands_.  Any following words
       that  are  in the format of a variable assignment are expanded with the same rules as a vari‐
       able assignment.  This means that tilde expansion is performed after the **=  **sign,  array  as‐
       signments  of  the form _varname_**=(_**assign_list_**) **are supported, and field splitting and pathname
       expansion are not performed.

       † **: **[ _arg_ ... ]
              The command only expands parameters.

       † **. _**name_ [ _arg_ ... ]
              If _name_ is a function defined with the **function _**name_ reserved word syntax,  the  func‐
              tion is executed in the current environment (as if it had been defined with the _name_**()**
              syntax).  Otherwise if _name_ refers to a file, the file is read in its entirety and the
              commands  are executed in the current shell environment.  The search path specified by
              **PATH **is used to find the directory containing the file.   If  any  arguments  _arg_  are
              given,  they  become the positional parameters while processing the **.  **command and the
              original positional parameters are restored upon completion.  Otherwise the positional
              parameters are unchanged.  The exit status is the exit status of the last command exe‐
              cuted.

       **[ _**expression_ **]**
              The **[ **command is the same as **test**, with the exception that an additional closing **] **ar‐
              gument is required. See **test **below.

       **alias **[ **-ptx **]  [ _name_[ **=_**value_  ] ] ...
              **alias **with no arguments prints the list of aliases in the form _name=value_ on  standard
              output.  The **-p **option causes the word **alias **to be inserted before each one.  When one
              or  more  arguments are given, an _alias_ is defined for each _name_ whose _value_ is given.
              A trailing space in _value_ causes the next word to be checked for  alias  substitution.
              With the **-t **option, each name is looked up as a command in **$PATH **and its path is added
              to the hash table as a 'tracked alias'.  If no name is given, this prints the hash ta‐
              ble. See **hash.  **Without the **-t **option, for each _name_ in the argument list for which no
              _value_  is  given,  the name and value of the alias is printed.  The obsolete **-x **option
              has no effect in most contexts, although if it's used with **-t  **it  will  suppress  all
              output.   The  exit  status is non-zero if a _name_ is given, but no value, and no alias
              has been defined for the _name_.

       **autoload _**name_ ...
              Marks each _name_ undefined so that the **FPATH **variable will  be  searched  to  find  the
              function definition when the function is referenced.  The same as **typeset -fu**.

       **bg **[ _job_... ]
              This  command  is  only  on systems that support job control.  Puts each specified _job_
              into the background.  The current job is put in the background if _job_  is  not  speci‐
              fied.  See _Jobs_ for a description of the format of _job_.

       † **break **[ _n_ ]
              Exit from the enclosing **for**, **while**, **until**, or **select **loop, if any.  If _n_ is specified,
              then break _n_ levels.

       **builtin **[ **-ds **] [ **-f _**file_ ] [ _name_ ... ]
              If  _name_ is not specified, and no **-f **option is specified, the built-ins are printed on
              standard output.  The **-s **option prints only the special  built-ins.   Otherwise,  each
              _name_  represents  the  pathname whose basename is the name of the built-in.  The entry
              point function name is determined by prepending **b_ **to the built-in name.   A  built-in
              specified by a pathname will only be executed when that pathname would be found during
              the  path  search.  Built-ins found in libraries loaded via the **.paths **file will asso‐
              ciate with the pathname of the directory containing the **.paths **file.

              The ISO C/C++ prototype is **b__**mycommand_**(int _**argc_, **char *_**argv_**[]**, **void *_**context_**) **for  the
              builtin  command  _mycommand_  where _argv_ is array an of _argc_ elements and context is an
              optional pointer to a **Shell_t **structure as described in **<ast/shell.h>**.

              Special built-ins cannot be bound to a pathname or deleted.   The  **-d  **option  deletes
              each  of  the given built-ins.  On systems that support dynamic loading, the **-f **option
              names a shared library containing the code for built-ins.  The shared  library  prefix
              and/or  suffix, which depend on the system, can be omitted.  Once a library is loaded,
              its symbols become available for subsequent  invocations  of  **builtin**.   Multiple  li‐
              braries  can be specified with separate invocations of the **builtin **command.  Libraries
              are searched in the reverse order in which they are  specified.   When  a  library  is
              loaded,  it  looks  for a function in the library whose name is **lib_init() **and invokes
              this function with an argument of **0**.

       **cd **[ **-L **] [ **-eP **] [ _arg_ ]
       **cd **[ **-L **] [ **-eP **] _old_ _new_
              This command can be in either of two forms.  In the first form it changes the  current
              directory  to  _arg_.   If  _arg_ is **- **the directory is changed to the previous directory.
              The shell variable **HOME **is the default _arg_.  The variable **PWD **is set  to  the  current
              directory.   The  shell variable **CDPATH **defines the search path for the directory con‐
              taining _arg_.  Alternative directory names are separated by a colon (**:**).   The  default
              path  is  the  empty string (specifying the current directory).  Note that the current
              directory may be specified by a dot (**.**)  or by an empty path name, either of which can
              appear immediately after the equal sign or between the colon delimiters anywhere  else
              in  the  path  list.  If _arg_ begins with a **/ **then the search path is not used.  Other‐
              wise, each directory in the path is searched for _arg_.
              The second form of **cd **substitutes the string _new_ for the string _old_ in the current di‐
              rectory name, **PWD**, and tries to change to this new directory.
              By default, symbolic link names are treated literally when finding the directory name.
              This is equivalent to the **-L **option.  The **-P **option causes symbolic links  to  be  re‐
              solved  when  determining the directory.  The last instance of **-L **or **-P **on the command
              line determines which method is used.
              If **-e **and **-P **are both in effect and the correct **PWD **could not be determined after suc‐
              cessfully changing the directory, **cd **will return with exit status one and  produce  no
              output.   If  any  other  error occurs while both flags are active, the exit status is
              greater than one.
              The **cd **command may not be executed by **rksh.**

       **command **[ **-pvxV **] _name_ [ _arg_ ... ]
              With the **-v **option, **command **is equivalent to the built-in **whence **command described be‐
              low.  The **-V **option causes **command **to act like **whence -v**.

              Without the **-v **or **-V **options, **command **executes _name_ with the arguments given  by  _arg_.
              Functions and aliases will not be searched for when finding _name_.  If _name_ refers to a
              special  built-in, as marked with **† **in this manual, **command **disables the special prop‐
              erties described above for that mark, executing the command  as  a  regular  built-in.
              (For example, using **command set -o _**option-name_ prevents a script from terminating when
              an invalid option name is given.)

              The **-p **option causes the operating system's standard utilities path (as output by **get‐**
              **conf PATH**) to be searched rather than the one defined by the value of **PATH**.

              The  **-x  **option searches for _name_ as an external command, bypassing built-ins.  If the
              arguments contain at least one word that expands to multiple  arguments,  for  example
              ***.txt  **or  **"$@"**, then the **-x **option also allows executing external commands with argu‐
              ment lists that are longer than the operating system  allows.  This  functionality  is
              similar to [**xargs**(1)](https://www.chedong.com/phpMan.php/man/xargs/1/markdown) but is easier to use. The shell does this by invoking the external
              command multiple times if needed, dividing the expanded argument list over the invoca‐
              tions.  Any  arguments  that come before the first word that expands to multiple argu‐
              ments, as well as any that follow the last such word, are repeated  for  each  invoca‐
              tion. This allows each invocation to use the same command options, as well as the same
              trailing destination arguments for commands like [**cp**(1)](https://www.chedong.com/phpMan.php/man/cp/1/markdown) or [**mv**(1)](https://www.chedong.com/phpMan.php/man/mv/1/markdown).  When all invocations
              are completed, **command -x **exits with the status of the invocation that had the highest
              exit  status.   (Note  that **command -x **may still fail with an "argument list too long"
              error if a single argument exceeds the maximum length of the argument list,  or  if  a
              long arguments list contains no word that expands to multiple arguments.)

       ‡ **compound _**vname_[**=_**value_] ...
              Causes each _vname_ to be a compound variable.  The same as **typeset -C**.

       † **continue **[ _n_ ]
              Resume the next iteration of the enclosing **for**, **while**, **until**, or **select **loop.  If _n_ is
              specified, then resume at the _n_-th enclosing loop.

       **disown **[ _job_... ]
              Causes the shell not to send a HUP signal to each given _job_, or all active jobs if _job_
              is omitted, when a login shell terminates.

       **echo **[ _arg_ ... ]
              When  the  first  _arg_  does not begin with a -, and none of the arguments contain a \,
              then **echo **prints each of its arguments separated by a space and terminated by  a  new-
              line.   Otherwise,  the  behavior  of **echo **is system dependent and **print **or **printf **de‐
              scribed below should be used.  See [_echo_(1)](https://www.chedong.com/phpMan.php/man/echo/1/markdown) for usage and description.

       ‡ **enum **[ **-i **] _type_[=(_value_ ...) ] ...
              Creates, for each _type_ specified, an enumeration type declaration command named  _type_.
              Variables  of  the created type can only store any one of the _value_s given.  For exam‐
              ple, **enum bool=(false true) **creates a Boolean variable type of which variables may  be
              declared  like  **bool x=true y=false**.  If **=(_**value_ _..._**) **is omitted, then _type_ must be an
              indexed array variable with at least two elements and the values are taken  from  this
              array variable.  If **-i **is specified the values are case-insensitive.  Declaration com‐
              mands  are  created  as special builtins that cannot be removed or overridden by shell
              functions.  Each created declaration command has a **--man **option that shows  documenta‐
              tion on its type's behavior and possible values.

              Within arithmetic expressions (see _Arithmetic_ _Evaluation_ above), enumeration type val‐
              ues  translate to index numbers between 0 and the number of defined values minus 1. It
              is an error for an arithmetic expression to assign a value outside of that range. Dec‐
              imal fractions are ignored.  Taking the **bool **type from the example above, if  a  vari‐
              able  of this type is used in an arithmetic expression, **false **translates to 0 and **true**
              to 1.  Enumeration values may also be used directly in an arithmetic  expression  that
              refers  to  a  variable  of  an enumeration type.  To continue our example, for a **bool**
              variable **v**, **((v==true)) **is the same as **((v==1)) **and if a variable named  **true  **exists,
              it is ignored.

       † **eval **[ _arg_ ... ]
              The arguments are read as input to the shell and the resulting command(s) executed.

       † **exec **[ **-c **] [ **-a _**name_ ] [ _arg_ ... ]
              If  _arg_  is given, the command specified by the arguments is executed in place of this
              shell without creating a new process.  The value of the **SHLVL **environment variable  is
              decreased  by  one, unless the shell replaced is a subshell.  The **-c **option causes the
              environment to be cleared before applying variable  assignments  associated  with  the
              **exec  **invocation.   The  **-a  **option  causes  _name_ rather than the first _arg_, to become
              **argv[0] **for the new process.  If _arg_ is not given and only I/O redirections are given,
              then this command persistently modifies file descriptors as in **redirect.**

       † **exit **[ _n_ ]
              Causes the shell to exit with the exit status specified by _n_.  The value will  be  the
              least significant 8 bits of _n_ (if specified) or of the exit status of the last command
              executed.  An end-of-file will also cause the shell to exit, except for an interactive
              shell that has the **ignoreeof **option turned on (see **set **below).

       †‡ **export **[ **-p **] [ _name_[**=_**value_] ] ...
              If  _name_ is not given, the names and values of each variable with the export attribute
              are printed with the values quoted in a manner that allows them to be  re-input.   The
              **export  **command is the same as **typeset -x **except that if you use **export **within a func‐
              tion, no local variable is created.  The **-p **option causes the word **export  **to  be  in‐
              serted before each one.  Otherwise, the given _name_s are marked for automatic export to
              the _environment_ of subsequently-executed commands.

       **false  **Does nothing, and exits 1. Used with **until **for infinite loops.

       **fc **[ **-e _**ename_  ] [ **-N _**num_ ] [ **-nlr **] [ _first_ [ _last_ ] ]
       **fc -s  **[ _old_**=_**new_ ] [ _command_ ]
              The same as **hist**.

       **fg **[ _job_... ]
              This  command  is  only  on  systems  that support job control.  Each _job_ specified is
              brought to the foreground and waited for in the specified order.  Otherwise, the  cur‐
              rent  job is brought into the foreground.  See _Jobs_ for a description of the format of
              _job_.

       ‡ **float _**vname_[**=_**value_] ...
              Declares each _vname_ to be a long floating point number.  The same as **typeset -lE**.

       **functions **[ **-Stux **] [ _name_ ... ]
              Lists functions.  The same as **typeset -f**.

       **getconf **[ _name_ [ _pathname_ ] ]
              Prints the current value of the configuration parameter given by _name_.  The configura‐
              tion parameters are defined by the IEEE POSIX 1003.1 and IEEE POSIX 1003.2  standards.
              (See  [_pathconf_(2)](https://www.chedong.com/phpMan.php/man/pathconf/2/markdown)  and  [_sysconf_(3)](https://www.chedong.com/phpMan.php/man/sysconf/3/markdown).)  The _pathname_ argument is required for parameters
              whose value depends on the location in the file system.  If no  arguments  are  given,
              **getconf  **prints  the  names  and  values of the current configuration parameters.  The
              pathname **/ **is used for each of the parameters that requires _pathname_.

       **getopts **[ **-a _**name_ ] _optstring_ _vname_ [ _arg_ ... ]
              Checks _arg_ for legal options.  If _arg_ is omitted, the positional parameters are  used.
              An option argument begins with a **+ **or a **-**.  An option not beginning with **+ **or **- **or the
              argument  **-- **ends the options.  Options beginning with **+ **are only recognized when _opt‐_
              _string_ begins with a **+**.  _optstring_ contains the letters that **getopts **recognizes.  If a
              letter is followed by a **:**, that option is expected to have an argument.   The  options
              can be separated from the argument by blanks.  The option **-?  **causes **getopts **to gener‐
              ate  a  usage  message  on standard error.  The **-a **argument can be used to specify the
              name to use for the usage message, which defaults to **$0**.
              **getopts **places the next option letter it finds inside variable _vname_ each time  it  is
              invoked.   The option letter will be prepended with a **+ **when _arg_ begins with a **+**.  The
              index of the next _arg_ is stored in **OPTIND**.  The option argument, if any,  gets  stored
              in **OPTARG**.
              A  leading  **:  **in _optstring_ causes **getopts **to store the letter of an invalid option in
              **OPTARG**, and to set _vname_ to **?  **for an unknown option and to **: **when a  required  option
              argument  is missing.  Otherwise, **getopts **prints an error message.  The exit status is
              non-zero when there are no more options.
              There is no way to specify any of the options **:**, **+**, **-**, **?**, **[**, and **]**.  The option **#  **can
              only be specified as the first option.

       **hash **[ **-r **] [ **utility **]
              **hash **displays or modifies the hash table with the locations of recently used programs.
              If  given  no  arguments,  it  lists  all  command/path  associations (a.k.a. 'tracked
              aliases') in the hash table. Otherwise, **hash **performs a **PATH **search for  each  _utility_
              supplied and adds the result to the hash table.  The **-r **option empties the hash table.
              This can also be achieved by resetting **PATH.**

       **hist **[ **-e _**ename_  ] [ **-N _**num_ ] [ **-nlr **] [ _first_ [ _last_ ] ]
       **hist -s **[ _old_**=_**new_ ] [ _command_ ]
              In  the  first  form, a range of commands from _first_ to _last_ is selected from the last
              **HISTSIZE **commands that were typed at the terminal.  The arguments _first_ and  _last_  may
              be  specified  as a number or as a string.  A string is used to locate the most recent
              command starting with the given string.  A negative number is used as an offset to the
              current command number.  If the **-l **option is selected,  the  commands  are  listed  on
              standard  output.  Otherwise, the editor program _ename_ is invoked on a file containing
              these keyboard commands.  If _ename_ is not supplied, then the  value  of  the  variable
              **HISTEDIT  **is  used.   If **HISTEDIT **is not set, then **FCEDIT **(default **/bin/ed**) is used as
              the editor.  When editing is complete,  the  edited  command(s)  is  executed  if  the
              changes  have been saved.  If _last_ is not specified, then it will be set to _first_.  If
              _first_ is not specified, the default is the previous command for editing  and  -16  for
              listing.   The  option  **-r  **reverses  the order of the commands and the option **-n **sup‐
              presses command numbers when listing.  In the second form, _command_ is  interpreted  as
              _first_  described  above and defaults to the last command executed.  The resulting com‐
              mand is executed after the optional substitution _old_**=_**new_ is performed.  The option  **-N**
              causes **hist **to start _num_ commands back.

       ‡ **integer _**vname_[**=_**value_] ...
              Declares each _vname_ to be a long integer number.  The same as **typeset -li**.

       **jobs **[ **-lnp **] [ _job_ ... ]
              Lists  information about each given job; or all active jobs if _job_ is omitted.  The **-l**
              option lists process IDs in addition to the normal information.  The  **-n  **option  only
              displays  jobs  that have stopped or exited since last notified.  The **-p **option causes
              only the process group to be listed.  See _Jobs_ for a description of the format of _job_.

       **kill **[ **-s _**signame_ ] _job_ ...
       **kill **[ **-n _**signum_ ] _job_ ...
       **kill -Ll **[ _sig_ ... ]
              Sends either the TERM (terminate) signal or the specified signal to the specified jobs
              or processes.  Signals are either given by number with the **-n **option or by  name  with
              the  **-s  **option (as given in **<signal.h>**, stripped of the prefix ``SIG''.  For backward
              compatibility, the **n **and **s **can be omitted and the number or  name  placed  immediately
              after  the  **-**.  If the signal being sent is TERM (terminate) or HUP (hangup), then the
              job or process will be sent a CONT (continue) signal if it is stopped.   The  argument
              _job_ can be the process ID of a process that is not a member of one of the active jobs.
              See  _Jobs_  for a description of the format of _job_.  In the third form, **kill -l **or **kill**
              **-L**, if _sig_ is not specified, the signal names are listed.  The **-l  **option  lists  only
              the  signal  names.   The  **-L  **option lists each signal name and corresponding number.
              Otherwise, for each _sig_ that is a name, the corresponding  signal  number  is  listed.
              For  each _sig_ that is a number, the signal name corresponding to the least significant
              8 bits of _sig_ is listed.

       **let _**arg_ ...
              Each _arg_ is a separate _arithmetic_ _expression_ to be evaluated.  **let **only recognizes oc‐
              tal numbers starting with **0 **when the **set **option **letoctal **is on.  See _Arithmetic_ _Evalu‐_
              _ation_ above for a description of arithmetic expression evaluation.
              The exit status is 0 if the value of the last expression is non-zero, and 1 otherwise.

       ‡ **nameref _**vname_[**=_**refname_] ...
              Declares each _vname_ to be a variable name reference.  The same as **typeset -n**.

       **print **[ **-CRenprsv **] [ **-u _**unit_ ] [ **-f _**format_ ] [ _arg_ ... ]
              With no options or with option **- **or **--**, each _arg_ is printed on standard  output.   The
              **-f  **option  causes  the arguments to be printed as described by **printf**.  In this case,
              any **e**, **n**, **r**, **R **options are ignored.  Otherwise, unless the **-C**, **-R**, **-r**, or **-v **are spec‐
              ified, the following escape conventions will be applied:
              **\a     **The alert character (ASCII **07**).
              **\b     **The backspace character (ASCII **010**).
              **\c     **Causes **print **to end without processing more arguments and  not  adding  a  new-
                     line.
              **\f     **The formfeed character (ASCII **014**).
              **\n     **The newline character (ASCII **012**).
              **\r     **The carriage return character (ASCII **015**).
              **\t     **The tab character (ASCII **011**).
              **\v     **The vertical tab character (ASCII **013**).
              **\E     **The escape character (ASCII **033**).
              **\\     **The backslash character \.
              **\0_**x_    The character defined by the 1, 2, or 3-digit octal string given by _x_.

              The  **-R  **option will print all subsequent arguments and options other than **-n**.  The **-e**
              causes the above escape conventions to be applied.  This is the default behavior.   It
              reverses  the effect of an earlier **-r**.  The **-p **option causes the arguments to be writ‐
              ten onto the pipe of the process spawned with **|& **instead of standard output.   The  **-v**
              option  treats  each _arg_ as a variable name and writes the value in the **printf %B **for‐
              mat.  The **-C **option treats each _arg_ as a variable name and writes  the  value  in  the
              **printf  %#B **format.  The **-s **option causes the arguments to be written onto the history
              file instead of standard output.  The **-u **option can be used to  specify  a  one  digit
              file  descriptor  unit number _unit_ on which the output will be placed.  The default is
              1.  If the option **-n **is used, no **new-line **is added to the output.

       **printf **[ **-v _**vname_ ] _format_ [ _arg_ ... ]
              The arguments _arg_ are printed on standard output in accordance with the ANSI C format‐
              ting rules associated with the format string _format_.  If the number of  arguments  ex‐
              ceeds  the  number of format specifications, the **format **string is reused to format re‐
              maining arguments.  The following extensions can also be used:
              **%b     **A **%b **format can be used instead of **%s **to cause escape sequences in  the  corre‐
                     sponding _arg_ to be expanded as described in **print.**
              **%B     **A  **%B  **option  causes each of the arguments to be treated as variable names and
                     the binary value of variable will be printed.  The alternate flag  **#  **causes  a
                     compound  variable to be output on a single line.  This is most useful for com‐
                     pound variables and variables whose attribute is **-b**.
              **%H     **A **%H **format can be used instead of **%s **to cause characters in _arg_ that are  spe‐
                     cial  in  HTML and XML to be output as their entity name.  The alternate flag **#**
                     formats the output for use as a URI.
              **%p     **A **%p **format will convert the given number to hexadecimal.
              **%P     **A **%P **format can be used instead of **%s **to cause _arg_ to be interpreted as an  ex‐
                     tended regular expression and be printed as a shell pattern.
              **%q     **A  **%q  **format  can  be  used  instead of **%s **to cause the resulting string to be
                     quoted in a manner than can be reinput to the shell.  When **q **is preceded by the
                     alternative format specifier, **#**, the string is quoted in manner suitable  as  a
                     field in a **.csv **format file.
              **%(_**date-format_**)T**
                     A **%(_**date-format_**)T **format can be used to treat an argument as a date/time string
                     and to format the date/time according to the _date-format_.
              **%Q     **A **%Q **format will convert the given number of seconds to readable time.
              **%R     **A **%R **format can be used instead of **%s **to cause _arg_ to be interpreted as a shell
                     pattern and to be printed as an extended regular expression.
              **%Z     **A **%Z **format will output a byte whose value is 0.
              **%d     **The  precision  field  of  the **%d **format can be followed by a **.  **and the output
                     base.  In this case, the **# **flag character causes _base_**# **to be  prepended.   When
                     an  output base is specified without giving a precision (e.g.  **%..2d**), the pre‐
                     cision defaults to 1 instead of 0.
              **#      **The **# **flag, when used with the **%d **format without an output base,  displays  the
                     output  in powers of 1000 indicated by one of the following suffixes: **k M G T P**
                     **E**, and when used with the **%i **format displays the output in powers of 1024 indi‐
                     cated by one of the following suffixes: **Ki Mi Gi Ti Pi Ei**.
              **=      **The **= **flag centers the output within the specified field width.
              **L      **The **L **flag, when used with the **%c **or **%s **formats, treats precision as  character
                     width instead of byte count.
              **,      **The  **,  **flag,  when  used with the **%d **or **%f **formats, separates groups of digits
                     with the grouping delimiter (**, **on groups of 3 in the C locale).

              The **-v **option assigns the output directly to a variable instead of writing it to stan‐
              dard output. This is faster than capturing the output using a command substitution and
              avoids the latter's stripping of final linefeed characters (**\n**).  The  _vname_  argument
              should  be  a  valid  variable  name,  optionally with one or more array subscripts in
              square brackets.  Note that square brackets should be quoted to avoid pathname  expan‐
              sion.


       **pwd **[ **-LP **]
              Outputs  the value of the current working directory.  The **-L **option is the default; it
              prints the logical name of the current directory.  If the **-P **option is given, all sym‐
              bolic links are resolved from the name.  The last instance of **-L **or **-P **on the  command
              line determines which method is used.

       **read **[ **-ACSaprsv **] [ **-d _**delim_ ] [ **-n _**n_ ] [ **-N _**n_ ] [ **-t _**timeout_ ] [ **-u _**unit_ ] [ _vname_**?_**prompt_ ]
       [ _vname_ ... ]
              The  shell  input  mechanism.  One line is read and is broken up into fields using the
              characters in **IFS **as separators.  The escape character, **\**, is used to remove any  spe‐
              cial meaning for the next character and for line continuation.  The first field is as‐
              signed  to  the first _vname_, the second field to the second _vname_, etc., with leftover
              fields assigned to the last _vname_.  If _vname_ is omitted, then **REPLY **is used as the de‐
              fault _vname_.  When _vname_ has the binary attribute and **-n **or **-N **is specified, the bytes
              that are read are stored directly into the variable.  If you  append  **?_**prompt_  to  the
              first  _vname_,  then **read **will display _prompt_ on standard error before reading if stan‐
              dard input is a terminal or pipe; the **? **should be quoted to protect it  from  pathname
              expansion.   The  exit  status  is  0 unless an end-of-file is encountered or **read **has
              timed out.  The options for the **read **command have meaning as follows:
              **-A      **Causes the variable _vname_ to be unset and each field that is read to be stored
                      in successive elements of the indexed array _vname._
              **-C      **Causes the variable _vname_ to be read as a compound variable.  Blanks  will  be
                      ignored when finding the beginning open parenthesis.
              **-N      **Causes  _n_  bytes  to be read unless an end-of-file has been encountered or the
                      read times out because of the **-t **option.
              **-S      **Causes the line to be treated like a record in a **.csv **format file so that dou‐
                      ble quotes can be used to allow the delimiter character and the new-line char‐
                      acter to appear within a field.
              **-a      **Same as **-A**.
              **-d      **Causes the read to continue to the first character of  _delim_  instead  of  the
                      newline control character.  Multibyte characters for _delim_ are not supported.
              **-n      **Causes at most _n_ bytes to be read instead of a full line, but will return when
                      reading from a slow device as soon as any characters have been read.
              **-p      **Input  is  read from the current co-process spawned by the shell using **⎪&**.  An
                      end-of-file causes **read **to disconnect the co-process so that  another  can  be
                      created.
              **-r      **Raw mode. The **\ **character is not treated specially.
              **-s      **The input will be saved as a command in the history file.
              **-t      **Used to specify a timeout in seconds when reading from a terminal or pipe.
              **-u      **This  option  can  be used to specify a one-digit file descriptor unit _unit_ to
                      read from.  The file descriptor can be opened with the **exec **or **redirect **built-
                      in command.  If _unit_ is **p**, input is read from the current co-process  as  with
                      the **-p **option.  The default value of _unit_ is 0.
              **-v      **The value of the first _vname_ will be used as a default value when reading from
                      a terminal device.

       †‡ **readonly **[ **-p **] [ _vname_[**=_**value_] ] ...
              If  _vname_  is  not given, the names and values of each variable with the read-only at‐
              tribute is printed with the values quoted in a manner that allows them to be re-input.
              The **-p **option causes the word **readonly **to be inserted before each one.  Otherwise, the
              given _vname_s are marked read-only and these names cannot be changed by subsequent  as‐
              signment.  Unlike **typeset -r , readonly **does not create a function-local scope and the
              given  _vname_s  are marked globally read-only by default.  When defining a type, if the
              value of a read-only subvariable is not defined, the value is required  when  creating
              each instance.

### redirect
              This  command only accepts input/output redirections.  It can open and close files and
              modify file descriptors from **0 **to **9 **as specified by the input/output redirection  list
              (see  the  _Input/Output_  section  above), with the difference that the effect persists
              past the execution of the **redirect **command.  When invoking another program,  file  de‐
              scriptors  greater  than  **2 **that were opened with this mechanism are only passed on if
              they are explicitly redirected to themselves as part of the invocation (e.g. **4>&4**)  or
              if the **posix **option is set.

       † **return **[ _n_ ]
              Causes a shell function, dot script (see **. **and **source**), or profile script to return to
              the invoking shell environment with the exit status specified by _n_.  This status value
              can  use  the  full  signed integer range as shown by the commands **getconf INT_MIN **and
              **getconf INT_MAX**. A value outside that range will produce a warning and an exit  status
              of  128.   If  _n_ is omitted, then the value of **$? **is assumed, i.e., the exit status of
              the last command executed is passed on.  If **return **is invoked while not in a function,
              dot script, or profile script, then it behaves the same as **exit**.

       † **set **[ **±BCGHabefhkmnprstuvx **] [ **±o **[ _option_ ] ] ... [ **±A _**vname_ ]  [ _arg_ ... ]
              The options for this command have meaning as follows:
              **-A      **Array assignment.  Unset the variable _vname_  and  assign  values  sequentially
                      from the _arg_ list.  If **+A **is used, the variable _vname_ is not unset first.
              **-B      **Enable brace group expansion. On by default, except if ksh is invoked as **sh **or
                      **rsh**.
              **-C      **Prevents redirection **> **from truncating existing files.  Files that are created
                      are  opened  with the O_EXCL mode.  Requires **>| **to truncate a file when turned
                      on.
              **-G      **Enables recursive pathname expansion.  This adds the double-star pattern **** **to
                      the pathname expansion (see _Pathname_ _Expansion_ above).  By itself, it  matches
                      the  recursive  contents  of the current directory, which is to say, all files
                      and directories in the current directory and in all its  subdirectories,  sub-
                      subdirectories, and so on.  If the pathname pattern ends in ****/**, only directo‐
                      ries  and  subdirectories  are matched, including symbolic links that point to
                      directories.  A prefixed directory name is not included in the results  unless
                      that  directory was itself found by a pattern. For example, **dir/** **matches the
                      recursive contents of **dir **but not **dir **itself, whereas  **di[r]/**  **matches  both
                      **dir  **itself and the recursive contents of **dir**.  Symbolic links to non-directo‐
                      ries are not followed.  Symbolic links to directories are followed if they are
                      specified literally or match a pattern as described under _Pathname_  _Expansion_,
                      but not if they result from a double-star pattern.
              **-H      **Enable  **!**-style  history  expansion  similar to [_csh_(1)](https://www.chedong.com/phpMan.php/man/csh/1/markdown).  See _History_ _Expansion_
                      above.
              **-a      **All variables that are assigned a value while this option is on are  automati‐
                      cally  exported,  unless  they have a dot in their name.  Variables created in
                      namespaces declared with the **namespace **keyword (see  _Name_  _Spaces_  above)  are
                      only exported while their name space is active.
              **-b      **Prints  job  completion  messages  as  soon  as a background job changes state
                      rather than waiting for the next prompt.  If one of the shell line editors  is
                      in use (see _In-line_ _Editing_ _Options_ above), the completion message is inserted
                      directly above the command line being typed.
              **-e      **Unless  contained  in a **|| **or **&& **command, or the command following an **if while**
                      or **until **command or in the pipeline following **!**, if a command has  a  non-zero
                      exit  status,  execute  the **ERR **trap, if set, and exit.  This mode is disabled
                      while reading profiles.
              **-f      **Disables pathname expansion.
              **-h      **Obsolete; no effect.
              **-k      **All variable assignment arguments are placed in the environment for a command,
                      not just those that precede the command name.
              **-m      **Background jobs will run in a separate process group and  a  line  will  print
                      upon  completion.  The exit status of background jobs is reported in a comple‐
                      tion message.  A pipeline will not terminate until all component  commands  of
                      the  pipeline  have  terminated.   On systems with job control, this option is
                      turned on automatically for interactive shells.
              **-n      **Read commands and check them for syntax errors, but do not execute them.   Ig‐
                      nored for interactive shells.
              **-o      **The following argument can be one of the following option names:
                      **allexport**
                              Same as **-a**.
                      **backslashctrl**
                              The  backslash  character  **\ **escapes the next control character in the
                              **emacs **built-in editor and the next _erase_ or _kill_ character in  the  **vi**
                              built-in editor.  On by default.
                      **bgnice  **All  background jobs are run at a lower priority.  This is the default
                              mode.
                      **braceexpand**
                              Same as **-B**.
                      **emacs   **Activates the _emacs_-style command line editor.  See _Emacs_ _Editing_ _Mode_
                              above.
                      **errexit **Same as **-e**.
                      **functrace**
                              Causes the **-x **option's state and the **DEBUG **trap action to be inherited
                              by functions defined using the **function **keyword (see _Functions_  above)
                              instead  of  being  reset to default.  Changes made to them within the
                              function do not propagate back to the parent scope.   Similarly,  this
                              option also causes the **DEBUG **trap action to be inherited by subshells.
                      **globcasedetect**
                              When this option is turned on, globbing (see _Pathname_ _Expansion_ above)
                              and  file  name  listing  and  completion (see _In-line_ _Editing_ _Options_
                              above) automatically become case-insensitive on file systems where the
                              difference between upper- and lowercase is  ignored  for  file  names.
                              This is transparently determined for each directory, so a path pattern
                              that  spans  multiple file systems can be part case-sensitive and part
                              case-insensitive.  In more precise terms,  each  slash-separated  path
                              name  component pattern _p_ is treated as **~(i:_**p_**) **if its parent directory
                              exists on a case-insensitive file system.  This option is only present
                              on operating systems that support case-insensitive file systems.
                      **globstar**
                              Same as **-G**.
                      **gmacs   **Activates the _emacs_-style command line editor with modified  **^T**.   See
                              _Emacs_ _Editing_ _Mode_ above.
                      **histexpand**
                              Same as **-H**.
                      **histreedit**
                              If  a  history  expansion (see **-H**) fails, the command line is reloaded
                              into the next prompt's edit buffer, allowing corrections.
                      **histverify**
                              The results of a history expansion (see **-H**) are not  immediately  exe‐
                              cuted.   Instead,  the  expanded line is loaded into the next prompt's
                              edit buffer, allowing further changes.
                      **ignoreeof**
                              An interactive shell will not exit on end-of-file.  The  command  **exit**
                              must be used.
                      **keyword **Same as **-k**.
                      **letoctal**
                              The  **let  **command allows octal numbers starting with **0**.  On by default
                              if ksh is invoked as **sh **or **rsh**.
                      **markdirs**
                              All directory names resulting from pathname expansion have a  trailing
                              **/ **appended.
                      **monitor **Same as **-m**.
                      **multiline**
                              The  built-in  editors will use multiple lines on the screen for lines
                              that are longer than the width of the screen.  This may not  work  for
                              all  terminals.   The shell uses the system default [**tput**(1)](https://www.chedong.com/phpMan.php/man/tput/1/markdown) command to
                              obtain the terminal escape codes for the necessary operations.  Multi-
                              line editing is disabled if this fails.  On most systems, setting  the
                              **TERM  **variable  to your terminal's type and exporting it corrects this
                              situation.  The **multiline  **option  is  ineffectual  on  systems  whose
                              [**tput**(1)](https://www.chedong.com/phpMan.php/man/tput/1/markdown) command supports neither [**terminfo**(5)](https://www.chedong.com/phpMan.php/man/terminfo/5/markdown) nor [**termcap**(5)](https://www.chedong.com/phpMan.php/man/termcap/5/markdown) capability
                              names.
                      **noclobber**
                              Same as **-C**.
                      **noexec  **Same as **-n**.
                      **noglob  **Same as **-f**.
                      **nolog   **Obsolete; has no effect.
                      **notify  **Same as **-b**.
                      **nounset **Same as **-u**.
                      **pipefail**
                              The exit status of the entire pipeline will be that of the last compo‐
                              nent  command  that  exited with a non-zero exit status, or zero if no
                              command exited with a non-zero exit status.  The shell will  wait  for
                              all  component  commands of the pipeline to terminate, instead of only
                              waiting for the last component command.
                      **posix   **Enables the POSIX standard mode for maximum compatibility  with  other
                              compliant shells. At the moment that the **posix **option is turned on, it
                              also  turns  on  **letoctal **and turns off **-B**/**braceexpand**; the reverse is
                              done when **posix **is turned back off. (These options can still  be  con‐
                              trolled  independently  in  between.) Furthermore, the **posix **option is
                              automatically turned on upon invocation if the shell is invoked as  **sh**
                              or **rsh**, or if **-o posix **or **--posix **is specified on the shell invocation
                              command  line,  or  when executing scripts without a **#! **path with this
                              option active in the invoking shell. In that case, the  invoked  shell
                              will  not  import  type  attributes  for variables (such as integer or
                              left/right justify) from the environment.
                              In addition, while on, the **posix **option
                              •  disables exporting variable type attributes to the environment  for
                                 other ksh processes to import;
                              •  disallows brace expansion on the results of unquoted expansions (if
                                 the **-B**/**braceexpand **option is turned back on);
                              •  disables  the special handling of repeated _isspace_ class characters
                                 in the **IFS **variable;
                              •  causes file descriptors > 2 to be left open when  invoking  another
                                 program;
                              •  disables the **&> **redirection shorthand;
                              •  disables  fast  filescan  loops  of type **while _**inputredirection_ **;do**
                                 _list_ **;done**;
                              •  makes the **<> **redirection operator default to  redirecting  standard
                                 input if no file descriptor number precedes it;
                              •  causes  the shell to use a standard UNIX [_pipe_(2)](https://www.chedong.com/phpMan.php/man/pipe/2/markdown) instead of a _sock‐_
                                 [_etpair_(2)](https://www.chedong.com/phpMan.php/man/etpair/2/markdown) to connect commands in a pipeline (when reading  directly
                                 from a pipeline, the **<#_**pattern_ and **<##_**pattern_ redirection operators
                                 will  not  work and the **-n **option to the **read **built-in will not re‐
                                 turn early when reading from a slow device);
                              •  disables the special floating point constants **Inf **and **NaN **in arith‐
                                 metic evaluation so that, e.g., **$((inf)) **and **$((nan)) **refer to  the
                                 variables by those names;
                              •  enables  the  recognition of a leading zero as introducing an octal
                                 number in all arithmetic evaluation contexts,  except  in  the  **let**
                                 built-in while **letoctal **is off;
                              •  disables  zero-padding  of  seconds  in  the output of the **time **and
                                 **times **built-ins;
                              •  stops the **. **command (but not **source**) from looking up functions  de‐
                                 fined with the **function **syntax;
                              •  disables the recognition of unexpanded shell arithmetic expressions
                                 for the numerical conversion specifiers of the **printf **built-in com‐
                                 mand,  causing  them  to  print a warning for operands that are not
                                 valid decimal, **0x**-prefixed hexadecimal or **0**-prefixed octal numbers;
                              •  disables the special handling of **/dev/fd/_**n_ in  file  existence  and
                                 access test operators in **test**/**[ **and **[[**, causing these to operate on
                                 the file **/dev/fd/_**n_ in the file system;
                              •  disables the recognition of unexpanded shell arithmetic expressions
                                 in  the  numerical comparison operators **-eq**, **-ne**, **-gt**, **-ge**, **-lt **and
                                 **-le **of the **test**/**[ **built-in command, causing  them  to  accept  only
                                 decimal numbers as operands;
                              •  changes the **test**/**[ **built-in command to make its deprecated _expr1_ **-a**
                                 _expr2_ and _expr1_ **-o _**expr2_ operators work even if _expr1_ equals "**!**" or
                                 "**(**" (which means the nonstandard unary **-a _**file_ and **-o _**option_ opera‐
                                 tors cannot be directly negated using **! **or wrapped in parentheses);
                                 and
                              •  disables a hack that makes **test -t **(**[ -t ]**) equivalent to **test -t 1**
                                 (**[ -t 1 ]**).
                      **privileged**
                              Same as **-p**.
                      **showme  **When enabled, simple commands or pipelines preceded by a semicolon (**;**)
                              will be displayed as if the **xtrace **option were enabled but will not be
                              executed.  Otherwise, the leading **; **will be ignored.
                      **trackall**
                              Same as **-h**.
                      **verbose **Same as **-v**.
                      **vi      **Activates  the  _vi_-style command line editor, initially in input mode.
                              See _Vi_ _Editing_ _Mode_ above.
                      **viraw   **Obsolete; has no effect.
                      **xtrace  **Same as **-x**.

                      If no option name is supplied, then the current option settings are printed.

              **-p      **Disables  processing  of  the  **$HOME/.profile   **file   and   uses   the   file
                      **/etc/suid_profile  **instead  of the **ENV **file.  This mode is on whenever the ef‐
                      fective UID (GID) is not equal to the real UID (GID).  Turning this off causes
                      the effective UID and GID to be set to the real UID and GID.
              **-r      **Enables the restricted shell.  This option cannot be unset once set.
              **-s      **Sort the positional parameters lexicographically.
              **-t      **(Obsolete).  Exit after reading and executing one command.
              **-u      **Treat unset parameters as an error when substituting.  **$@ **and **$* **are exempt.
              **-v      **Print shell input lines as they are read.
              **-x      **Print commands and their arguments as they are executed.
              **--      **Do not change any of the options; useful in setting **$1 **to  a  value  beginning
                      with **-**.  If no arguments follow this option then the positional parameters are
                      unset.

              As  an  obsolete  feature, if the first _arg_ is **- **then the **-x **and **-v **options are turned
              off and the next _arg_ is treated as the first argument.  Using **+ **rather than  **-  **causes
              these options to be turned off.  These options can also be used upon invocation of the
              shell.   The  current  set of options may be found in **$-**.  Unless **-A **is specified, the
              remaining arguments are positional parameters and are assigned, in  order,  to  **$1  $2**
              ....   If  no  arguments  are  given,  then  the names and values of all variables are
              printed on the standard output.

       † **shift **[ _n_ ]
              The positional parameters from **$_**n_**+1 **...  are renamed **$1 **... , default _n_ is 1.  The pa‐
              rameter _n_ can be any arithmetic expression that evaluates  to  a  non-negative  number
              less than or equal to **$#**.

       **sleep **[ **-s **] _duration_
              Suspends execution for the number of decimal seconds or fractions of a second given by
              _duration_.  _duration_ can be an integer, floating point value or ISO 8601 duration spec‐
              ifying  the length of time to sleep.  The option **-s **causes the sleep builtin to termi‐
              nate when it receives any signal.  If _duration_ is not specified  in  conjunction  with
              **-s**, **sleep **will wait for a signal indefinitely.

       **source _**name_ [ _arg_ ... ]
              Same as **.**, except it is not treated as a special built-in command.

       **stop _**job_ ...
              Sends  a **SIGSTOP **signal to one or more processes specified by _job_, suspending them un‐
              til they receive **SIGCONT**.  The same as **kill -s STOP**.

### suspend
              Sends a **SIGSTOP **signal to the main shell process, suspending the script or child shell
              session until it receives **SIGCONT **(for instance, when typing **fg **in the parent  shell).
              Equivalent  to  **kill -s STOP "$$"**,  except  that it accepts no operands and refuses to
              suspend a login shell.

       **test _**expression_
              The **test **and **[ **commands execute conditional expressions similar to those specified for
              the **[[ **compound command under _Conditional_ _Expressions_ above, but with  several  impor‐
              tant differences. The **=**, **== **and **!= **operators test for string (in)equality without pat‐
              tern  matching;  **==  **is  nonstandard  and  unportable. The **&& **and **|| **operators are not
              available. Instead, the **-a **and **-o **binary operators can be used, but they  are  fraught
              with  pitfalls due to grammatical ambiguities and therefore deprecated in favor of in‐
              voking separate **test **commands. Most importantly, as **test **and **[ **are simple regular com‐
              mands, field splitting and pathname expansion _are_ performed on all their arguments and
              all aspects of regular shell grammar (such as redirection) remain active. This is usu‐
              ally harmful, so care must be taken to quote arguments and expansions to  avoid  this.
              To  avoid  the many pitfalls arising from these issues, the **[[ **compound command should
              be used instead. The primary purpose of the **test **and **[ **commands is compatibility  with
              other shells that lack **[[**.

              The  **test**/**[  **command  does not parse options except if there are two arguments and the
              second is **--**. To access the inline documentation with an option  such  as  **--man**,  you
              need one of the forms **test --man -- **or **[ --man -- ]**.

       **times  **Displays  the  accumulated  user and system CPU times, one line with the times used by
              the shell and another with those used by all of the shell's child  processes.  No  op‐
              tions are supported.  Seconds are zero-padded unless the **posix **shell option is on.

       † **trap **[ **-p **] [ _action_ ] [ _sig_ ] ...
              The **-p **option causes the trap action associated with each trap as specified by the ar‐
              guments  to  be printed with appropriate quoting.  Otherwise, _action_ will be processed
              as if it were an argument to **eval **when the shell receives signal(s) _sig_.  Each _sig_ can
              be given as a number or as the name of the signal.  Trap commands are executed in  or‐
              der of signal number.  Any attempt to set a trap on a signal that was ignored on entry
              to the current shell is ineffective.  If _action_ is omitted and the first _sig_ is a num‐
              ber, or if _action_ is **-**, then the trap(s) for each _sig_ are reset to their original val‐
              ues.   If  _action_ is the empty string, then this signal is ignored by the shell and by
              the commands it invokes.  If _sig_ is **ERR **then _action_ will be executed whenever  a  com‐
              mand  has a non-zero exit status.  If _sig_ is **DEBUG **then _action_ will be executed before
              each command.  The variable **.sh.command **will contain the current command line when _ac‐_
              _tion_ is running, in the same format as the output generated by the **xtrace **option  (mi‐
              nus  the  preceding **PS4 **prompt).  If the exit status of the trap is **2 **the command will
              not be executed.  If the exit status of the trap is **255 **and inside a function or a dot
              script, the function or dot script will return.  If _sig_ is **0  **or  **EXIT  **and  the  **trap**
              statement  is  executed  inside  the body of a function defined with the **function _**name_
              syntax, then the command _action_ is executed after the function completes.  If _sig_ is **0**
              or **EXIT **for a **trap **set outside any function then the command  _action_  is  executed  on
              exit  from the shell.  If _sig_ is **KEYBD**, then _action_ will be executed whenever a key is
              read while in **emacs**, **gmacs**, or **vi **mode.  The **trap **command with no arguments  prints  a
              list of commands associated with each signal number.

       An  **exit  **or **return **without an argument in a trap action will preserve the exit status of the
       command that invoked the trap.

       **true   **Does nothing, and exits 0. Used with **while **for infinite loops.

       **type **[ **-afpPqt **] _name_ ...
              The same as **whence -v**.

       †‡ **typeset **[ **±ACHSbflmnprstux **] [ **±EFLRXZi[_**n_**] ]   [ +-M  [ _**mapname_ **] ] [ -T  [ _**tname_**=(_**as‐_
       _sign_list_**) ] ] [ -h _**str_ **] [ -a [ _**[type]_ **] ] [ _**vname_**[=_**value_ **]  ] ...**
              Sets attributes and values for shell variables and functions.  When invoked  inside  a
              function  defined  with the **function _**name_ syntax, a new instance of the variable _vname_
              is created, and the variable's value and type are  restored  when  the  function  com‐
              pletes.  The following list of attributes may be specified:
              **-A     **Declares  _vname_ to be an associative array.  Subscripts are strings rather than
                     arithmetic expressions.
              **-C     **Causes each _vname_ to be a compound variable. If _value_ names  a  compound  vari‐
                     able, it is copied into _vname_.  Otherwise, the empty compound value is assigned
                     to _vname_.
              **-a     **Declares _vname_ to be an indexed array. This is the default.  Subscripts are nu‐
                     merical  and  start  at 0.  To make it possible to use alphanumeric enumeration
                     constants of a given type as subscripts, an option value of the form **[_**type_**] **can
                     be specified (including the  surrounding  square  brackets),  which  should  be
                     quoted to avoid pathname expansion), where _type_ must be the name of an enumera‐
                     tion type created with the **enum **command.
              **-E     **Declares  _vname_  to  be a double precision floating point number.  If _n_ is non-
                     zero, it defines the number of significant figures that are used when expanding
                     _vname_.  Otherwise, ten significant figures will be used.
              **-F     **Declares _vname_ to be a double precision floating point number.  If  _n_  is  non-
                     zero,  it  defines  the  number of places after the decimal point that are used
                     when expanding _vname_.  Otherwise ten places after the  decimal  point  will  be
                     used.
              **-H     **This option provides UNIX to host-name file mapping on non-UNIX machines.
              **-L     **Left  justify  and  remove leading blanks from _value_.  If _n_ is non-zero, it de‐
                     fines the width of the field, otherwise it is determined by the  width  of  the
                     value  of  first assignment.  When the variable is assigned to, it is filled on
                     the right with blanks or truncated, if necessary, to fit into the  field.   The
                     **-R **option is turned off.
              **-M     **Use  the  character mapping _mapping_ defined by [_wctrans_(3)](https://www.chedong.com/phpMan.php/man/wctrans/3/markdown).  such as **tolower **and
                     **toupper **when assigning a value to each of the specified operands.  When _mapping_
                     is specified and there are not operands, all variables that  use  this  mapping
                     are  written  to  standard  output.   When  _mapping_ is omitted and there are no
                     operands, all mapped variables are written to standard output.
              **-R     **Right justify and fill with leading blanks.  If _n_ is non-zero, it  defines  the
                     width  of  the  field,  otherwise it is determined by the width of the value of
                     first assignment.  The field is left filled with blanks or truncated  from  the
                     end if the variable is reassigned.  The **-L **option is turned off.
              **-S     **When  used within the _assign_list_ of a type definition, it causes the specified
                     subvariable to be shared by all instances of the  type.   When  used  inside  a
                     function  defined with the **function **reserved word, the specified variables will
                     have _function_ _static_ scope.  Otherwise, the variable is unset prior to process‐
                     ing the assignment list.
              **-T     **If followed by _tname_, it creates a type named by _tname_ using the  compound  as‐
                     signment  _assign_list_  to _tname_.  Otherwise, it writes all the type definitions
                     to standard output.
              **-X     **Declares _vname_ to be a double precision floating point number and expands using
                     the **%a **format of ISO-C99.  If _n_ is non-zero, it defines the number of hex  dig‐
                     its  after  the  radix point that is used when expanding _vname_.  The default is
                     10.
              **-Z     **Right justify and fill with leading zeros if the first non-blank character is a
                     digit and the **-L **option has not been set.  Remove leading zeros if the  **-L  **op‐
                     tion  is also set.  If _n_ is non-zero, it defines the width of the field, other‐
                     wise it is determined by the width of the value of first assignment.
              **-f     **The names refer to function names rather than variable names.   No  assignments
                     can be made and the only other valid options are **-S**, **-t**, **-u **and **-x**.  The -S can
                     be  used with discipline functions defined in a type to indicate that the func‐
                     tion is static.  For a static function, the same method will be used by all in‐
                     stances of that type no matter which instance references it.  In  addition,  it
                     can  only use value of variables from the original type definition.  These dis‐
                     cipline functions cannot be redefined in any  type  instance.   The  **-t  **option
                     turns  on execution tracing for this function.  The **-u **option causes this func‐
                     tion to be marked undefined.  The **FPATH **variable will be searched to  find  the
                     function  definition when the function is referenced.  If no options other than
                     **-f **is specified, then the function definition will  be  displayed  on  standard
                     output.   If **+f **is specified, then a line containing the function name followed
                     by a shell comment containing the line number and path name of the  file  where
                     this  function  was defined, if any, is displayed.  The exit status can be used
                     to determine whether the function is defined so that **typeset  -f  .sh.math._**name_
                     will return 0 when math function _name_ is defined and non-zero otherwise.
              **-b     **The variable can hold any number of bytes of data.  The data can be text or bi‐
                     nary.   The  value is represented by the base64 encoding of the data.  If **-Z **is
                     also specified, the size in bytes of the data in the buffer will be  determined
                     by  the  size associated with the **-Z**.  If the base64 string assigned results in
                     more data, it will be truncated.  Otherwise, it will be filled with bytes whose
                     value is zero.  The **printf **format **%B **can be used to output the actual  data  in
                     this buffer instead of the base64 encoding of the data.
              **-g     **Forces variables to be created or modified at the global scope, even when **type‐**
                     **set  **is  executed  in a function defined by the **function _**name_ syntax (see _Func‐_
                     _tions_ above) or in a name space (see _Name_ _Spaces_ above).
              **-h     **Used within type definitions to add  information  when  generating  information
                     about  the  subvariable  on the man page.  It is ignored when used outside of a
                     type definition.  When used with **-f **the information is associated with the cor‐
                     responding discipline function.
              **-i     **Declares _vname_ to be represented internally as integer.  The right hand side of
                     an assignment is evaluated as an arithmetic expression when assigning to an in‐
                     teger.  If _n_ is non-zero, it defines the output arithmetic base, otherwise  the
                     output base will be ten.
              **-l     **Used  with  **-i**,  **-E **or **-F**, to indicate long integer, or long float.  Otherwise,
                     all uppercase characters are converted to lowercase.  The uppercase option, **-u**,
                     is turned off.  Equivalent to **-M tolower .**
              **-m     **Moves or renames the variable.  The value is the name of a variable whose value
                     will be moved to _vname_.  The original variable will be unset.  Cannot  be  used
                     with any other options.
              **-n     **Declares  _vname_  to be a reference to the variable whose name is defined by the
                     value of variable _vname_.  This is usually used to reference a variable inside a
                     function whose name has been passed as an argument.  Cannot be used with  other
                     options except **-g**.
              **-p     **The  name,  attributes  and values for the given _vname_s are written on standard
                     output in a form that can be used as shell input.  If **+p **is specified, then the
                     values are not displayed.
              **-r     **The given _vname_s are marked read-only and these names cannot be changed by sub‐
                     sequent assignment.
              **-s     **When given along with **-i**, restricts integer size to short.
              **-t     **Tags the variables.  Tags are user definable and have no special meaning to the
                     shell.
              **-u     **When given along with **-i**, specifies unsigned integer.  Otherwise, all lowercase
                     characters are converted to uppercase.  The lowercase  option,  **-l**,  is  turned
                     off.  Equivalent to **-M toupper .**
              **-x     **The  given  _vname_s are marked for automatic export to the _environment_ of subse‐
                     quently-executed commands.  Variables whose names contain a **.   **cannot  be  ex‐
                     ported.

              The  **-i**,  **-F**, **-E**, and **-X **options cannot be specified along with **-R**, **-L**, or **-Z**.  The **-b**
              option cannot be specified along with **-L**, **-u**, or **-l**.  The **-f**, **-m**, **-n**, and  **-T  **options
              cannot be used together with any other option.

              Using  **+  **rather  than **- **causes these options to be turned off.  If no _vname_ arguments
              are given, a list of _vnames_ (and optionally the _values_) of the _variables_  is  printed.
              (Using  **+  **rather  than  **- **keeps the values from being printed.)  The **-p **option causes
              **typeset **followed by the option letters to be printed before each name rather than  the
              names  of  the  options.   If  any option other than **-p **is given, only those variables
              which have all of the given options are printed.  Otherwise, the _vname_s and _attributes_
              of all _variables_ that have attributes are printed.

       **ulimit **[ **-HSaMctdfkxlqenVuPpmrRbiswTv **] [ _limit_ ]
              Set or display a resource limit.  The available  resource  limits  are  listed  below.
              Many  systems  do  not support one or more of these limits.  The limit for a specified
              resource is set when _limit_ is specified.  The value of _limit_ can be a  number  in  the
              unit  specified  below  with each resource, or the value **unlimited**.  The **-H **and **-S **op‐
              tions specify whether the hard limit or the soft limit for the given resource is  set.
              A  hard limit cannot be increased once it is set.  A soft limit can be increased up to
              the value of the hard limit.  If neither the **H **nor **S **option is  specified,  the  limit
              applies  to  both.   The  current resource limit is printed when _limit_ is omitted.  In
              this case, the soft limit is printed unless **H **is specified.  When more  than  one  re‐
              source is specified, then the limit name and unit is printed before the value.
              **-a     **Lists all of the current resource limits.
              **-b     **The socket buffer size in bytes.
              **-c     **The number of 512-byte blocks on the size of core dumps.
              **-d     **The number of K-bytes on the size of the data area.
              **-e     **The scheduling priority.
              **-f     **The  number  of  512-byte  blocks  on  files that can be written by the current
                     process or by child processes (files of any size may be read).
              **-i     **The signal queue size.
              **-k     **The max number of kqueues created by the current user.
              **-l     **The locked address space in K-bytes.
              **-M     **The address space limit in K-bytes.
              **-m     **The number of K-bytes on the size of physical memory.
              **-n     **The number of file descriptors plus 1.
              **-P     **The max number of pseudo-terminals created by the current user.
              **-p     **The number of 512-byte blocks for pipe buffering.
              **-q     **The message queue size in K-bytes.
              **-R     **The max time a real-time process can run before blocking, in microseconds.   If
                     this limit is exceeded the process is sent a **SIGXCPU **signal.
              **-r     **The max real-time priority.
              **-s     **The number of K-bytes on the size of the stack area.
              **-T     **The number of threads.
              **-t     **The number of CPU seconds to be used by each process.
              **-u     **The number of processes.
              **-V     **The number of open vnode monitors.
              **-v     **The number of K-bytes for virtual memory.
              **-w     **The swap size in K-bytes.
              **-x     **The number of file locks.

              If no option is given, **-f **is assumed.

       **umask **[ **-S **] [ _mask_ ]
              The  user file-creation mask is set to _mask_ (see [_umask_(2)](https://www.chedong.com/phpMan.php/man/umask/2/markdown)).  _mask_ can either be an oc‐
              tal number or a symbolic value as described in  [_chmod_(1)](https://www.chedong.com/phpMan.php/man/chmod/1/markdown).   If  a  symbolic  value  is
              given,  the  new  umask  value is the complement of the result of applying _mask_ to the
              complement of the previous umask value.  If _mask_ is omitted, the current value of  the
              mask  is  printed.   The  **-S **option causes the mode to be printed as a symbolic value.
              Otherwise, the mask is printed in octal.

       **unalias **[ **-a **] _name_ ...
              The aliases given by the list of _name_s are removed from the alias list.  The **-a **option
              causes all the aliases to be unset.

       † **unset **[ **-fnv **] _vname_ ...
              The variables given by the list of _vname_s are unassigned, i.e.,  except  for  subvari‐
              ables  within  a  type, their values and attributes are erased.  For subvariables of a
              type, the values are reset to the default value from the  type  definition.   Readonly
              variables  cannot be unset.  If the **-f **option is set, then the names refer to _function_
              names.  If the **-v **option is set, then the names refer to _variable_ names.  The  **-f  **op‐
              tion overrides **-v**.  If **-n **is set and _name_ is a name reference, then _name_ will be unset
              rather than the variable that it references.  The default is equivalent to **-v**.  Unset‐
              ting  **LINENO**,  **MAILCHECK**,  **OPTARG**, **OPTIND**, **RANDOM**, **SECONDS**, **TMOUT**, and **_ **removes their
              special meaning even if they are subsequently assigned to.

       **wait **[ _job_ ... ]
              Wait for the specified _job_ and report its termination status.  If _job_  is  not  given,
              then  all  currently active child processes are waited for.  The exit status from this
              command is that of the last process waited for if _job_ is specified;  otherwise  it  is
              zero.  See _Jobs_ for a description of the format of _job_.

       **whence **[ **-afpPqtv **] _name_ ...
              For each _name_, indicate how it would be interpreted if used as a command name.
              The  **-v  **option  produces  a  more verbose report.  The **-f **option skips the search for
              functions.  The **-p **and **-P **options do a path search for _name_ even if name is an  alias,
              a function, or a reserved word.  Both of these options turn off the **-v **option.  The **-q**
              option  causes  **whence  **to enter quiet mode.  **whence **will return zero if all arguments
              are built-ins, functions, or are programs found on the path.  The **-t **option only  out‐
              puts  the  type of the given command.  Like **-p **and **-P**, **-t **will turn off the **-v **option.
              The **-a **option is similar to the **-v **option but causes all interpretations of the  given
              name to be reported.

### Invocation.
       If  the shell is invoked by [_exec_(2)](https://www.chedong.com/phpMan.php/man/exec/2/markdown), initialization depends on argument zero (**$0**) as follows.
       If the first character of **$0 **is **-**, or the **-l **option is given on the invocation command  line,
       then  the shell is assumed to be a _login_ shell.  If the basename of the command path in **$0 **is
       **rsh**, **rksh**, or **krsh**, then the shell becomes restricted.  If the basename is **sh **or **rsh**, or  the
### -o posix  
       full POSIX compliance mode (see the **set **builtin command above for more  information).   After
       this,  if  the shell was assumed to be a _login_ shell, commands are read from **/etc/profile **and
       then from **$HOME/.profile **if it exists.  Alternatively, the option **-l **causes the shell  to  be
       treated  as  a  _login_  shell.   Next, for interactive shells, commands are read from the file
       named by **ENV **if the file exists, its name being determined by performing parameter expansion,
       command substitution, and arithmetic expansion on the value of that environment variable.  If
       the **-s **option is not present and _arg_ and a file by the name of _arg_ exists, then it reads  and
       executes  this  script.   Otherwise,  if the first _arg_ does not contain a **/**, a path search is
       performed on the first _arg_ to determine the name of the script to execute.   The  script  _arg_
       must  have  execute  permission  and  any _setuid_ and _setgid_ settings will be ignored.  If the
       script is not found on the path, _arg_ is processed as if it named a built-in command or  func‐
       tion.   Commands  are  then read as described below; the following options are interpreted by
       the shell when it is invoked:

### -D      
               dard output and the shell will exit.  This set of strings will be subject to language
               translation when the locale is not C or POSIX.  No commands will be executed.

### -E  -o rc  --rc
               Read the file named by the **ENV **variable or by **$HOME/.kshrc **if not defined  after  the
               profiles.  On by default for interactive shells. Use **+E**, **+o rc **or **--norc **to turn off.

### -c      
               present, becomes that script's command name (**$0**).  Any third and further _arg_s  become
               positional parameters starting at **$1**.

### -s      
               (**$0**) cannot be set.  Any _arg_s become the positional parameters starting at **$1**.   This
               option is forced on if no _arg_ is given and is ignored if **-c **is also specified.

### -i  -o interactive  --interactive
               If  the  **-i **option is present or if the shell's standard input and standard error are
               attached to a terminal (as told by [_tcgetattr_(3)](https://www.chedong.com/phpMan.php/man/tcgetattr/3/markdown)), then this shell is _interactive_.  In
               this case TERM is ignored (so that **kill 0 **does not kill  an  interactive  shell)  and
               INTR  is  caught  and ignored (so that **wait **is interruptible).  In all cases, QUIT is
               ignored by the shell.

### -r  -o restricted  --restricted
               If the **-r **option is present, the shell is a restricted shell.

       The remaining options and arguments are described under the **set **command above.  An optional **-**
       as the first argument is ignored.

### Rksh Only.
       _Rksh_ is used to set up login names and execution environments  whose  capabilities  are  more
       controlled  than  those of the standard shell.  The actions of **rksh **are identical to those of
       **ksh**, except that the following are disallowed:

              •      unsetting the restricted option

              •      changing directory (see [_cd_(1)](https://www.chedong.com/phpMan.php/man/cd/1/markdown))

              •      setting or unsetting the value or attributes of **SHELL**, **ENV**, **FPATH**, or **PATH**

              •      specifying path or command names containing **/**

              •      redirecting output (**>**, **>|**, **<>**, and **>>**)

              •      adding or deleting built-in commands

              •      using **command -p **to invoke a command

       The restrictions above are enforced after **.profile **and the **ENV **files are interpreted.

       When a command to be executed is found to be a shell procedure, **rksh **invokes _ksh_  to  execute
       it.  Thus, it is possible to provide to the end-user shell procedures that have access to the
       full  power of the standard shell, while imposing a limited menu of commands; this scheme as‐
       sumes that the end-user does not have write and execute permissions in the same directory.

       The net effect of these rules is that the writer of the **.profile **has  complete  control  over
       user  actions,  by performing guaranteed setup actions and leaving the user in an appropriate
       directory (probably _not_ the login directory).

       The system administrator often sets up a directory of commands (e.g., **/usr/rbin**) that can  be
       safely invoked by **rksh**.

## EXIT STATUS
       Errors  detected  by  the  shell, such as syntax errors, cause the shell to return a non-zero
       exit status.  If the shell is being used non-interactively, then execution of the shell  file
       is  abandoned  unless  the error occurs inside a subshell in which case the subshell is aban‐
       doned.  Otherwise, the shell returns the exit status of the last command executed  (see  also
       the  **exit **command above).  Run time errors detected by the shell are reported by printing the
       command or function name and the error condition.  If the line number that the error occurred
       on is greater than one, then the line number is also printed in square  brackets  (**[]**)  after
       the command or function name.

## FILES
### /etc/profile
              The system wide initialization file, executed for login shells.

### $HOME/.profile
              The personal initialization file, executed for login shells after /etc/profile.

### $HOME/.kshrc
              Default  personal initialization file, executed for interactive shells when **ENV **is not
              set.

### /etc/suid_profile
              Alternative initialization file, executed instead of the personal initialization  file
              when the real and effective user or group ID do not match.

### /dev/null
              The null device.

## SEE ALSO
       [_cat_(1)](https://www.chedong.com/phpMan.php/man/cat/1/markdown),  [_cd_(1)](https://www.chedong.com/phpMan.php/man/cd/1/markdown),  [_chmod_(1)](https://www.chedong.com/phpMan.php/man/chmod/1/markdown),  [_cut_(1)](https://www.chedong.com/phpMan.php/man/cut/1/markdown),  [_date_(1)](https://www.chedong.com/phpMan.php/man/date/1/markdown),  [_echo_(1)](https://www.chedong.com/phpMan.php/man/echo/1/markdown),  [_emacs_(1)](https://www.chedong.com/phpMan.php/man/emacs/1/markdown), [_env_(1)](https://www.chedong.com/phpMan.php/man/env/1/markdown), [_gmacs_(1)](https://www.chedong.com/phpMan.php/man/gmacs/1/markdown), [_grep_(1)](https://www.chedong.com/phpMan.php/man/grep/1/markdown),
       [_stty_(1)](https://www.chedong.com/phpMan.php/man/stty/1/markdown), [_test_(1)](https://www.chedong.com/phpMan.php/man/test/1/markdown), [_umask_(1)](https://www.chedong.com/phpMan.php/man/umask/1/markdown), [_vi_(1)](https://www.chedong.com/phpMan.php/man/vi/1/markdown), [_dup_(2)](https://www.chedong.com/phpMan.php/man/dup/2/markdown), [_exec_(2)](https://www.chedong.com/phpMan.php/man/exec/2/markdown), [_fork_(2)](https://www.chedong.com/phpMan.php/man/fork/2/markdown), [_getpwnam_(3)](https://www.chedong.com/phpMan.php/man/getpwnam/3/markdown), [_ioctl_(2)](https://www.chedong.com/phpMan.php/man/ioctl/2/markdown), [_lseek_(2)](https://www.chedong.com/phpMan.php/man/lseek/2/markdown),
       [_paste_(1)](https://www.chedong.com/phpMan.php/man/paste/1/markdown), [_pathconf_(2)](https://www.chedong.com/phpMan.php/man/pathconf/2/markdown), [_pipe_(2)](https://www.chedong.com/phpMan.php/man/pipe/2/markdown), [_sysconf_(3)](https://www.chedong.com/phpMan.php/man/sysconf/3/markdown), [_umask_(2)](https://www.chedong.com/phpMan.php/man/umask/2/markdown), [_ulimit_(2)](https://www.chedong.com/phpMan.php/man/ulimit/2/markdown),  [_wait_(2)](https://www.chedong.com/phpMan.php/man/wait/2/markdown),  [_strftime_(3)](https://www.chedong.com/phpMan.php/man/strftime/3/markdown),  _wc‐_
       [_trans_(3)](https://www.chedong.com/phpMan.php/man/trans/3/markdown), [_rand_(3)](https://www.chedong.com/phpMan.php/man/rand/3/markdown), [_profile_(5)](https://www.chedong.com/phpMan.php/man/profile/5/markdown), [_environ_(7)](https://www.chedong.com/phpMan.php/man/environ/7/markdown).

       Morris I. Bolsky and David G. Korn, _The_ _New_ _KornShell_ _Command_ _and_ _Programming_ _Language_, Pren‐
       tice Hall, 1995.

       _POSIX_ _-_ _Part_ _2:_ _Shell_ _and_ _Utilities_, IEEE Std 1003.2-1992, ISO/IEC 9945-2, IEEE, 1993.

## CAVEATS
       If  a  command is executed, and then a command with the same name is installed in a directory
       in the search path before the directory where the original command was found, the shell  will
       continue  to  _exec_  the original command.  Use the **hash **command or the **-t **option of the **alias**
       command to correct this situation.

       Using the **hist **built-in command within a compound command will cause  the  whole  command  to
       disappear from the history file.

       The  built-in  command  **. _**file_ reads the whole file before any commands are executed.  There‐
       fore, **alias **and **unalias **commands in the file will not apply to any commands  defined  in  the
       file.

       Traps  are  not  processed  while a job is waiting for a foreground process.  Thus, a trap on
       **CHLD **won't be executed until the foreground job terminates.

       In locales that use a multibyte character set such as UTF-8, the **KEYBD **trap is only triggered
       for ASCII characters (1-127).

       It is a good idea to leave a space after the comma operator in arithmetic expressions to pre‐
       vent the comma from being interpreted as the decimal point character in certain locales.

                                                                                              [_KSH_(1)](https://www.chedong.com/phpMan.php/man/KSH/1/markdown)
