mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-13 23:20:49 +02:00
commit bash-20160401 snapshot
This commit is contained in:
+6
-2
@@ -6754,8 +6754,8 @@ may be positive or negative integers.
|
||||
@cindex arithmetic evaluation
|
||||
|
||||
The shell allows arithmetic expressions to be evaluated, as one of
|
||||
the shell expansions or by the @code{let} and the @option{-i} option
|
||||
to the @code{declare} builtins.
|
||||
the shell expansions or by using the @code{((} compound command, the
|
||||
@code{let} builtin, or the @option{-i} option to the @code{declare} builtin.
|
||||
|
||||
Evaluation is done in fixed-width integers with no check for overflow,
|
||||
though division by 0 is trapped and flagged as an error.
|
||||
@@ -7568,6 +7568,10 @@ has been set.
|
||||
If Bash receives a trapped signal while executing @code{read}, the trap
|
||||
handler executes and @code{read} returns an exit status greater than 128.
|
||||
|
||||
@item
|
||||
Bash removes an exited background process's status from the list of such
|
||||
statuses after the @code{wait} builtin is used to obtain it.
|
||||
|
||||
@end enumerate
|
||||
|
||||
There is other @sc{posix} behavior that Bash does not implement by
|
||||
|
||||
Reference in New Issue
Block a user