commit bash-20090930 snapshot

This commit is contained in:
Chet Ramey
2011-12-08 20:16:46 -05:00
parent 82a5df635a
commit 176b12eef0
36 changed files with 512 additions and 180 deletions
+5
View File
@@ -6562,6 +6562,11 @@ escape characters are converted.
The @code{ulimit} builtin uses a block size of 512 bytes for the @option{-c}
and @option{-f} options.
@item
The arrival of @code{SIGCHLD} when a trap is set on @code{SIGCHLD} does
not interrupt the @code{wait} builtin and cause it to return immediately.
The trap command is run once for each child that exits.
@end enumerate
There is other @sc{posix} behavior that Bash does not implement by
+7
View File
@@ -976,6 +976,9 @@ substitution, and quote removal are performed.
Conditional operators such as @samp{-f} must be unquoted to be recognized
as primaries.
When used with @samp{[[}, The @samp{<} and @samp{>} operators sort
lexicographically using the current locale.
When the @samp{==} and @samp{!=} operators are used, the string to the
right of the operator is considered a pattern and matched according
to the rules described below in @ref{Pattern Matching}.
@@ -6559,6 +6562,10 @@ escape characters are converted.
The @code{ulimit} builtin uses a block size of 512 bytes for the @option{-c}
and @option{-f} options.
@item
The arrival of @code{SIGCHLD} when a trap is set on @code{SIGCHLD} does
not interrupt the @code{wait} builtin and cause it to return immediately.
@end enumerate
There is other @sc{posix} behavior that Bash does not implement by