[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
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 1003.2 standard by changing the behavior to match that specified by POSIX 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'.
SIGTSTP
.
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.
$HISTFILE
).
.
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 1003.2.
trap
builtin displays signal names without the leading
SIG
.
.
and source
builtins do not search the current directory
for the filename argument if it is not found by searching PATH
.
set
builtin is invoked without options, it does not display
shell function names and definitions.
set
builtin is invoked without options, it displays
variable values without quotes, unless they contain shell metacharacters,
even if the result contains nonprinting characters.
There is other POSIX 1003.2 behavior that Bash does not implement. Specifically:
$0
to the full pathname of
the script as found by searching $PATH
, rather than the command as
typed by the user.
$PATH
, bash
checks execute permission bits rather than read permission bits, just as
if it were searching for a command.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |