changelog for 0.9.1
[posh.git] / posh.xml
blob6e4ed170153c04c495da70c81718c0809c2527ba
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"
5 <!ENTITY % ISOnum PUBLIC
6   "ISO 8879:1986//ENTITIES Numeric and Special Graphic//EN//XML"
7   "ISOnum.ent">
8 <!ENTITY % ISOpub PUBLIC
9   "ISO 8879:1986//ENTITIES Publishing//EN//XML"
10   "ISOpub.ent">
11 %ISOnum;
12 %ISOpub;
15 <refentry id='posh'>
16     <refmeta>
17         <refentrytitle>POSH</refentrytitle>
18         <manvolnum>1</manvolnum>
19         <refmiscinfo class='date'>January 24, 2011</refmiscinfo>
20         <refmiscinfo class='manual'>User commands</refmiscinfo>
21     </refmeta>
22     <refnamediv id='name'>
23         <refname>posh</refname>
24         <refpurpose>Policy-compliant Ordinary SHell</refpurpose>
25     </refnamediv>
26     <refsynopsisdiv id='synopsis'>
27         <cmdsynopsis>
28             <command>posh</command>
29             <arg choice='opt'>+-aCefilnuvx </arg>
30             <arg choice='opt'>+-o <replaceable>option</replaceable></arg>
31             <arg choice='opt'><arg choice='opt'><arg choice='plain'>-c <replaceable>command-string</replaceable></arg><group choice='plain'><arg choice='opt'><replaceable>command-name</replaceable></arg><arg choice='plain'>-s </arg><arg choice='plain'><replaceable>file</replaceable></arg></group></arg><arg choice='opt' rep='repeat'><replaceable>argument</replaceable></arg></arg>
32         </cmdsynopsis>
33     </refsynopsisdiv>
35     <refsect1 id='description'><title>DESCRIPTION</title>
36         <para>
37             <emphasis remap='B'>posh</emphasis> is a reimplementation of the Bourne shell, a command
38             interpreter for both interactive and script use.
39         </para>
41         <refsect2 id='shell_startup'><title>Shell Startup</title>
42             <para>
43                 The following options can be specified only on the command line:
44             </para>
45             <variablelist remap='.IP'>
46                 <varlistentry>
47                     <term><option>-c</option> <replaceable>command-string</replaceable></term>
48                     <listitem>
49                         <para>
50                             the shell executes the command(s) contained in <emphasis remap='I'>command-string</emphasis>
51                         </para>
52                     </listitem>
53                 </varlistentry>
54                 <varlistentry>
55                     <term><option>-i</option></term>
56                     <listitem>
57                         <para>
58                             interactive mode &mdash; see below
59                         </para>
60                     </listitem>
61                 </varlistentry>
62                 <varlistentry>
63                     <term><option>-l</option></term>
64                     <listitem>
65                         <para>
66                             login shell &mdash; see below
67                             interactive mode &mdash; see below
68                         </para>
69                     </listitem>
70                 </varlistentry>
71                 <varlistentry>
72                     <term><option>-s</option></term>
73                     <listitem>
74                         <para>
75                             the shell reads commands from standard input; all non-option arguments
76                             are positional parameters
77                         </para>
78                     </listitem>
79                 </varlistentry>
80             </variablelist> <!-- .IP (gather_variableliist) -->
82             <para>
83                     In addition to the above, the options described in the
84                     <command>set</command> builtin
85                 command can also be used on the command line.
86             </para>
88             <para>
89                 If neither the <option>-c</option> nor the <option>-s</option> options are specified, the
90                 first non-option argument specifies the name of a file the shell reads
91                 commands from; if there are no non-option arguments, the shell reads
92                 commands from standard input.
93                 The name of the shell (<emphasis remap='I'>i.e.</emphasis>, the contents of the <emphasis remap='B'>$0</emphasis>) parameter
94                 is determined as follows: if the <option>-c</option> option is used and there is
95                 a non-option argument, it is used as the name; if commands are being
96                 read from a file, the file is used as the name; otherwise the name
97                 the shell was called with (<emphasis remap='I'>i.e.</emphasis>, argv[0]) is used.
98             </para>
100             <para>A shell is <emphasis remap='B'>interactive</emphasis> if the <option>-i</option> option is used or
101                 if both standard input and standard error are attached to a tty.
102                 An interactive shell has job control enabled (if available),
103                 ignores the INT, QUIT and TERM signals, and prints prompts before
104                 reading input (see <envar>PS1</envar> and <envar>PS2</envar> parameters).</para>
106             <para>A shell is <emphasis remap='B'>privileged</emphasis> if the <option>-p</option> option is used or if
107                 the real user-id or group-id does not match the effective user-id
108                 or group-id (see <citerefentry><refentrytitle>getuid</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
109                 <citerefentry><refentrytitle>getgid</refentrytitle><manvolnum>2</manvolnum></citerefentry>).
110                 A privileged shell does not process $HOME/.profile.
111                 Instead the file /etc/suid_profile is processed.
112                 Clearing the privileged option causes the shell to set its effective
113                 user-id (group-id) to its real user-id (group-id).</para>
115             <para>If the basename of the name the shell is called with (<emphasis remap='I'>i.e.</emphasis>, argv[0])
116                 starts with <emphasis remap='B'>-</emphasis> or if the <option>-l</option> option is used, the shell is assumed
117                 to be a login shell and the shell reads and executes the contents of
118                 <filename>/etc/profile</filename> and
119                 <filename>$HOME/.profile</filename> if they exist and are readable.</para>
121             <para>The exit status of the shell is 127 if the command file specified
122                 on the command line could not be opened, or non-zero if a fatal syntax
123                 error occurred during the execution of a script.
124                 In the absence of fatal errors, the exit status is that of the last
125                 command executed, or zero, if no command is executed.</para>
126         </refsect2>
128         <refsect2 id='command_syntax'><title>Command Syntax</title>
129             <!-- {{{  words and tokens -->
130             <para>The shell begins parsing its input by breaking it into words.
131                 Words, which are sequences of characters, are delimited by unquoted
132                 white-space characters (space, tab and newline) or meta-characters
133                 (<token>&lt;</token>, <token>&gt;</token>,
134                 <token>|</token>, <token>;</token>, <token>&amp;</token>,
135                 <token>(</token> and <token>)</token>).
136                 Aside from delimiting words, spaces and tabs are ignored, while
137                 newlines usually delimit commands.
138                 The meta-characters are used in building the following tokens:
139                 <token>&lt;</token>, <token>&lt;&amp;</token>,
140                 <token>&lt;&lt;</token>, <token>&gt;</token>,
141                 <token>&gt;&amp;</token>, <token>&gt;&gt;</token>, etc. are
142                 used to specify redirections (see Input/Output Redirection below);
143                 <token>|</token> is used to create pipelines;
144                 <token>;</token> is used to separate commands;
145                 <token>&amp;</token> is used to create asynchronous pipelines;
146                 <token>&amp;&amp;</token> and <token>||</token> are used to specify conditional execution;
147                 <token>;;</token> is used in <token>case</token> statements;
148                 and lastly,
149                 <token>(</token> ... <token>)</token> are used to create subshells.</para>
151             <para>White-space and meta-characters can be quoted individually using
152                 backslash (<emphasis remap='B'>&bsol;</emphasis>), or in groups using double (<emphasis remap='B'>"</emphasis>) or single (<emphasis remap='B'>'</emphasis>)
153                 quotes.
154                 Note that the following characters are also treated specially by the shell and
155                 must be quoted if they are to represent themselves:
156                 <emphasis remap='B'>&bsol;</emphasis>, <emphasis remap='B'>"</emphasis>, <emphasis remap='B'>'</emphasis>, <emphasis remap='B'>#</emphasis>, <emphasis remap='B'>$</emphasis>, <emphasis remap='B'>`</emphasis>, <emphasis remap='B'>~</emphasis>, <emphasis remap='B'>{</emphasis>,
157                 <emphasis remap='B'>}</emphasis>, <emphasis remap='B'>*</emphasis>, <emphasis remap='B'>?</emphasis> and <emphasis remap='B'>[</emphasis>.
158                 The first three of these are the above mentioned quoting characters
159                 (see Quoting below);
160                 <emphasis remap='B'>#</emphasis>, if used at the beginning of a word, introduces a comment &mdash; everything
161                 after the <emphasis remap='B'>#</emphasis> up to the nearest newline is ignored;
162                 <emphasis remap='B'>$</emphasis> is used to introduce parameter, command and arithmetic substitutions
163                 (see Substitution below);
164                 <emphasis remap='B'>`</emphasis> introduces an old-style command substitution
165                 (see Substitution below);
166                 <emphasis remap='B'>~</emphasis> begins a directory expansion (see Tilde Expansion below);
167                 <emphasis remap='B'>{</emphasis> and <emphasis remap='B'>}</emphasis> delimit <citerefentry><refentrytitle>csh</refentrytitle><manvolnum>1</manvolnum></citerefentry> style alternations
168                 (see Brace Expansion below);
169                 and, finally, <emphasis remap='B'>*</emphasis>, <emphasis remap='B'>?</emphasis> and <emphasis remap='B'>[</emphasis> are used in file name generation
170                 (see File Name Patterns below).</para>
171             <!-- }}} -->
172             <!-- {{{  simple\-command -->
174             <para>As words and tokens are parsed, the shell builds commands, of which
175                 there are two basic types: <emphasis remap='I'>simple-commands</emphasis>, typically programs
176                 that are executed, and <emphasis remap='I'>compound-commands</emphasis>, such as <emphasis remap='B'>for</emphasis> and
177                 <emphasis remap='B'>if</emphasis> statements, grouping constructs and function definitions.</para>
179             <para>A simple-command consists of some combination of parameter assignments (see
180                 Parameters below), input/output redirections (see Input/Output Redirections
181                 below), and command words; the only restriction is that parameter assignments
182                 come before any command words.
183                 The command words, if any, define the command that is to be executed and its
184                 arguments.
185                 The command may be a shell built-in command, a function or an <emphasis remap='I'>external
186                     command</emphasis>, <emphasis remap='I'>i.e.</emphasis>, a separate executable file that is located using the
187                 <envar>PATH</envar> parameter (see Command Execution below).
188                 Note that all command constructs have an <emphasis remap='I'>exit status</emphasis>: for external
189                 commands, this is related to the status returned by <citerefentry><refentrytitle>wait</refentrytitle><manvolnum>2</manvolnum></citerefentry> (if the
190                 command could not be found, the exit status is 127, if it could not be
191                 executed, the exit status is 126);
192                 the exit status of other command constructs (built-in commands, functions,
193                 compound-commands, pipelines, lists, <emphasis remap='I'>etc.</emphasis>) are all well defined and are
194                 described where the construct is described.
195                 The exit status of a command consisting only of parameter assignments is that
196                 of the last command substitution performed during the parameter assignment
197                 or zero if there were no command substitutions.</para>
198             <!-- }}} -->
199             <!-- {{{  pipeline -->
201             <para>Commands can be chained together using the <emphasis remap='B'>|</emphasis> token to
202                 form <emphasis remap='I'>pipelines</emphasis>, in which the standard output of each command but
203                 the last is piped (see <citerefentry><refentrytitle>pipe</refentrytitle><manvolnum>2</manvolnum></citerefentry>) to the standard input of the following
204                 command.
205                 The exit status of a pipeline is that of its last command.
206                 A pipeline may be prefixed by the <emphasis remap='B'>!</emphasis> reserved word which
207                 causes the exit status of the pipeline to be logically
208                 complemented: if the original status was 0 the complemented status will
209                 be 1, and if the original status was not 0, then the complemented
210                 status will be 0.</para>
211             <!-- }}} -->
212             <!-- {{{  lists -->
214             <para><emphasis remap='I'>Lists</emphasis> of commands can be created by separating pipelines by
215                 any of the following tokens: <emphasis remap='B'>&amp;&amp;</emphasis>, <emphasis remap='B'>||</emphasis>, <emphasis remap='B'>&amp;</emphasis>, <emphasis remap='B'>|&amp;</emphasis> and <emphasis remap='B'>;</emphasis>.
216                 The first two are for conditional execution: <emphasis remap='I'>cmd1</emphasis> <emphasis remap='B'>&amp;&amp;</emphasis> <emphasis remap='I'>cmd2</emphasis>
217                 executes <emphasis remap='I'>cmd2</emphasis> only if the exit status of <emphasis remap='I'>cmd1</emphasis> is zero;
218                 <emphasis remap='B'>||</emphasis> is the opposite &mdash; <emphasis remap='I'>cmd2</emphasis> is executed only if the exit status
219                 of <emphasis remap='I'>cmd1</emphasis> is non-zero.
220                 <emphasis remap='B'>&amp;&amp;</emphasis> and <emphasis remap='B'>||</emphasis> have equal precedence which is higher than that of
221                 <emphasis remap='B'>&amp;</emphasis>, <emphasis remap='B'>|&amp;</emphasis> and <emphasis remap='B'>;</emphasis>, which also have equal precedence.
222                 The <emphasis remap='B'>&amp;</emphasis> token causes the preceding command to be executed asynchronously,
223                 that is, the shell starts the command, but does not wait for it to complete
224                 (the shell does keep track of the status of asynchronous commands &mdash; see
225                 Job Control below).
226                 When an asynchronous command is started when job control is disabled
227                 (<emphasis remap='I'>i.e.</emphasis>, in most scripts), the command is started with signals INT
228                 and QUIT ignored and with input redirected from /dev/null
229                 (however, redirections specified in the asynchronous command have precedence).
230                 Note that a command must follow the <emphasis remap='B'>&amp;&amp;</emphasis> and <emphasis remap='B'>||</emphasis> operators, while
231                 a command need not follow <emphasis remap='B'>&amp;</emphasis>, <emphasis remap='B'>|&amp;</emphasis> and <emphasis remap='B'>;</emphasis>.
232                 The exit status of a list is that of the last command executed, with the
233                 exception of asynchronous lists, for which the exit status is 0.</para>
234             <!-- }}} -->
235             <!-- {{{  compound\-commands -->
237             <para>Compound commands are created using the following reserved words &mdash; these
238                 words are only recognized if they are unquoted and if they are used as
239                 the first word of a command (<emphasis remap='I'>i.e.</emphasis>, they can't be preceded by parameter
240                 assignments or redirections):</para>
243             <informaltable pgwide='0' frame='none'>
244                 <tgroup cols='5' align='center'>
245                     <colspec colname='c1'/>
246                     <colspec colname='c2'/>
247                     <colspec colname='c3'/>
248                     <colspec colname='c4'/>
249                     <colspec colname='c5'/>
250                     <thead>
251                         <row>
252                             <entry align='center'>case</entry>
253                             <entry align='right'>else</entry>
254                         </row>
255                     </thead>
256                     <tbody>
257                         <row>
258                             <entry align='left'>do</entry>
259                             <entry align='left'>esac</entry>
260                             <entry align='left'>if</entry>
261                             <entry align='left'>time</entry>
262                             <entry align='left'>[[</entry>
263                         </row>
264                         <row>
265                             <entry align='left'>done</entry>
266                             <entry align='left'>fi</entry>
267                             <entry align='left'>in</entry>
268                             <entry align='left'>until</entry>
269                             <entry align='left'>{</entry>
270                         </row>
271                         <row>
272                             <entry align='left'>elif</entry>
273                             <entry align='left'>for</entry>
274                             <entry align='left'>select</entry>
275                             <entry align='left'>while</entry>
276                             <entry align='left'>}</entry>
277                         </row>
278                     </tbody>
279                 </tgroup>
280             </informaltable>
283             <para><emphasis remap='B'>Note:</emphasis> Some shells (but not this one) execute control structure commands
284                 in a subshell when one or more of their file descriptors are redirected, so
285                 any environment changes inside them may fail.
286                 To be portable, the <emphasis remap='B'>exec</emphasis> statement should be used instead to redirect
287                 file descriptors before the control structure.</para>
289             <para>In the following compound command descriptions, command lists (denoted as
290                 <emphasis remap='I'>list</emphasis>) that are followed by reserved words must end with a
291                 semi-colon, a newline or a (syntactically correct) reserved word.
292                 For example,
293                 <!-- .RS -->
294                 <emphasis remap='B'>{ echo foo; echo bar; }</emphasis>
295                 <!-- .br -->
296                 <emphasis remap='B'>{ echo foo; echo bar&lt;newline&gt;}</emphasis>
297                 <!-- .br -->
298                 <emphasis remap='B'>{ { echo foo; echo bar; } }</emphasis>
299                 <!-- .RE -->
300                 are all valid, but
301                 <!-- .RS -->
302                 <emphasis remap='B'>{ echo foo; echo bar }</emphasis>
303                 <!-- .RE -->
304                 is not.</para>
305             <!-- {{{  ( list ) -->
306             <variablelist remap='.IP'>
307                 <varlistentry>
308                     <term><emphasis remap='B'>(</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>)</emphasis></term>
309                     <listitem>
310                         <para>Execute <emphasis remap='I'>list</emphasis> in a subshell.  There is no implicit way to pass
311                             environment changes from a subshell back to its parent.</para>
312                         <!-- }}} -->
313                         <!-- {{{  { list } -->
314                     </listitem>
315                 </varlistentry>
316                 <varlistentry>
317                     <term><emphasis remap='B'>{</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>}</emphasis></term>
318                     <listitem>
319                         <para>Compound construct; <emphasis remap='I'>list</emphasis> is executed, but not in a subshell.
320                             Note that <emphasis remap='B'>{</emphasis> and <emphasis remap='B'>}</emphasis> are reserved words, not meta-characters.</para>
321                         <!-- }}} -->
322                         <!-- {{{  case word in [ [ ( ] pattern [ | pattern ] ... ) list ;; ] ... esac -->
323                     </listitem>
324                 </varlistentry>
325                 <varlistentry>
326                     <term><emphasis remap='B'>case</emphasis> <emphasis remap='I'>word</emphasis> <emphasis remap='B'>in</emphasis> [ [<emphasis remap='B'>(</emphasis>] <emphasis remap='I'>pattern</emphasis> [<emphasis remap='B'>|</emphasis> <emphasis remap='I'>pattern</emphasis>] ... <emphasis remap='B'>)</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>;;</emphasis> ] ... <emphasis remap='B'>esac</emphasis></term>
327                     <listitem>
328                         <para>The <emphasis remap='B'>case</emphasis> statement attempts to match <emphasis remap='I'>word</emphasis> against the specified
329                             <emphasis remap='I'>pattern</emphasis>s; the <emphasis remap='I'>list</emphasis> associated with the first successfully matched
330                             pattern is executed.  Patterns used in <emphasis remap='B'>case</emphasis> statements are the same as
331                             those used for file name patterns except that the restrictions regarding
332                             <emphasis remap='B'>.</emphasis> and <emphasis remap='B'>/</emphasis> are dropped.  Note that any unquoted space before and
333                             after a pattern is stripped; any space with a pattern must be quoted.  Both the
334                             word and the patterns are subject to parameter, command, and arithmetic
335                             substitution as well as tilde substitution.
336                             For historical reasons, open and close braces may be used instead
337                             of <emphasis remap='B'>in</emphasis> and <emphasis remap='B'>esac</emphasis> (<emphasis remap='I'>e.g.</emphasis>, <emphasis remap='B'>case $foo { *) echo bar; }</emphasis>).
338                             The exit status of a <emphasis remap='B'>case</emphasis> statement is that of the executed <emphasis remap='I'>list</emphasis>;
339                             if no <emphasis remap='I'>list</emphasis> is executed, the exit status is zero.</para>
340                         <!-- }}} -->
341                         <!-- {{{  for name [ in word ... term ] do list done -->
342                     </listitem>
343                 </varlistentry>
344                 <varlistentry>
345                     <term><emphasis remap='B'>for</emphasis> <emphasis remap='I'>name</emphasis> [ <emphasis remap='B'>in</emphasis> <emphasis remap='I'>word</emphasis> ... <emphasis remap='I'>term</emphasis> ] <emphasis remap='B'>do</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>done</emphasis></term>
346                     <listitem>
347                         <para>where <emphasis remap='I'>term</emphasis> is either a newline or a <emphasis remap='B'>;</emphasis>.
348                             For each <emphasis remap='I'>word</emphasis> in the specified word list, the parameter <emphasis remap='I'>name</emphasis> is
349                             set to the word and <emphasis remap='I'>list</emphasis> is executed.  If <emphasis remap='B'>in</emphasis> is not used to
350                             specify a word list, the positional parameters (<emphasis remap='B'>"$1"</emphasis>, <emphasis remap='B'>"$2"</emphasis>,
351                             <emphasis remap='I'>etc.</emphasis>) are used instead.
352                             For historical reasons, open and close braces may be used instead
353                             of <emphasis remap='B'>do</emphasis> and <emphasis remap='B'>done</emphasis> (<emphasis remap='I'>e.g.</emphasis>, <emphasis remap='B'>for i; { echo $i; }</emphasis>).
354                             The exit status of a <emphasis remap='B'>for</emphasis> statement is the last exit status
355                             of <emphasis remap='I'>list</emphasis>; if <emphasis remap='I'>list</emphasis> is never executed, the exit status is zero.</para>
356                         <!-- }}} -->
357                         <!-- {{{  if list then list [ elif list then list ] ... [ else list ] fi -->
358                     </listitem>
359                 </varlistentry>
360                 <varlistentry>
361                     <term><emphasis remap='B'>if</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>then</emphasis> <emphasis remap='I'>list</emphasis> [<emphasis remap='B'>elif</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>then</emphasis> <emphasis remap='I'>list</emphasis>] ... [<emphasis remap='B'>else</emphasis> <emphasis remap='I'>list</emphasis>] <emphasis remap='B'>fi</emphasis></term>
362                     <listitem>
363                         <para>If the exit status of the first <emphasis remap='I'>list</emphasis> is zero, the second <emphasis remap='I'>list</emphasis>
364                             is executed; otherwise the <emphasis remap='I'>list</emphasis> following the <emphasis remap='B'>elif</emphasis>, if any, is
365                             executed with similar consequences.  If all the lists following the <emphasis remap='B'>if</emphasis>
366                             and <emphasis remap='B'>elif</emphasis>s fail (<emphasis remap='I'>i.e.</emphasis>, exit with non-zero status), the <emphasis remap='I'>list</emphasis>
367                             following the <emphasis remap='B'>else</emphasis> is executed.
368                             The exit status of an <emphasis remap='B'>if</emphasis> statement is that
369                             of non-conditional <emphasis remap='I'>list</emphasis> that is executed; if no non-conditional
370                             <emphasis remap='I'>list</emphasis> is executed, the exit status is zero.</para>
371                         <!-- }}} -->
372                         <!-- {{{  select name [ in word ... ] do list done -->
373                         <!-- }}} -->
374                         <!-- {{{  until list do list done -->
375                     </listitem>
376                 </varlistentry>
377                 <varlistentry>
378                     <term><emphasis remap='B'>until</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>do</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>done</emphasis></term>
379                     <listitem>
380                         <para>This works like <emphasis remap='B'>while</emphasis>, except that the body is executed only while the
381                             exit status of the first <emphasis remap='I'>list</emphasis> is non-zero.</para>
382                         <!-- }}} -->
383                         <!-- {{{  while list do list done -->
384                     </listitem>
385                 </varlistentry>
386                 <varlistentry>
387                     <term><emphasis remap='B'>while</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>do</emphasis> <emphasis remap='I'>list</emphasis> <emphasis remap='B'>done</emphasis></term>
388                     <listitem>
389                         <para>A <emphasis remap='B'>while</emphasis> is a prechecked loop.  Its body is executed as often
390                             as the exit status of the first <emphasis remap='I'>list</emphasis> is zero.
391                             The exit status of a <emphasis remap='B'>while</emphasis> statement is the last exit status
392                             of the <emphasis remap='I'>list</emphasis> in the body of the loop; if the body is not executed,
393                             the exit status is zero.</para>
394                     </listitem>
395                 </varlistentry>
396                         <!-- }}} -->
397                         <!-- {{{  name () command -->
398                 <varlistentry>
399                     <term><emphasis remap='I'>name</emphasis> <emphasis remap='B'>()</emphasis> <emphasis remap='I'>command</emphasis></term>
400                     <listitem>
401                                 <para>Defines the function <emphasis remap='I'>name</emphasis>.
402                             See Functions below.
403                             Note that redirections specified after a function definition are
404                             performed whenever the function is executed, not when the function
405                             definition is executed.</para>
406                         <!-- {{{  time [\-p] [ pipeline ] -->
407                     </listitem>
408                 </varlistentry>
409                 <varlistentry>
410                     <term><emphasis remap='B'>time</emphasis> [ <option>-p</option> ] [ <emphasis remap='I'>pipeline</emphasis> ]</term>
411                     <listitem>
412                         <para>The <emphasis remap='B'>time</emphasis> reserved word is described in the Command Execution section.</para>
413                         <!-- }}} -->
414                         <!-- {{{  (( expression )) -->
415                         <!-- }}} -->
416                         <!-- {{{  [[ expression ]] -->
417                         <!-- }}} -->
418                         <!-- }}} -->
419                         <!-- }}} -->
420                         <!-- {{{  Quoting -->
421                     </listitem>
422                 </varlistentry>
423             </variablelist> <!-- .IP (gather_variableliist) -->
424         </refsect2>
426         <refsect2 id='quoting'><title>Quoting</title>
427             <para>Quoting is used to prevent the shell from treating characters or words
428                 specially.
429                 There are three methods of quoting: First, <emphasis remap='B'>&bsol;</emphasis> quotes
430                 the following character, unless it is at the end of a line, in which
431                 case both the <emphasis remap='B'>&bsol;</emphasis> and the newline are stripped.
432                 Second, a single quote (<emphasis remap='B'>'</emphasis>) quotes everything up to the next single
433                 quote (this may span lines).
434                 Third, a double quote (<emphasis remap='B'>"</emphasis>) quotes all characters,
435                 except <emphasis remap='B'>$</emphasis>, <emphasis remap='B'>`</emphasis> and <emphasis remap='B'>&bsol;</emphasis>, up to the next unquoted double quote.
436                 <emphasis remap='B'>$</emphasis> and <emphasis remap='B'>`</emphasis> inside double quotes have their usual meaning (<emphasis remap='I'>i.e.</emphasis>,
437                 parameter, command or arithmetic substitution) except no field splitting
438                 is carried out on the results of double-quoted substitutions.
439                 If a <emphasis remap='B'>&bsol;</emphasis> inside a double-quoted string is followed by <emphasis remap='B'>&bsol;</emphasis>, <emphasis remap='B'>$</emphasis>,
440                 <emphasis remap='B'>`</emphasis> or <emphasis remap='B'>"</emphasis>, it is replaced by the second character; if it is
441                 followed by a newline, both the <emphasis remap='B'>&bsol;</emphasis> and the newline are stripped;
442                 otherwise, both the <emphasis remap='B'>&bsol;</emphasis> and the character following are unchanged.</para>
444             <para>Note: see POSIX Mode below for a special rule regarding sequences
445                 of the form <emphasis remap='B'>"</emphasis>...<emphasis remap='B'>`</emphasis>...<emphasis remap='B'>&bsol;"</emphasis>...<emphasis remap='B'>`</emphasis>..<emphasis remap='B'>"</emphasis>.</para>
446             <!-- }}} -->
447             <!-- {{{  Substitution -->
448         </refsect2>
450         <refsect2 id='substitution'><title>Substitution</title>
451             <para>The first step the shell takes in executing a simple-command is to
452                 perform substitutions on the words of the command.
453                 There are three kinds of substitution: parameter, command and arithmetic.
454                 Parameter substitutions, which are described in detail in the next section,
455                 take the form <emphasis remap='B'>$name</emphasis> or <emphasis remap='B'>${</emphasis>...<emphasis remap='B'>}</emphasis>; command substitutions take
456                 the form <emphasis remap='B'>$(</emphasis><emphasis remap='I'>command</emphasis><emphasis remap='B'>)</emphasis> or <emphasis remap='B'>`</emphasis><emphasis remap='I'>command</emphasis><emphasis remap='B'>`</emphasis>;
457                 and arithmetic substitutions take the form <emphasis remap='B'>$((</emphasis><emphasis remap='I'>expression</emphasis><emphasis remap='B'>))</emphasis>.</para>
459             <para>If a substitution appears outside of double quotes, the results of the
460                 substitution are generally subject to word or field splitting according to
461                 the current value of the <emphasis remap='B'>IFS</emphasis> parameter.
462                 The <emphasis remap='B'>IFS</emphasis> parameter specifies a list of characters which 
463                 are used to break a string up into several words;
464                 any characters from the set space, tab and newline that appear in the
465                 IFS characters are called <emphasis remap='I'>IFS white space</emphasis>.
466                 Sequences of one or more IFS white space characters, in combination with
467                 zero or one non-IFS white space characters delimit a field.
468                 As a special case, leading and trailing IFS white space is stripped (<emphasis remap='I'>i.e.</emphasis>,
469                 no leading or trailing empty field is created by it); leading or trailing
470                 non-IFS white space does create an empty field.
471                 Example: if <emphasis remap='B'>IFS</emphasis> is set to `&lt;space&gt;:', the sequence of characters
472                 `&lt;space&gt;A&lt;space&gt;:&lt;space&gt;&lt;space&gt;B::D' contains four fields: `A', `B', `' and `D'.
473                 Note that if the <emphasis remap='B'>IFS</emphasis> parameter is set to the null string, no
474                 field splitting is done; if the parameter is unset, the default value
475                 of space, tab and newline is used.</para>
477             <para>The results of substitution are, unless otherwise specified, also subject
478                 to brace expansion and file name expansion (see the relevant sections
479                 below).</para>
481             <para>A command substitution is replaced by the output generated by the specified
482                 command, which is run in a subshell.
483                 For <emphasis remap='B'>$(</emphasis><emphasis remap='I'>command</emphasis><emphasis remap='B'>)</emphasis> substitutions, normal quoting rules
484                 are used when <emphasis remap='I'>command</emphasis> is parsed, however, for the
485                 <emphasis remap='B'>`</emphasis><emphasis remap='I'>command</emphasis><emphasis remap='B'>`</emphasis> form, a <emphasis remap='B'>&bsol;</emphasis> followed by any of
486                 <emphasis remap='B'>$</emphasis>, <emphasis remap='B'>`</emphasis> or <emphasis remap='B'>&bsol;</emphasis> is stripped (a <emphasis remap='B'>&bsol;</emphasis> followed by any other
487                 character is unchanged).
488                 As a special case in command substitutions, a command of the form
489                 <emphasis remap='B'>&lt;</emphasis> <emphasis remap='I'>file</emphasis> is interpreted to mean substitute the contents
490                 of <emphasis remap='I'>file</emphasis> ($(&lt; foo) has the same effect as $(cat foo), but it
491                 is carried out more efficiently because no process is started).
492                 <!-- .br -->
493                 <!-- todo: fix this( $(..) parenthesis counting). -->
494                 NOTE: <emphasis remap='B'>$(</emphasis><emphasis remap='I'>command</emphasis><emphasis remap='B'>)</emphasis> expressions are currently parsed by
495                 finding the matching parenthesis, regardless of quoting.  This will hopefully
496                 be fixed soon.</para>
498             <para>Arithmetic substitutions are replaced by the value of the specified
499                 expression.
500                 For example, the command <emphasis remap='B'>echo $((2+3*4))</emphasis> prints 14.
501                 See Arithmetic Expressions for a description of an <emphasis remap='I'>expression</emphasis>.</para>
502             <!-- }}} -->
503             <!-- {{{  Parameters -->
504         </refsect2>
506         <refsect2 id='parameters'><title>Parameters</title>
507             <para>Parameters are shell variables; they can be assigned values and
508                 their values can be accessed using a parameter substitution.
509                 A parameter name is either one of the special single punctuation or digit
510                 character parameters described below, or a letter followed by zero or more
511                 letters or digits (`_' counts as a letter).
512                 The later form can be treated as arrays by appending an array
513                 index of the form: <emphasis remap='B'>[</emphasis><emphasis remap='I'>expr</emphasis><emphasis remap='B'>]</emphasis> where <emphasis remap='I'>expr</emphasis> is
514                 an arithmetic expression.
515                 Array indices are currently limited to the range 0 through 1023, inclusive.
516                 Parameter substitutions take the form <emphasis remap='B'>$</emphasis><emphasis remap='I'>name</emphasis>,
517                 <emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>}</emphasis> or
518                 <emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>[</emphasis><emphasis remap='I'>expr</emphasis><emphasis remap='B'>]}</emphasis>, where <emphasis remap='I'>name</emphasis> is a
519                 parameter name.
520                 If substitution is performed on a parameter (or an array parameter element)
521                 that is not set, a null
522                 string is substituted unless the <emphasis remap='B'>nounset</emphasis> option (<userinput>set -o nounset</userinput>
523                 or <userinput>set -u</userinput>) is set, in which case an error occurs.</para>
525             <!-- {{{  parameter assignment -->
526             <para>Parameters can be assigned values in a number of ways.
527                 First, the shell implicitly sets some parameters like <emphasis remap='B'>#</emphasis>, <envar>PWD</envar>,
528                 etc.; this is the only way the special single character parameters are
529                 set.
530                 Second, parameters are imported from the shell's environment at startup.
531                 Third, parameters can be assigned values on the command line, for example,
532                 `<emphasis remap='B'>FOO=bar</emphasis>' sets the parameter FOO to bar; multiple parameter
533                 assignments can be given on a single command line and they can
534                 be followed by a simple-command, in which case the assignments are
535                 in effect only for the duration of the command (such assignments are
536                 also exported, see below for implications of this).
537                 Note that both the parameter name and the <emphasis remap='B'>=</emphasis> must be unquoted for
538                 the shell to recognize a parameter assignment.
539                 The fourth way of setting a parameter is with the
540                 <emphasis remap='B'>export</emphasis> and
541                 <emphasis remap='B'>readonly</emphasis>
542                 commands; see their descriptions in the Command Execution
543                 section.
544                 Fifth, <emphasis remap='B'>for</emphasis> and <emphasis remap='B'>select</emphasis> loops set parameters as well as
545                 the <emphasis remap='B'>getopts</emphasis>, <emphasis remap='B'>read</emphasis> and <userinput>set -A</userinput> commands.
546                 Lastly, parameters can be assigned values using assignment operators
547                 inside arithmetic expressions (see Arithmetic Expressions below) or
548                 using the <emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>=</emphasis><emphasis remap='I'>value</emphasis><emphasis remap='B'>}</emphasis> form
549                 of parameter substitution (see below).</para>
550             <!-- }}} -->
552             <!-- {{{  environment -->
553             <para>Parameters with the export attribute (set using the <emphasis remap='B'>export</emphasis>
554                 command, or by parameter assignments followed by simple
555                 commands) are put in the environment (see <citerefentry><refentrytitle>environ</refentrytitle><manvolnum>5</manvolnum></citerefentry>) of commands
556                 run by the shell as <emphasis remap='I'>name</emphasis><emphasis remap='B'>=</emphasis><emphasis remap='I'>value</emphasis> pairs.
557                 The order in which parameters appear in the environment of a command
558                 is unspecified.
559                 When the shell starts up, it extracts parameters and their values from its
560                 environment and automatically sets the export attribute for those parameters.</para>
561             <!-- }}} -->
562             <!-- {{{  ${name[:][\-+=?]word} -->
564             <para>Modifiers can be applied to the <emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>}</emphasis> form of parameter
565                 substitution:</para>
566             <variablelist remap='.IP'>
567                 <varlistentry>
568                     <term><emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>:-</emphasis><emphasis remap='I'>word</emphasis><emphasis remap='B'>}</emphasis></term>
569                     <listitem>
570                         <para>if <emphasis remap='I'>name</emphasis> is set and not null, it is substituted, otherwise <emphasis remap='I'>word</emphasis> is
571                             substituted.</para>
572                     </listitem>
573                 </varlistentry>
574                 <varlistentry>
575                     <term><emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>:+</emphasis><emphasis remap='I'>word</emphasis><emphasis remap='B'>}</emphasis></term>
576                     <listitem>
577                         <para>if <emphasis remap='I'>name</emphasis> is set and not null, <emphasis remap='I'>word</emphasis> is substituted, otherwise nothing is substituted.</para>
578                     </listitem>
579                 </varlistentry>
580                 <varlistentry>
581                     <term><emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>:=</emphasis><emphasis remap='I'>word</emphasis><emphasis remap='B'>}</emphasis></term>
582                     <listitem>
583                         <para>if <emphasis remap='I'>name</emphasis> is set and not null, it is substituted, otherwise it is
584                             assigned <emphasis remap='I'>word</emphasis> and the resulting value of <emphasis remap='I'>name</emphasis> is substituted.</para>
585                     </listitem>
586                 </varlistentry>
587                 <varlistentry>
588                     <term><emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>:?</emphasis><emphasis remap='I'>word</emphasis><emphasis remap='B'>}</emphasis></term>
589                     <listitem>
590                         <para>if <emphasis remap='I'>name</emphasis> is set and not null, it is substituted, otherwise <emphasis remap='I'>word</emphasis>
591                             is printed on standard error (preceded by <emphasis remap='I'>name</emphasis>:) and an error occurs
592                             (normally causing termination of a shell script, function or .-script).
593                             If word is omitted the string `parameter null or not set' is used instead.</para>
594                     </listitem>
595                 </varlistentry>
596             </variablelist> <!-- .IP (gather_variableliist) -->
598             <para>In the above modifiers, the <emphasis remap='B'>:</emphasis> can be omitted, in which case the
599                 conditions only depend on <emphasis remap='I'>name</emphasis> being set (as opposed to set and
600                 not null).
601                 If <emphasis remap='I'>word</emphasis> is needed, parameter, command, arithmetic and tilde substitution
602                 are performed on it; if <emphasis remap='I'>word</emphasis> is not needed, it is not evaluated.</para>
603             <!-- }}} -->
605             <para>The following forms of parameter substitution can also be used:</para>
606             <!-- {{{  ${#name} -->
607             <variablelist remap='.IP'>
608                 <varlistentry>
609                     <term><emphasis remap='B'>${#</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>}</emphasis></term>
610                     <listitem>
611                         <para>The number of positional parameters if <emphasis remap='I'>name</emphasis> is <emphasis remap='B'>*</emphasis>, <emphasis remap='B'>@</emphasis> or
612                             is not specified,
613                             or the length of the string value of parameter <emphasis remap='I'>name</emphasis>.</para>
614                         <!-- }}} -->
615                         <!-- {{{  ${#name[*]}, ${#name[@]} -->
616                     </listitem>
617                 </varlistentry>
618                 <varlistentry>
619                     <term><emphasis remap='B'>${#</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>[*]}</emphasis>, <emphasis remap='B'>${#</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>[@]}</emphasis></term>
620                     <listitem>
621                         <para>The number of elements in the array <emphasis remap='I'>name</emphasis>.</para>
622                         <!-- }}} -->
623                         <!-- {{{  ${name#pattern}, ${name##pattern} -->
624                     </listitem>
625                 </varlistentry>
626                 <varlistentry>
627                     <term><emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>#</emphasis><emphasis remap='I'>pattern</emphasis><emphasis remap='B'>}</emphasis>, <emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>##</emphasis><emphasis remap='I'>pattern</emphasis><emphasis remap='B'>}</emphasis></term>
628                     <listitem>
629                         <para>If <emphasis remap='I'>pattern</emphasis> matches the beginning of the value of parameter <emphasis remap='I'>name</emphasis>,
630                             the matched text is deleted from the result of substitution.  A single
631                             <emphasis remap='B'>#</emphasis> results in the shortest match, two <emphasis remap='B'>#</emphasis>'s results in the
632                             longest match.</para>
633                         <!-- }}} -->
634                         <!-- {{{  ${name%pattern}, ${name%%pattern} -->
635                     </listitem>
636                 </varlistentry>
637                 <varlistentry>
638                     <term><emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>%</emphasis><emphasis remap='I'>pattern</emphasis><emphasis remap='B'>}</emphasis>, <emphasis remap='B'>${</emphasis><emphasis remap='I'>name</emphasis><emphasis remap='B'>%%</emphasis><emphasis remap='I'>pattern</emphasis><emphasis remap='B'>}</emphasis></term>
639                     <listitem>
640                         <para>Like <emphasis remap='B'>${</emphasis>..<emphasis remap='B'>#</emphasis>..<emphasis remap='B'>}</emphasis> substitution, but it deletes from the end of the
641                             value.</para>
642                         <!-- }}} -->
643                         <!-- {{{  special shell parameters -->
644                     </listitem>
645                 </varlistentry>
646             </variablelist> <!-- .IP (gather_variableliist) -->
648             <para>The following special parameters are implicitly set by the shell and cannot be
649                 set directly using assignments:</para>
650             <!-- {{{  ! -->
651             <variablelist remap='.IP'>
652                 <varlistentry>
653                     <term><emphasis remap='B'>!</emphasis></term>
654                     <listitem>
655                         <para>Process id of the last background process started.  If no background
656                             processes have been started, the parameter is not set.</para>
657                         <!-- }}} -->
658                         <!-- {{{  # -->
659                     </listitem>
660                 </varlistentry>
661                 <varlistentry>
662                     <term><emphasis remap='B'>#</emphasis></term>
663                     <listitem>
664                         <para>The number of positional parameters (<emphasis remap='I'>i.e.</emphasis>, <emphasis remap='B'>$1</emphasis>, <emphasis remap='B'>$2</emphasis>,
665                             <emphasis remap='I'>etc.</emphasis>).</para>
666                         <!-- }}} -->
667                         <!-- {{{  $ -->
668                     </listitem>
669                 </varlistentry>
670                 <varlistentry>
671                     <term><emphasis remap='B'>$</emphasis></term>
672                     <listitem>
673                         <para>The process ID of the shell, or the PID of the original shell if
674                             it is a subshell.</para>
675                         <!-- }}} -->
676                         <!-- {{{  \- -->
677                     </listitem>
678                 </varlistentry>
679                 <varlistentry>
680                     <term><emphasis remap='B'>-</emphasis></term>
681                     <listitem>
682                         <para>The concatenation of the current single letter options
683                             (see <emphasis remap='B'>set</emphasis> command below for list of options).</para>
684                         <!-- }}} -->
685                         <!-- {{{  ? -->
686                     </listitem>
687                 </varlistentry>
688                 <varlistentry>
689                     <term><emphasis remap='B'>?</emphasis></term>
690                     <listitem>
691                         <para>The exit status of the last non-asynchronous command executed.
692                             If the last command was killed by a signal, <emphasis remap='B'>$?</emphasis> is set to 128 plus
693                             the signal number.</para>
694                     </listitem>
695                 </varlistentry>
696                 <varlistentry>
697                     <term><varname>0</varname></term>
698                     <listitem>
699                             <para>The name the shell was invoked with (that is,
700                                     <varname>argv[0]</varname>), or the
701                                     <command><replaceable>command-name</replaceable></command>
702                                     if it was invoked with the <option>-c</option>
703                                     option and the
704                                     <command><replaceable>command-name</replaceable></command>
705                     was supplied, or the
706                     <filename><replaceable>file</replaceable></filename> argument, if it was
707                             supplied.
708                             If the <option>posix</option> option is not set, <emphasis remap='B'>$0</emphasis> is the name of the current
709                             function or script.</para>
710                     </listitem>
711                 </varlistentry>
712                 <varlistentry>
713                     <term><varname>1</varname> ... <varname>9</varname></term>
714                     <listitem>
715                         <para>The first nine positional parameters that were supplied to the shell,
716                             function or <command>.</command>-script.
717                             Further positional parameters may be accessed using
718                             <varname>${<replaceable>number</replaceable>}</varname>.</para>
719                     </listitem>
720                 </varlistentry>
721                 <varlistentry>
722                     <term><varname>*</varname></term>
723                     <listitem>
724                         <para>All positional parameters (except parameter 0), 
725                             <emphasis remap='I'>i.e.</emphasis>, <emphasis remap='B'>$1 $2 $3</emphasis>....
726                             If used outside of double quotes, parameters are separate words
727                             (which are subjected to word splitting); if used within double quotes,
728                             parameters are separated by the first character of the <emphasis remap='B'>IFS</emphasis> parameter
729                             (or the empty string if <emphasis remap='B'>IFS</emphasis> is null).</para>
730                         <!-- }}} -->
731                         <!-- {{{  @ -->
732                     </listitem>
733                 </varlistentry>
734                 <varlistentry>
735                     <term><varname>@</varname></term>
736                     <listitem>
737                         <para>Same as <emphasis remap='B'>$*</emphasis>, unless it is used inside double quotes, in which case
738                             a separate word is generated for each positional parameter - if there
739                             are no positional parameters, no word is generated ("$@" can be used
740                             to access arguments, verbatim, without loosing null arguments or
741                             splitting arguments with spaces).</para>
742                         <!-- }}} -->
743                         <!-- }}} -->
744                         <!-- {{{  general shell parameters -->
745                     </listitem>
746                 </varlistentry>
747             </variablelist> <!-- .IP (gather_variableliist) -->
749             <para>The following parameters are set and/or used by the shell:</para>
750             <!-- {{{  _ -->
751             <!-- }}} -->
752             <!-- {{{  CDPATH -->
753             <variablelist remap='.IP'>
754                 <varlistentry>
755                     <term>"<emphasis remap='B'>CDPATH</emphasis>"</term>
756                     <listitem>
757                         <para>Search path for the <emphasis remap='B'>cd</emphasis> built-in command.  Works the same way as
758                             <envar>PATH</envar> for those directories not beginning with <emphasis remap='B'>/</emphasis> in <emphasis remap='B'>cd</emphasis>
759                             commands.
760                             Note that if CDPATH is set and does not contain <literal>.</literal> nor an empty path,
761                             the current directory is not searched.</para>
762                         <!-- }}} -->
763                         <!-- {{{  COLUMNS -->
764                     </listitem>
765                 </varlistentry>
766                 <varlistentry>
767                     <term><envar>COLUMNS</envar></term>
768                     <listitem>
769                         <para>Set to the number of columns on the terminal or window.
770                             Currently set to the <emphasis remap='B'>cols</emphasis> value as reported by <citerefentry><refentrytitle>stty</refentrytitle><manvolnum>1</manvolnum></citerefentry> if that
771                             value is non-zero.
772                             This parameter is used by the interactive line editing modes, and by
773                             <emphasis remap='B'>select</emphasis>, <userinput>set -o</userinput> and <userinput>kill -l</userinput> commands
774                             to format information in columns.</para>
775                         <!-- }}} -->
776                         <!-- {{{  EDITOR -->
777                         <!-- }}} -->
778                     </listitem>
779                 </varlistentry>
780                 <varlistentry>
781                     <term><emphasis remap='B'>ERRNO</emphasis></term>
782                     <listitem>
783                         <para>Integer value of the shell's errno variable &mdash; indicates the reason
784                             the last system call failed.</para>
785                         <!--  todo: ERRNO variable -->
787                         <para>Not implemented yet.</para>
788                         <!-- }}} -->
789                         <!-- {{{  EXECSHELL -->
790                     </listitem>
791                 </varlistentry>
792                 <varlistentry>
793                     <term><emphasis remap='B'>EXECSHELL</emphasis></term>
794                     <listitem>
795                         <para>If set, this parameter is assumed to contain the shell that is to be
796                             used to execute commands that <citerefentry><refentrytitle>execve</refentrytitle><manvolnum>2</manvolnum></citerefentry> fails to execute and
797                             which do not start with a `<emphasis remap='B'>#!</emphasis> <emphasis remap='I'>shell</emphasis>' sequence.</para>
798                         <!-- }}} -->
799                         <!-- {{{  FCEDIT -->
800                     </listitem>
801                 </varlistentry>
802                 <varlistentry>
803                     <term><emphasis remap='B'>FCEDIT</emphasis></term>
804                     <listitem>
805                         <para>The editor used by the <emphasis remap='B'>fc</emphasis> command (see below).</para>
806                         <!-- }}} -->
807                         <!-- {{{  FPATH -->
808                     </listitem>
809                 </varlistentry>
810                 <varlistentry>
811                     <term><emphasis remap='B'>FPATH</emphasis></term>
812                     <listitem>
813                         <para>Like <envar>PATH</envar>, but used when an undefined function is executed to locate
814                             the file defining the function.
815                             It is also searched when a command can't be found using <envar>PATH</envar>.
816                             See Functions below for more information.</para>
817                         <!-- }}} -->
818                         <!-- {{{  HISTFILE -->
819                         <!-- }}} -->
820                         <!-- {{{  HISTSIZE -->
821                         <!-- }}} -->
822                         <!-- {{{  HOME -->
823                     </listitem>
824                 </varlistentry>
825                 <varlistentry>
826                     <term><envar>HOME</envar></term>
827                     <listitem>
828                         <para>The default directory for the <emphasis remap='B'>cd</emphasis> command and the value
829                             substituted for an unqualified <emphasis remap='B'>~</emphasis> (see Tilde Expansion below).</para>
830                         <!-- }}} -->
831                         <!-- {{{  IFS -->
832                     </listitem>
833                 </varlistentry>
834                 <varlistentry>
835                     <term><emphasis remap='B'>IFS</emphasis></term>
836                     <listitem>
837                         <para>Internal field separator, used during substitution and by the <emphasis remap='B'>read</emphasis>
838                             command, to split values into distinct arguments; normally set to
839                             space, tab and newline.  See Substitution above for details.
840                             <!-- .br -->
841                             <emphasis remap='B'>Note:</emphasis> this parameter is not imported from the environment
842                             when the shell is started.</para>
843                     </listitem>
844                 </varlistentry>
845                 <varlistentry>
846                     <term><emphasis remap='B'>POSH_VERSION</emphasis></term>
847                     <listitem>
848                         <para>The version of posh (readonly).</para>
849                         <!-- }}} -->
850                         <!-- {{{  LINENO -->
851                     </listitem>
852                 </varlistentry>
853                 <varlistentry>
854                     <term><emphasis remap='B'>LINENO</emphasis></term>
855                     <listitem>
856                         <para>The line number of the function or shell script that is currently being
857                             executed.</para>
858                         <!-- }}} -->
859                         <!-- {{{  LINES -->
860                     </listitem>
861                 </varlistentry>
862                 <varlistentry>
863                     <term><envar>LINES</envar></term>
864                     <listitem>
865                         <para>Set to the number of lines on the terminal or window.</para>
866                         <!-- Currently set to the \fBrows\fP value as reported by \fIstty\fP(1) if that -->
867                         <!-- value is non\-zero. -->
868                         <!--  todo: LINES variable -->
870                         <para>Not implemented yet.</para>
871                         <!-- }}} -->
872                         <!-- {{{  MAIL -->
873                         <!-- }}} -->
874                         <!-- {{{  MAILCHECK -->
875                         <!-- }}} -->
876                         <!-- {{{  MAILPATH -->
877                         <!-- }}} -->
878                         <!-- {{{  OLDPWD -->
879                     </listitem>
880                 </varlistentry>
881                 <varlistentry>
882                     <term><envar>OLDPWD</envar></term>
883                     <listitem>
884                         <para>The previous working directory.
885                             Unset if <emphasis remap='B'>cd</emphasis> has not successfully changed directories since the
886                             shell started, or if the shell doesn't know where it is.</para>
887                         <!-- }}} -->
888                         <!-- {{{  OPTARG -->
889                     </listitem>
890                 </varlistentry>
891                 <varlistentry>
892                     <term><envar>OPTARG</envar></term>
893                     <listitem>
894                         <para>When using <emphasis remap='B'>getopts</emphasis>, it contains the argument for a parsed option,
895                             if it requires one.</para>
896                         <!-- }}} -->
897                         <!-- {{{  OPTIND -->
898                     </listitem>
899                 </varlistentry>
900                 <varlistentry>
901                     <term><envar>OPTIND</envar></term>
902                     <listitem>
903                         <para>The index of the last argument processed when using <emphasis remap='B'>getopts</emphasis>.
904                             Assigning 1 to this parameter causes <emphasis remap='B'>getopts</emphasis> to
905                             process arguments from the beginning the next time it is invoked.</para>
906                         <!-- }}} -->
907                         <!-- {{{  PATH -->
908                     </listitem>
909                 </varlistentry>
910                 <varlistentry>
911                     <term><envar>PATH</envar></term>
912                     <listitem>
913                         <para>A colon separated list of directories that are searched when looking
914                             for commands and <literal>.</literal>'d files.
915                             An empty string resulting from a leading or trailing colon, or two adjacent
916                             colons is treated as a `.', the current directory.</para>
917                         <!-- }}} -->
918                         <!-- {{{  PPID -->
919                     </listitem>
920                 </varlistentry>
921                 <varlistentry>
922                     <term><envar>PPID</envar></term>
923                     <listitem>
924                         <para>The process ID of the shell's parent (readonly).</para>
925                     </listitem>
926                 </varlistentry>
927                 <varlistentry>
928                     <term><envar>PS1</envar></term>
929                     <listitem>
930                         <para>The primary prompt for interactive shells.
931                             The prompt is printed verbatim (<emphasis remap='I'>i.e.</emphasis>, no substitutions are done).
932                             Default is
933                             &lsquo;<literal>$&nbsp;</literal>&rsquo; for non-root users, `<emphasis remap='B'>#&nbsp;</emphasis>' for root..</para>
934                         <!-- }}} -->
935                         <!-- {{{  PS2 -->
936                     </listitem>
937                 </varlistentry>
938                 <varlistentry>
939                     <term><envar>PS2</envar></term>
940                     <listitem>
941                         <para>Secondary prompt string, by default `<emphasis remap='B'>&gt;</emphasis> ', used when more input is
942                             needed to complete a command.</para>
943                         <!-- }}} -->
944                         <!-- {{{  PS3 -->
945                         <!-- }}} -->
946                         <!-- {{{  PS4 -->
947                     </listitem>
948                 </varlistentry>
949                 <varlistentry>
950                     <term><envar>PS4</envar></term>
951                     <listitem>
952                         <para>Used to prefix commands that are printed during execution tracing
953                             (see <userinput>set -x</userinput> command below).
954                             The prompt is printed verbatim (<emphasis remap='I'>i.e.</emphasis>, no substitutions are done).
955                             Default is `<emphasis remap='B'>+&nbsp;</emphasis>'.</para>
956                         <!-- }}} -->
957                         <!-- {{{  PWD -->
958                     </listitem>
959                 </varlistentry>
960                 <varlistentry>
961                     <term><envar>PWD</envar></term>
962                     <listitem>
963                         <para>The current working directory.  Maybe unset or null if shell doesn't
964                             know where it is.</para>
965                         <!-- }}} -->
966                         <!-- {{{  RANDOM -->
967                         <!-- }}} -->
968                         <!-- {{{  REPLY -->
969                     </listitem>
970                 </varlistentry>
971                 <varlistentry>
972                     <term><emphasis remap='B'>REPLY</emphasis></term>
973                     <listitem>
974                         <para>Default parameter for the <emphasis remap='B'>read</emphasis> command if no names are given.
975                             Also used in <emphasis remap='B'>select</emphasis> loops to store the value that is read from
976                             standard input.</para>
977                         <!-- }}} -->
978                         <!-- {{{  SECONDS -->
979                         <!-- }}} -->
980                         <!-- {{{  TMOUT -->
981                         <!-- }}} -->
982                         <!-- {{{  TMPDIR -->
983                     </listitem>
984                 </varlistentry>
985                 <varlistentry>
986                     <term><envar>TMPDIR</envar></term>
987                     <listitem>
988                         <para>The directory shell temporary files are created in.  If this parameter
989                             is not set, or does not contain the absolute path of a writable
990                             directory, temporary files are created in <filename>/tmp</filename>.</para>
991                         <!-- }}} -->
992                         <!-- {{{  VISUAL -->
993                         <!-- }}} -->
994                         <!-- }}} -->
995                         <!-- }}} -->
996                         <!-- {{{  Tilde Expansion -->
997                     </listitem>
998                 </varlistentry>
999             </variablelist> <!-- .IP (gather_variableliist) -->
1000         </refsect2>
1002         <refsect2 id='tilde_expansion'><title>Tilde Expansion</title>
1003             <para>Tilde expansion, which is done in parallel with parameter substitution,
1004                 is done on words starting with an unquoted <emphasis remap='B'>~</emphasis>.  The characters
1005                 following the tilde, up to the first <emphasis remap='B'>/</emphasis>, if any, are assumed to be
1006                 a login name.  If the login name is empty, <emphasis remap='B'>+</emphasis> or <emphasis remap='B'>-</emphasis>, the
1007                 value of the <envar>HOME</envar>, <envar>PWD</envar>, or <emphasis remap='B'>OLDPWD</emphasis> parameter is
1008                 substituted, respectively.  Otherwise, the password file is searched for
1009                 the login name, and the tilde expression is substituted with the
1010                 user's home directory.  If the login name is not found in the password
1011                 file or if any quoting or parameter substitution occurs in the login name,
1012                 no substitution is performed.</para>
1014             <para>In parameter assignments (those preceding a simple-command or those
1015                     occurring in the arguments of <emphasis remap='B'>alias</emphasis>, <emphasis remap='B'>export</emphasis>,
1016                    and <emphasis remap='B'>readonly</emphasis>,
1017                 tilde expansion is done after any unquoted colon
1018                 (<emphasis remap='B'>:</emphasis>), and login names are also delimited by colons.</para>
1020             <para>The home directory of previously expanded login names are cached and
1021                 re-used.  The <userinput>alias -d</userinput> command may be used to list, change and
1022                 add to this cache (<emphasis remap='I'>e.g.</emphasis>, `alias -d fac=/usr/local/facilities; cd
1023                 ~fac/bin').</para>
1024             <!-- }}} -->
1025             <!-- {{{  Brace Expansion -->
1026             <!-- }}} -->
1027             <!-- {{{  File Name Patterns -->
1028         </refsect2>
1030         <refsect2 id='file_name_patterns'><title>File Name Patterns</title>
1032             <para>A file name pattern is a word containing one or more unquoted <emphasis remap='B'>?</emphasis> or
1033                 <emphasis remap='B'>*</emphasis> characters or <emphasis remap='B'>[</emphasis>..<emphasis remap='B'>]</emphasis> sequences.  Once brace expansion has
1034                 been performed, the shell replaces file name patterns with the sorted names
1035                 of all the files that match the pattern (if no files match, the word is
1036                 left unchanged).  The pattern elements have the following meaning:</para>
1037             <variablelist remap='.IP'>
1038                 <varlistentry>
1039                     <term>"<emphasis remap='B'>?</emphasis>"</term>
1040                     <listitem>
1041                         <para>matches any single character.</para>
1042                     </listitem>
1043                 </varlistentry>
1044                 <varlistentry>
1045                     <term><emphasis remap='B'>*</emphasis></term>
1046                     <listitem>
1047                         <para>matches any sequence of characters.</para>
1048                     </listitem>
1049                 </varlistentry>
1050                 <varlistentry>
1051                     <term><emphasis remap='B'>[</emphasis>..<emphasis remap='B'>]</emphasis></term>
1052                     <listitem>
1053                         <para>matches any of the characters inside the brackets.  Ranges of characters
1054                             can be specified by separating two characters by a <emphasis remap='B'>-</emphasis>, <emphasis remap='I'>e.g.</emphasis>,
1055                             <emphasis remap='B'>[a0-9]</emphasis> matches the letter <emphasis remap='B'>a</emphasis> or any digit.
1056                             In order to represent itself, a
1057                             <emphasis remap='B'>-</emphasis> must either be quoted or the first or last character in the character
1058                             list.  Similarly, a <emphasis remap='B'>]</emphasis> must be quoted or the first character in the list
1059                             if it is represent itself instead of the end of the list.  Also, a <emphasis remap='B'>!</emphasis>
1060                             appearing at the start of the list has special meaning (see below), so to
1061                             represent itself it must be quoted or appear later in the list.</para>
1062                     </listitem>
1063                 </varlistentry>
1064                 <varlistentry>
1065                     <term><emphasis remap='B'>[!</emphasis>..<emphasis remap='B'>]</emphasis></term>
1066                     <listitem>
1067                         <para>like <emphasis remap='B'>[</emphasis>..<emphasis remap='B'>]</emphasis>, except it matches any character not inside the brackets.</para>
1068                     </listitem>
1069                 </varlistentry>
1070             </variablelist> <!-- .IP (gather_variableliist) -->
1072             <para>Note that posh currently never matches <literal>.</literal> and <literal>..</literal>, but the original
1073                 ksh, Bourne sh and bash do, so this may have to change (too bad).</para>
1075             <para>Note that none of the above pattern elements match either a period (<literal>.</literal>)
1076                 at the start of a file name or a slash (<emphasis remap='B'>/</emphasis>), even if they are explicitly
1077                 used in a <emphasis remap='B'>[</emphasis>..<emphasis remap='B'>]</emphasis> sequence; also, the names <literal>.</literal> and <literal>..</literal>
1078                 are never matched, even by the pattern <emphasis remap='B'>.*</emphasis>.</para>
1080             <!--  todo: implement this ([[:alpha:]], \fIetc.\fP) -->
1081             <para>The POSIX character classes (<emphasis remap='I'>i.e.</emphasis>,
1082                 <emphasis remap='B'>[:</emphasis><emphasis remap='I'>class-name</emphasis><emphasis remap='B'>:]</emphasis> inside a <emphasis remap='B'>[</emphasis>..<emphasis remap='B'>]</emphasis> expression)
1083                 are not yet implemented.</para>
1084             <!-- }}} -->
1085             <!-- {{{  Input/Output Redirection -->
1086         </refsect2>
1088         <refsect2 id='inputoutput_redirection'><title>Input/Output Redirection</title>
1089             <para>When a command is executed, its standard input, standard output and
1090                 standard error (file descriptors 0, 1 and 2, respectively) are normally
1091                 inherited from the shell.
1092                 Three exceptions to this are commands in pipelines, for which standard input
1093                 and/or standard output are those set up by the pipeline, asynchronous commands
1094                 created when job control is disabled, for which standard input is initially
1095                 set to be from <filename>/dev/null</filename>, and commands for which any of the following
1096                 redirections have been specified:</para>
1097             <variablelist remap='.IP'>
1098                 <varlistentry>
1099                     <term>"<emphasis remap='B'>&gt;</emphasis> <emphasis remap='I'>file</emphasis>"</term>
1100                     <listitem>
1101                         <para>standard output is redirected to <emphasis remap='I'>file</emphasis>.  If <emphasis remap='I'>file</emphasis> does not exist,
1102                             it is created; if it does exist, is a regular file and the <emphasis remap='B'>noclobber</emphasis>
1103                             option is set, an error occurs, otherwise the file is truncated.
1104                             Note that this means the command <emphasis remap='I'>cmd &lt; foo &gt; foo</emphasis> will open
1105                             <emphasis remap='I'>foo</emphasis> for reading and then truncate it when it opens it for writing,
1106                             before <emphasis remap='I'>cmd</emphasis> gets a chance to actually read <emphasis remap='I'>foo</emphasis>.</para>
1107                     </listitem>
1108                 </varlistentry>
1109                 <varlistentry>
1110                     <term>"<emphasis remap='B'>&gt;|</emphasis> <emphasis remap='I'>file</emphasis>"</term>
1111                     <listitem>
1112                         <para>same as <emphasis remap='B'>&gt;</emphasis>, except the file is truncated, even if the <emphasis remap='B'>noclobber</emphasis>
1113                             option is set.</para>
1114                     </listitem>
1115                 </varlistentry>
1116                 <varlistentry>
1117                     <term>"<emphasis remap='B'>&gt;&gt;</emphasis> <emphasis remap='I'>file</emphasis>"</term>
1118                     <listitem>
1119                         <para>same as <emphasis remap='B'>&gt;</emphasis>, except the file an existing file is appended to instead
1120                             of being truncated.  Also, the file is opened in append mode, so writes
1121                             always go to the end of the file (see <citerefentry><refentrytitle>open</refentrytitle><manvolnum>2</manvolnum></citerefentry>).</para>
1122                     </listitem>
1123                 </varlistentry>
1124                 <varlistentry>
1125                     <term>"<emphasis remap='B'>&lt;</emphasis> <emphasis remap='I'>file</emphasis>"</term>
1126                     <listitem>
1127                         <para>standard input is redirected from <emphasis remap='I'>file</emphasis>, which is opened for reading.</para>
1128                     </listitem>
1129                 </varlistentry>
1130                 <varlistentry>
1131                     <term>"<emphasis remap='B'>&lt;&gt;</emphasis> <emphasis remap='I'>file</emphasis>"</term>
1132                     <listitem>
1133                         <para>same as <emphasis remap='B'>&lt;</emphasis>, except the file is opened for reading and writing.</para>
1134                     </listitem>
1135                 </varlistentry>
1136                 <varlistentry>
1137                     <term>"<emphasis remap='B'>&lt;&lt;</emphasis> <emphasis remap='I'>marker</emphasis>"</term>
1138                     <listitem>
1139                         <para>after reading the command line containing this kind of redirection (called a
1140                             here document), the shell copies lines from the command source into a temporary
1141                             file until a line matching <emphasis remap='I'>marker</emphasis> is read.
1142                             When the command is executed, standard input is redirected from the temporary
1143                             file.
1144                             If <emphasis remap='I'>marker</emphasis> contains no quoted characters, the contents of the
1145                             temporary file are processed as if enclosed in double quotes each time
1146                             the command is executed, so parameter, command and arithmetic substitutions
1147                             are performed, along with backslash (<emphasis remap='B'>&bsol;</emphasis>) escapes for
1148                             <emphasis remap='B'>$</emphasis>, <emphasis remap='B'>`</emphasis>, <emphasis remap='B'>&bsol;</emphasis> and <emphasis remap='B'>&bsol;newline</emphasis>.
1149                             If multiple here documents are used on the same command line, they are
1150                             saved in order.</para>
1151                     </listitem>
1152                 </varlistentry>
1153                 <varlistentry>
1154                     <term>"<emphasis remap='B'>&lt;&lt;-</emphasis> <emphasis remap='I'>marker</emphasis>"</term>
1155                     <listitem>
1156                         <para>same as <emphasis remap='B'>&lt;&lt;</emphasis>, except leading tabs are stripped from lines in the
1157                             here document.</para>
1158                     </listitem>
1159                 </varlistentry>
1160                 <varlistentry>
1161                     <term>"<emphasis remap='B'>&lt;&amp;</emphasis> <emphasis remap='I'>fd</emphasis>"</term>
1162                     <listitem>
1163                         <para>standard input is duplicated from file descriptor <emphasis remap='I'>fd</emphasis>.
1164                             <emphasis remap='I'>fd</emphasis> can be a single digit, indicating the number of an existing
1165                             file descriptor, the letter <emphasis remap='B'>p</emphasis>, indicating the file descriptor
1166                             associated with the output of the current co-process, or
1167                             the character <emphasis remap='B'>-</emphasis>, indicating standard input is to be closed.</para>
1168                     </listitem>
1169                 </varlistentry>
1170                 <varlistentry>
1171                     <term>"<emphasis remap='B'>&gt;&amp;</emphasis> <emphasis remap='I'>fd</emphasis>"</term>
1172                     <listitem>
1173                         <para>same as <emphasis remap='B'>&lt;&amp;</emphasis>, except the operation is done on standard output.</para>
1174                     </listitem>
1175                 </varlistentry>
1176             </variablelist> <!-- .IP (gather_variableliist) -->
1178             <para>In any of the above redirections, the file descriptor that is redirected
1179                 (<emphasis remap='I'>i.e.</emphasis>, standard input or standard output) can be explicitly given by
1180                 preceding the redirection with a single digit.
1181                 Parameter, command and arithmetic substitutions, tilde substitutions and
1182                 (if the shell is interactive) file name generation are all performed
1183                 on the <emphasis remap='I'>file</emphasis>, <emphasis remap='I'>marker</emphasis> and <emphasis remap='I'>fd</emphasis> arguments of redirections.
1184                 Note however, that the results of any file name generation are only used
1185                 if a single file is matched; if multiple files match, the word with the
1186                 unexpanded file name generation characters is used.</para>
1188             <para>For simple-commands, redirections may appear anywhere in the command, for
1189                 compound-commands (<emphasis remap='B'>if</emphasis> statements, <emphasis remap='I'>etc.</emphasis>), any redirections must
1190                 appear at the end.
1191                 Redirections are processed after pipelines are created and in the order they
1192                 are given, so
1193                 <!-- .RS -->
1194                 <emphasis remap='B'>cat /foo/bar 2&gt;&amp;1 &gt; /dev/null | cat -n</emphasis>
1195                 <!-- .RE -->
1196                 will print an error with a line number prepended to it.</para>
1197             <!-- }}} -->
1198             <!-- {{{  Arithmetic Expressions -->
1199         </refsect2>
1201         <refsect2 id='arithmetic_expressions'><title>Arithmetic Expressions</title>
1202             <para>Integer arithmetic expressions can be used
1203                 inside <emphasis remap='B'>$((</emphasis>..<emphasis remap='B'>))</emphasis> expressions,
1204                 inside array references (<emphasis remap='I'>e.g.</emphasis>, <emphasis remap='I'>name</emphasis><emphasis remap='B'>[</emphasis><emphasis remap='I'>expr</emphasis><emphasis remap='B'>]</emphasis>),
1205                 as numeric arguments to the <emphasis remap='B'>test</emphasis> command,
1206                 and as the value of an assignment to an integer parameter.</para>
1208             <para>Expression may contain alpha-numeric parameter identifiers, array
1209                 references, and integer constants and may be combined with the
1210                 following C operators (listed and grouped in increasing order of precedence).</para>
1211             <variablelist remap='TP'>
1212                 <varlistentry>
1213                     <term>Unary operators:</term>
1214                     <listitem>
1215                         <para><emphasis remap='B'>+ - ! ~ ++ --</emphasis></para>
1216                     </listitem>
1217                 </varlistentry>
1218                 <varlistentry>
1219                     <term>Binary operators:</term>
1220                     <listitem>
1221                         <para><emphasis remap='B'>,</emphasis>
1222                             <!-- .br -->
1223                             <emphasis remap='B'>= *= /= %= += -= &lt;&lt;= &gt;&gt;= &amp;= ^= |=</emphasis>
1224                             <!-- .br -->
1225                             <emphasis remap='B'>||</emphasis>
1226                             <!-- .br -->
1227                             <emphasis remap='B'>&amp;&amp;</emphasis>
1228                             <!-- .br -->
1229                             <emphasis remap='B'>|</emphasis>
1230                             <!-- .br -->
1231                             <emphasis remap='B'>^</emphasis>
1232                             <!-- .br -->
1233                             <emphasis remap='B'>&amp;</emphasis>
1234                             <!-- .br -->
1235                             <emphasis remap='B'>== !=</emphasis>
1236                             <!-- .br -->
1237                             <emphasis remap='B'>&lt; &lt;= &gt;= &gt;</emphasis>
1238                             <!-- .br -->
1239                             <emphasis remap='B'>&lt;&lt; &gt;&gt;</emphasis>
1240                             <!-- .br -->
1241                             <emphasis remap='B'>+ -</emphasis>
1242                             <!-- .br -->
1243                             <emphasis remap='B'>* / %</emphasis></para>
1244                     </listitem>
1245                 </varlistentry>
1246                 <varlistentry>
1247                     <term>Ternary operator:</term>
1248                     <listitem>
1249                         <para><emphasis remap='B'>?:</emphasis> (precedence is immediately higher than assignment)</para>
1250                     </listitem>
1251                 </varlistentry>
1252                 <varlistentry>
1253                     <term>Grouping operators:</term>
1254                     <listitem>
1255                         <para><emphasis remap='B'>( )</emphasis></para>
1256                     </listitem>
1257                 </varlistentry>
1258             </variablelist> <!-- .TP -->
1260             <para>Integer constants may be specified with arbitrary bases using the notation
1261                 <emphasis remap='I'>base</emphasis><emphasis remap='B'>#</emphasis><emphasis remap='I'>number</emphasis>, where <emphasis remap='I'>base</emphasis> is a decimal integer specifying
1262                 the base, and <emphasis remap='I'>number</emphasis> is a number in the specified base.</para>
1264             <para>The operators are evaluated as follows:</para>
1265             <!-- .RS -->
1266             <variablelist remap='.IP'>
1267                 <varlistentry>
1268                     <term>"unary <emphasis remap='B'>+</emphasis>"</term>
1269                     <listitem>
1270                         <para>result is the argument (included for completeness).</para>
1271                     </listitem>
1272                 </varlistentry>
1273                 <varlistentry>
1274                     <term>"unary <emphasis remap='B'>-</emphasis>"</term>
1275                     <listitem>
1276                         <para>negation.</para>
1277                     </listitem>
1278                 </varlistentry>
1279                 <varlistentry>
1280                     <term>"<emphasis remap='B'>!</emphasis>"</term>
1281                     <listitem>
1282                         <para>logical not; the result is 1 if argument is zero, 0 if not.</para>
1283                     </listitem>
1284                 </varlistentry>
1285                 <varlistentry>
1286                     <term>"<emphasis remap='B'>~</emphasis>"</term>
1287                     <listitem>
1288                         <para>arithmetic (bit-wise) not.</para>
1289                     </listitem>
1290                 </varlistentry>
1291                 <varlistentry>
1292                     <term>"<emphasis remap='B'>++</emphasis>"</term>
1293                     <listitem>
1294                         <para>increment; must be applied to a parameter (not a literal or other
1295                             expression) - the parameter is incremented by 1.
1296                             When used as a prefix operator, the result is the incremented value of
1297                             the parameter, when used as a postfix operator, the result is the
1298                             original value of the parameter.</para>
1299                     </listitem>
1300                 </varlistentry>
1301                 <varlistentry>
1302                     <term>"<emphasis remap='B'>++</emphasis>"</term>
1303                     <listitem>
1304                         <para>similar to <emphasis remap='B'>++</emphasis>,
1305                                 except the parameter is decremented by 1.</para>
1306                     </listitem>
1307                 </varlistentry>
1308                 <varlistentry>
1309                     <term>"<emphasis remap='B'>,</emphasis>"</term>
1310                     <listitem>
1311                         <para>separates two arithmetic expressions; the left hand side is evaluated first,
1312                             then the right.  The result is value of the expression on the right hand side.</para>
1313                     </listitem>
1314                 </varlistentry>
1315                 <varlistentry>
1316                     <term>"<emphasis remap='B'>=</emphasis>"</term>
1317                     <listitem>
1318                         <para>assignment; variable on the left is set to the value on the right.</para>
1319                     </listitem>
1320                 </varlistentry>
1321                 <varlistentry>
1322                     <term>"<emphasis remap='B'>*= /= %= += -= &lt;&lt;= &gt;&gt;= &amp;= ^= |=</emphasis>"</term>
1323                     <listitem>
1324                         <para>assignment operators; <emphasis remap='I'>&lt;var&gt; &lt;op&gt;</emphasis><emphasis remap='B'>=</emphasis> <emphasis remap='I'>&lt;expr&gt;</emphasis> is the same as
1325                             <emphasis remap='I'>&lt;var&gt;</emphasis> <emphasis remap='B'>=</emphasis> <emphasis remap='I'>&lt;var&gt; &lt;op&gt;</emphasis> <emphasis remap='B'>(</emphasis> <emphasis remap='I'>&lt;expr&gt;</emphasis> <emphasis remap='B'>)</emphasis>.</para>
1326                     </listitem>
1327                 </varlistentry>
1328                 <varlistentry>
1329                     <term>"<emphasis remap='B'>||</emphasis>"</term>
1330                     <listitem>
1331                         <para>logical or; the result is 1 if either argument is non-zero, 0 if not.
1332                             The right argument is evaluated only if the left argument is zero.</para>
1333                     </listitem>
1334                 </varlistentry>
1335                 <varlistentry>
1336                     <term>"<emphasis remap='B'>&amp;&amp;</emphasis>"</term>
1337                     <listitem>
1338                         <para>logical and; the result is 1 if both arguments are non-zero, 0 if not.
1339                             The right argument is evaluated only if the left argument is non-zero.</para>
1340                     </listitem>
1341                 </varlistentry>
1342                 <varlistentry>
1343                     <term>"<emphasis remap='B'>|</emphasis>"</term>
1344                     <listitem>
1345                         <para>arithmetic (bit-wise) or.</para>
1346                     </listitem>
1347                 </varlistentry>
1348                 <varlistentry>
1349                     <term>"<emphasis remap='B'>^</emphasis>"</term>
1350                     <listitem>
1351                         <para>arithmetic (bit-wise) exclusive-or.</para>
1352                     </listitem>
1353                 </varlistentry>
1354                 <varlistentry>
1355                     <term>"<emphasis remap='B'>&amp;</emphasis>"</term>
1356                     <listitem>
1357                         <para>arithmetic (bit-wise) and.</para>
1358                     </listitem>
1359                 </varlistentry>
1360                 <varlistentry>
1361                     <term>"<emphasis remap='B'>==</emphasis>"</term>
1362                     <listitem>
1363                         <para>equal; the result is 1 if both arguments are equal, 0 if not.</para>
1364                     </listitem>
1365                 </varlistentry>
1366                 <varlistentry>
1367                     <term>"<emphasis remap='B'>!=</emphasis>"</term>
1368                     <listitem>
1369                         <para>not equal; the result is 0 if both arguments are equal, 1 if not.</para>
1370                     </listitem>
1371                 </varlistentry>
1372                 <varlistentry>
1373                     <term>"<emphasis remap='B'>&lt;</emphasis>"</term>
1374                     <listitem>
1375                         <para>less than; the result is 1 if the left argument is less than the right,
1376                             0 if not.</para>
1377                     </listitem>
1378                 </varlistentry>
1379                 <varlistentry>
1380                     <term>"<emphasis remap='B'>&lt;= &gt;= &gt;</emphasis>"</term>
1381                     <listitem>
1382                         <para>less than or equal, greater than or equal, greater than.  See &lt;.</para>
1383                     </listitem>
1384                 </varlistentry>
1385                 <varlistentry>
1386                     <term>"<emphasis remap='B'>&lt;&lt; &gt;&gt;</emphasis>"</term>
1387                     <listitem>
1388                         <para>shift left (right); the result is the left argument with its bits shifted
1389                             left (right) by the amount given in the right argument.</para>
1390                     </listitem>
1391                 </varlistentry>
1392                 <varlistentry>
1393                     <term>"<emphasis remap='B'>+ - * /</emphasis>"</term>
1394                     <listitem>
1395                         <para>addition, subtraction, multiplication, and division.</para>
1396                     </listitem>
1397                 </varlistentry>
1398                 <varlistentry>
1399                     <term>"<emphasis remap='B'>%</emphasis>"</term>
1400                     <listitem>
1401                         <para>remainder; the result is the remainder of the division of the left argument
1402                             by the right.  The sign of the result is unspecified if either argument
1403                             is negative.</para>
1404                     </listitem>
1405                 </varlistentry>
1406                 <varlistentry>
1407                     <term>"<emphasis remap='I'>&lt;arg1&gt;</emphasis> <emphasis remap='B'>?</emphasis> <emphasis remap='I'>&lt;arg2&gt;</emphasis> <emphasis remap='B'>:</emphasis> <emphasis remap='I'>&lt;arg3&gt;</emphasis>"</term>
1408                     <listitem>
1409                         <para>if <emphasis remap='I'>&lt;arg1&gt;</emphasis> is non-zero, the result is <emphasis remap='I'>&lt;arg2&gt;</emphasis>,
1410                             otherwise <emphasis remap='I'>&lt;arg3&gt;</emphasis>.</para>
1411                         <!-- .RE -->
1412                         <!-- }}} -->
1413                         <!-- {{{  Co\-Processes -->
1414                         <!-- }}} -->
1415                         <!-- {{{  Functions -->
1416                     </listitem>
1417                 </varlistentry>
1418             </variablelist> <!-- .IP (gather_variableliist) -->
1419         </refsect2>
1421         <refsect2 id='functions'><title>Functions</title>
1422             <para>
1423                 Functions are defined using the Bourne/POSIX shell
1424                 <emphasis remap='I'>name</emphasis><emphasis
1425                         remap='B'>()</emphasis> syntax.
1426                 Functions are like <literal>.</literal>-scripts in that they are executed in
1427                 the current environment, however, unlike <literal>.</literal>-scripts, shell arguments
1428                 (<emphasis remap='I'>i.e.</emphasis>, positional parameters, <emphasis remap='B'>$1</emphasis>, <emphasis remap='I'>etc.</emphasis>) are never visible
1429                 inside them.
1430                 When the shell is determining the location of a command, functions are
1431                 searched after special built-in commands, and before regular and non-regular
1432                 built-ins, and before the <envar>PATH</envar> is searched.
1433             </para>
1435             <para>
1436                 An existing function may be deleted using <userinput>unset -f</userinput> <emphasis remap='I'>function-name</emphasis>.
1437             </para>
1439             <para>
1440                 Since functions are executed in the current shell environment, parameter
1441                 assignments made inside functions are visible after the function completes.
1442             </para>
1444             <para>
1445                 The exit status of a function is that of the last command
1446                 executed in the function.  A function can be made to finish
1447                 immediately using the <emphasis remap='B'>return</emphasis>
1448                 command; this may also be used to explicitly specify the
1449                 exit status.
1450             </para>
1452         </refsect2>
1453         <refsect2 id='command_execution'>
1454             <title>Command Execution</title>
1455             <para>
1456                 After evaluation of command line arguments, redirections and
1457                 parameter assignments, the type of command is determined: a
1458                 special built-in, a function, a regular built-in or the name
1459                 of a file to execute found using the <envar>PATH</envar>
1460                 parameter.  The checks are made in the above order.
1461                 Special built-in commands differ from other commands in that 
1462                 the <envar>PATH</envar> parameter is not used to find them,
1463                 an error during their execution can cause a non-interactive
1464                 shell to exit and parameter assignments that are specified
1465                 before the command are kept after the command completes.
1466                 Just to confuse things, if the posix option is turned off
1467                 (see <command>set</command> command below) some
1468                 special commands are very special in that no field splitting,
1469                 file globbing, brace expansion nor tilde expansion is performed
1470                 on arguments that look like assignments.  Regular built-in
1471                 commands are different only in that the <envar>PATH</envar>
1472                 parameter is not used to find them.
1473             </para>
1475         </refsect2>
1476         <refsect2 id='job_control'><title>Job Control</title>
1477             <para>Job control refers to the shell's ability to monitor and control <emphasis remap='B'>jobs</emphasis>,
1478                 which are processes or groups of processes created for commands or pipelines.
1479                 At a minimum, the shell keeps track of the status of the background
1480                 (<emphasis remap='I'>i.e.</emphasis>, asynchronous) jobs that currently exist; this information can be
1481                 displayed using the <command>jobs</command> command.
1482                 If job control is fully enabled (using <userinput>set -m</userinput> or
1483                 <userinput>set -o monitor</userinput>), as it is for interactive shells,
1484                 the processes of a job are placed in their own process group,
1485                 foreground jobs can be stopped by typing the suspend character from the
1486                 terminal (normally ^Z),
1487                 jobs can be restarted in either the foreground
1488                 or background, using the <command>fg</command>
1489                 and <command>bg</command> commands, respectively,
1490                 and the state of the terminal is saved or restored when a foreground
1491                 job is stopped or restarted, respectively.
1492             </para>
1494             <para>Note that only commands that create processes (<emphasis remap='I'>e.g.</emphasis>,
1495                 asynchronous commands, subshell commands, and non-built-in,
1496                 non-function commands) can be stopped; commands like <emphasis remap='B'>read</emphasis> cannot be.
1497             </para>
1499             <para>When a job is created, it is assigned a job-number.
1500                 For interactive shells, this number is printed inside <emphasis remap='B'>[</emphasis>..<emphasis remap='B'>]</emphasis>,
1501                 followed by the process-ids of the processes in the job when an asynchronous
1502                 command is run.
1503                 A job may be referred to in <emphasis remap='B'>bg</emphasis>, <emphasis remap='B'>fg</emphasis>, <emphasis remap='B'>jobs</emphasis>, <emphasis remap='B'>kill</emphasis> and
1504                 <emphasis remap='B'>wait</emphasis> commands either by the process id of the last process in the
1505                 command pipeline (as stored in the <emphasis remap='B'>$!</emphasis> parameter) or by prefixing the
1506                 job-number with a percent sign (<emphasis remap='B'>%</emphasis>).
1507                 Other percent sequences can also be used to refer to jobs:
1508             </para>
1512             <informaltable pgwide='0' frame='none'>
1513                 <tgroup cols='4' align='center'>
1514                     <colspec colname='c1'/>
1515                     <colspec colname='c2'/>
1516                     <colspec colname='c3'/>
1517                     <colspec colname='c4'/>
1518                     <thead>
1519                         <row>
1520                             <entry>%+</entry>
1521                             <entry align='right'>%+</entry>
1522                             <entry namest='c3' nameend='c4'>The most recently stopped job, or, if there are no stopped jobs, the oldest
1523                                 running job.</entry>
1524                         </row>
1525                     </thead>
1526                     <tbody>
1527                         <row>
1528                             <entry>%%, <emphasis remap='P->B'>%</emphasis></entry>
1529                             <entry align='left'>%%, <emphasis remap='P->B'>%</emphasis></entry>
1530                             <entry align='left'>Same as <emphasis remap='B'>%+</emphasis>.</entry>
1531                         </row>
1532                         <row>
1533                             <entry>%-</entry>
1534                             <entry align='left'>%-</entry>
1535                             <entry align='left'>The job that would be the <emphasis remap='B'>%+</emphasis> job, if the later did not exist.</entry>
1536                         </row>
1537                         <row>
1538                             <entry>%<emphasis remap='I'>n</emphasis></entry>
1539                             <entry align='left'>%<emphasis remap='I'>n</emphasis></entry>
1540                             <entry align='left'>The job with job-number <emphasis remap='I'>n</emphasis>.</entry>
1541                         </row>
1542                         <row>
1543                             <entry>%?<emphasis remap='I'>string</emphasis></entry>
1544                             <entry align='left'>%?<emphasis remap='I'>string</emphasis></entry>
1545                             <entry align='left'>The job containing the string <emphasis remap='I'>string</emphasis> (an error occurs if multiple jobs
1546                                 are matched).</entry>
1547                         </row>
1548                         <row>
1549                             <entry>%<emphasis remap='I'>string</emphasis></entry>
1550                             <entry align='left'>%<emphasis remap='I'>string</emphasis></entry>
1551                             <entry align='left'>The job starting with string <emphasis remap='I'>string</emphasis> (an error occurs if multiple jobs
1552                                 are matched).</entry>
1553                         </row>
1554                     </tbody>
1555                 </tgroup>
1556             </informaltable>
1558             <para>
1559                 When a job changes state (<emphasis remap='I'>e.g.</emphasis>,
1560                 a background job finishes or foreground
1561                 job is stopped), the shell prints the following status information:
1562                 <emphasis remap='B'>[</emphasis><emphasis remap='I'>number</emphasis><emphasis remap='B'>]</emphasis>
1563                 <emphasis remap='I'>flag status command</emphasis>
1564                 where
1565             </para>
1566             <variablelist remap='.IP'>
1567                 <varlistentry>
1568                     <term>"&nbsp;<emphasis remap='I'>number</emphasis>"</term>
1569                     <listitem>
1570                         <para>
1571                             is the job-number of the job.
1572                         </para>
1573                     </listitem>
1574                 </varlistentry>
1575                 <varlistentry>
1576                     <term>"&nbsp;<emphasis remap='I'>flag</emphasis>"</term>
1577                     <listitem>
1578                         <para>
1579                             is <emphasis remap='B'>+</emphasis> or <emphasis remap='B'>-</emphasis> if the job is the <emphasis remap='B'>%+</emphasis> or <emphasis remap='B'>%-</emphasis> job,
1580                             respectively, or space if it is neither.
1581                         </para>
1582                     </listitem>
1583                 </varlistentry>
1584                 <varlistentry>
1585                     <term>"&nbsp;<emphasis remap='I'>status</emphasis>"</term>
1586                     <listitem>
1587                         <para>
1588                             indicates the current state of the job and can be
1589                         </para>
1590                     </listitem>
1591                 </varlistentry>
1592             </variablelist> <!-- .IP (gather_variableliist) -->
1593             <!-- .RS -->
1594             <variablelist remap='.IP'>
1595                 <varlistentry>
1596                     <term>"<emphasis remap='B'>Running</emphasis>"</term>
1597                     <listitem>
1598                         <para>
1599                             the job has neither stopped or exited (note that running does not
1600                             necessarily mean consuming CPU time &mdash; the process could be blocked waiting
1601                             for some event).
1602                         </para>
1603                     </listitem>
1604                 </varlistentry>
1605                 <varlistentry>
1606                     <term>"<emphasis remap='B'>Done</emphasis> [<emphasis remap='B'>(</emphasis><emphasis remap='I'>number</emphasis><emphasis remap='B'>)</emphasis>]"</term>
1607                     <listitem>
1608                         <para>
1609                             the job exited. <emphasis remap='I'>number</emphasis> is the exit status of the job, which is
1610                             omitted if the status is zero.
1611                         </para>
1612                     </listitem>
1613                 </varlistentry>
1614                 <varlistentry>
1615                     <term>"<emphasis remap='B'>Stopped</emphasis> [<emphasis remap='B'>(</emphasis><emphasis remap='I'>signal</emphasis><emphasis remap='B'>)</emphasis>]"</term>
1616                     <listitem>
1617                         <para>
1618                             the job was stopped by the indicated <emphasis remap='I'>signal</emphasis> (if no signal is given,
1619                             the job was stopped by SIGTSTP).
1620                         </para>
1621                     </listitem>
1622                 </varlistentry>
1623                 <varlistentry>
1624                     <term>"<emphasis remap='I'>signal-description</emphasis> [<emphasis remap='B'>(core dumped)</emphasis>]"</term>
1625                     <listitem>
1626                         <para>
1627                             the job was killed by a signal (<emphasis remap='I'>e.g.</emphasis>, Memory&nbsp;fault,
1628                             Hangup, <emphasis remap='I'>etc.</emphasis> &mdash; use
1629                             <userinput>kill -l</userinput> for a list of signal descriptions).
1630                             The <emphasis remap='B'>(core&nbsp;dumped)</emphasis> message indicates the process created a core file.
1631                         </para>
1632                     </listitem>
1633                 </varlistentry>
1634                 <varlistentry>
1635                     <term>"&nbsp;<emphasis remap='I'>command</emphasis>"</term>
1636                     <listitem>
1637                         <para>
1638                             is the command that created the process.
1639                             If there are multiple processes in the job, then each process will
1640                             have a line showing its <emphasis remap='I'>command</emphasis> and possibly its <emphasis remap='I'>status</emphasis>,
1641                             if it is different from the status of the previous process.
1642                         </para>
1643                     </listitem>
1644                 </varlistentry>
1645             </variablelist> <!-- .IP (gather_variableliist) -->
1647             <para>
1648                 When an attempt is made to exit the shell while there are jobs in
1649                 the stopped state, the shell warns the user that there are stopped jobs
1650                 and does not exit.
1651                 If another attempt is immediately made to exit the shell, the stopped
1652                 jobs are sent a <emphasis remap='B'>HUP</emphasis> signal and the shell exits.
1653                 Similarly, if the <option>nohup</option> option is not set and there are running
1654                 jobs when an attempt is made to exit a login shell, the shell warns the
1655                 user and does not exit.
1656                 If another attempt is immediately made to exit the shell, the running
1657                 jobs are sent a <emphasis remap='B'>HUP</emphasis> signal and the shell exits.
1658             </para>
1659         </refsect2>
1660     </refsect1>
1662     <refsect1 id='builtins'><title>BUILTIN UTILITIES</title>
1663             <para>
1664                     posh implements the following builtin utilities:
1665             </para>
1667             <itemizedlist mark='opencircle'>
1668                     <listitem>
1669                             <para>.
1670                             </para>
1671                     </listitem>
1672                     <listitem>
1673                             <para>:
1674                             </para>
1675                     </listitem>
1676                     <listitem>
1677                             <para>[
1678                             </para>
1679                     </listitem>
1680                     <listitem>
1681                             <para>break
1682                             </para>
1683                     </listitem>
1684                     <listitem>
1685                             <para>builtin
1686                             </para>
1687                     </listitem>
1688                     <listitem>
1689                             <para>continue
1690                             </para>
1691                     </listitem>
1692                     <listitem>
1693                             <para>eval
1694                             </para>
1695                     </listitem>
1696                     <listitem>
1697                             <para>exec
1698                             </para>
1699                     </listitem>
1700                     <listitem>
1701                             <para>exit
1702                             </para>
1703                     </listitem>
1704                     <listitem>
1705                             <para>false
1706                             </para>
1707                     </listitem>
1708                     <listitem>
1709                             <para>return
1710                             </para>
1711                     </listitem>
1712                     <listitem>
1713                             <para>set
1714                             </para>
1715                     </listitem>
1716                     <listitem>
1717                             <para>shift
1718                             </para>
1719                     </listitem>
1720                     <listitem>
1721                             <para>times
1722                             </para>
1723                     </listitem>
1724                     <listitem>
1725                             <para>trap
1726                             </para>
1727                     </listitem>
1728                     <listitem>
1729                             <para>wait
1730                             </para>
1731                     </listitem>
1732                     <listitem>
1733                             <para>read
1734                             </para>
1735                     </listitem>
1736                     <listitem>
1737                             <para>test
1738                             </para>
1739                     </listitem>
1740                     <listitem>
1741                             <para>true
1742                             </para>
1743                     </listitem>
1744                     <listitem>
1745                             <para>umask
1746                             </para>
1747                     </listitem>
1748                     <listitem>
1749                             <para>unset
1750                             </para>
1751                     </listitem>
1752                     <listitem>
1753                             <para>cd
1754                             </para>
1755                     </listitem>
1756                     <listitem>
1757                             <para>command
1758                             </para>
1759                     </listitem>
1760                     <listitem>
1761                             <para>echo
1762                             </para>
1763                     </listitem>
1764                     <listitem>
1765                             <para>export
1766                             </para>
1767                     </listitem>
1768                     <listitem>
1769                             <para>getopts
1770                             </para>
1771                     </listitem>
1772                     <listitem>
1773                             <para>kill
1774                             </para>
1775                     </listitem>
1776                     <listitem>
1777                             <para>local
1778                             </para>
1779                     </listitem>
1780                     <listitem>
1781                             <para>pwd
1782                             </para>
1783                     </listitem>
1784                     <listitem>
1785                             <para>readonly
1786                             </para>
1787                     </listitem>
1788             </itemizedlist>
1790     </refsect1>
1792     <refsect1 id='files'><title>FILES</title>
1793         <para>
1794           <filename>
1795             ~/.profile
1796     </filename>
1797           <filename>
1798             /etc/profile
1799     </filename>
1800           <filename>
1801             /etc/suid_profile
1802     </filename>
1803         </para>
1804     </refsect1>
1806     <refsect1 id='bugs'><title>BUGS</title>
1807         <para>
1808             Any bugs in posh should be reported via the Debian BTS.
1809             Legitimate bugs are inconsistencies between manpage and behavior,
1810             and inconsistencies between behavior and Debian policy
1811             (currently SUSv3 compliance with the following exceptions: echo
1812             -n, binary -a and -o to test, local scoping).
1813         </para>
1814     </refsect1>
1816     <refsect1 id='version'><title>VERSION</title>
1817         <para>
1818             This page documents the Policy-compliant Ordinary SHell.
1819         </para>
1820     </refsect1>
1822     <refsect1 id='authors'><title>AUTHORS</title>
1823         <para>
1824             This shell is based on pdksh.
1825         </para>
1826     </refsect1>
1828     <refsect1 id='see_also'><title>SEE ALSO</title>
1829         <para>
1830             <citerefentry><refentrytitle>awk</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1831             <citerefentry><refentrytitle>ksh</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1832             <citerefentry><refentrytitle>dash</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1833             <citerefentry><refentrytitle>ed</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1834             <citerefentry><refentrytitle>getconf</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1835             <citerefentry><refentrytitle>getopt</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1836             <citerefentry><refentrytitle>sed</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1837             <citerefentry><refentrytitle>stty</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1838             <citerefentry><refentrytitle>vi</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
1839             <citerefentry><refentrytitle>dup</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1840             <citerefentry><refentrytitle>execve</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1841             <citerefentry><refentrytitle>getgid</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1842             <citerefentry><refentrytitle>getuid</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1843             <citerefentry><refentrytitle>open</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1844             <citerefentry><refentrytitle>pipe</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1845             <citerefentry><refentrytitle>wait</refentrytitle><manvolnum>2</manvolnum></citerefentry>,
1846             <citerefentry><refentrytitle>getopt</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
1847             <citerefentry><refentrytitle>rand</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
1848             <citerefentry><refentrytitle>signal</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
1849             <citerefentry><refentrytitle>system</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
1850             <citerefentry><refentrytitle>environ</refentrytitle><manvolnum>5</manvolnum></citerefentry>
1851         </para>
1852     </refsect1>
1853 </refentry>