commit bash-20141031 snapshot

This commit is contained in:
Chet Ramey
2014-11-03 14:32:12 -05:00
parent e0722a04ec
commit f3aad56dce
52 changed files with 55059 additions and 2492 deletions
+11 -3
View File
@@ -5,12 +5,12 @@
.\" Case Western Reserve University
.\" chet.ramey@case.edu
.\"
.\" Last Change: Tue Oct 7 11:42:56 EDT 2014
.\" Last Change: Sat Nov 1 20:00:51 EDT 2014
.\"
.\" bash_builtins, strip all but Built-Ins section
.if \n(zZ=1 .ig zZ
.if \n(zY=1 .ig zY
.TH BASH 1 "2014 October 7" "GNU Bash 4.3"
.TH BASH 1 "2014 November 1" "GNU Bash 4.3"
.\"
.\" There's some problem with having a `@'
.\" in a tagged paragraph with the BSD man macros.
@@ -9924,7 +9924,7 @@ option suppresses shell function lookup, as with the \fBcommand\fP builtin.
returns true if all of the arguments are found, false if
any are not found.
.TP
\fBulimit\fP [\fB\-HSTabcdefilmnpqrstuvx\fP [\fIlimit\fP]]
\fBulimit\fP [\fB\-HSabcdefiklmnpqrstuvxPT\fP [\fIlimit\fP]]
Provides control over the resources available to the shell and to
processes started by it, on systems that allow such control.
The \fB\-H\fP and \fB\-S\fP options specify that the hard or soft limit is
@@ -9973,6 +9973,9 @@ The maximum size of files written by the shell and its children
.B \-i
The maximum number of pending signals
.TP
.B \-k
The maximum number of kqueues that may be allocated
.TP
.B \-l
The maximum size that may be locked into memory
.TP
@@ -10008,6 +10011,9 @@ some systems, to its children
.B \-x
The maximum number of file locks
.TP
.B \-P
The maximum number of pseudoterminals
.TP
.B \-T
The maximum number of threads
.PD
@@ -10026,8 +10032,10 @@ which is in seconds;
.BR \-p ,
which is in units of 512-byte blocks;
and
.BR \-P ,
.BR \-T ,
.BR \-b ,
.BR \-k ,
.BR \-n ,
and
.BR \-u ,
+10356
View File
File diff suppressed because it is too large Load Diff
+15 -3
View File
@@ -4449,7 +4449,7 @@ It is a synonym for the @code{declare} builtin command.
@item ulimit
@btindex ulimit
@example
ulimit [-abcdefilmnpqrstuvxHST] [@var{limit}]
ulimit [-HSabcdefiklmnpqrstuvxPT] [@var{limit}]
@end example
@code{ulimit} provides control over the resources available to processes
@@ -4484,6 +4484,9 @@ The maximum size of files written by the shell and its children.
@item -i
The maximum number of pending signals.
@item -k
The maximum number of kqueues that may be allocated.
@item -l
The maximum size that may be locked into memory.
@@ -4519,6 +4522,9 @@ some systems, to its children.
@item -x
The maximum number of file locks.
@item -P
The maximum number of pseudoterminals.
@item -T
The maximum number of threads.
@end table
@@ -4536,8 +4542,9 @@ When setting new limits, if neither @option{-H} nor @option{-S} is supplied,
both the hard and soft limits are set.
If no option is given, then @option{-f} is assumed. Values are in 1024-byte
increments, except for @option{-t}, which is in seconds; @option{-p},
which is in units of 512-byte blocks; and @option{-T}, @option{-b},
@option{-n} and @option{-u}, which are unscaled values.
which is in units of 512-byte blocks; and @option{-P}, @option{-T},
@option{-b},
@option{-k}, @option{-n} and @option{-u}, which are unscaled values.
The return status is zero unless an invalid option or argument is supplied,
or an error occurs while setting a new limit.
@@ -8128,6 +8135,11 @@ above under @ref{Pattern Matching}.
Set the default value of the @var{extglob} shell option described
above under @ref{The Shopt Builtin} to be enabled.
@item --enable-function-import
Include support for importing function definitions exported by another
instance of the shell from the environment. This option is enabled by
default.
@item --enable-glob-asciirange-default
Set the default value of the @var{globasciiranges} shell option described
above under @ref{The Shopt Builtin} to be enabled.
+8773
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -2,10 +2,10 @@
Copyright (C) 1988-2014 Free Software Foundation, Inc.
@end ignore
@set LASTCHANGE Tue Oct 7 11:45:14 EDT 2014
@set LASTCHANGE Sat Nov 1 20:03:13 EDT 2014
@set EDITION 4.3
@set VERSION 4.3
@set UPDATED 7 October 2014
@set UPDATED-MONTH October 2014
@set UPDATED 1 November 2014
@set UPDATED-MONTH November 2014
+11
View File
@@ -0,0 +1,11 @@
@ignore
Copyright (C) 1988-2014 Free Software Foundation, Inc.
@end ignore
@set LASTCHANGE Tue Oct 7 11:45:14 EDT 2014
@set EDITION 4.3
@set VERSION 4.3
@set UPDATED 7 October 2014
@set UPDATED-MONTH October 2014