The Restricted Shell
Bash Features
Starting Bash with the `--posix
' command-line option or executing
`set -o posix
' while Bash is running will cause Bash to conform more
closely to the POSIX.2 standard by changing the behavior to match that
specified by POSIX.2 in areas where the Bash default differs.
The following list is what's changed when `POSIX mode' is in effect:
$PATH
to find the new location. This is also available with
`shopt -s checkhash
'.
>&
' redirection does not redirect stdout and stderr.
PS1
and PS2
expansions of `!
' to
the history number and `!!
' to `!
' are enabled,
and parameter expansion is performed on the values of PS1
and
PS2
regardless of the setting of the promptvars
option.
$ENV
) rather than
the normal Bash files.
~/.sh_history
' (this is the
default value of $HISTFILE
).
kill -l
' prints all the signal names on a single line,
separated by spaces.
.
filename
is not found.
name
s. That is, they may not
contain characters other than letters, digits, and underscores, and
may not start with a digit. Declaring a function with an invalid name
causes a fatal syntax error in non-interactive shells.
cd
builtin finds a directory to change to
using $CDPATH
, the
value it assigns to the PWD
variable does not contain any
symbolic links, as if `cd -P
' had been executed.
$CDPATH
is set, the cd
builtin will not implicitly
append the current directory to it. This means that cd
will
fail if no valid directory name can be constructed from
any of the entries in $CDPATH
, even if the a directory with
the same name as the name given as an argument to cd
exists
in the current directory.
for
statement or the selection variable in a
select
statement is a readonly variable.
export
and readonly
builtin commands display their
output in the format required by POSIX.2.
There is other POSIX.2 behavior that Bash does not implement. Specifically: