commit bash-20141010 snapshot

This commit is contained in:
Chet Ramey
2014-10-21 12:06:34 -04:00
parent 13322d471a
commit d36d2bcf27
26 changed files with 19394 additions and 871 deletions
+1745
View File
File diff suppressed because it is too large Load Diff
Binary file not shown.
+7 -6
View File
@@ -5,12 +5,12 @@
.\" Case Western Reserve University
.\" chet.ramey@case.edu
.\"
.\" Last Change: Wed Aug 27 08:43:44 EDT 2014
.\" Last Change: Tue Oct 7 11:42:56 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 August 27" "GNU Bash 4.3"
.TH BASH 1 "2014 October 7" "GNU Bash 4.3"
.\"
.\" There's some problem with having a `@'
.\" in a tagged paragraph with the BSD man macros.
@@ -3754,13 +3754,13 @@ current source until a line containing only
(with no trailing blanks)
is seen. All of
the lines read up to that point are then used as the standard
input for a command.
input (or file descriptor \fIn\fP if \fIn\fP is specified) for a command.
.PP
The format of here-documents is:
.RS
.PP
.nf
\fB<<\fP[\fB\-\fP]\fIword\fP
[\fIn\fP]\fB<<\fP[\fB\-\fP]\fIword\fP
\fIhere-document\fP
\fIdelimiter\fP
.fi
@@ -3802,7 +3802,7 @@ A variant of here documents, the format is:
.RS
.PP
.nf
\fB<<<\fP\fIword\fP
[\fIn\fP]\fB<<<\fP\fIword\fP
.fi
.RE
.PP
@@ -3811,8 +3811,9 @@ brace expansion, tilde expansion, parameter and variable expansion,
command substitution, arithmetic expansion, and quote removal.
Pathname expansion and word splitting are not performed.
The result is supplied as a single string to the command on its
standard input.
standard input (or file descriptor \fIn\fP if \fIn\fP is specified).
.SS "Duplicating File Descriptors"
.PP
The redirection operator
.RS
+4 -4
View File
@@ -2656,11 +2656,11 @@ This type of redirection instructs the shell to read input from the
current source until a line containing only @var{word}
(with no trailing blanks) is seen. All of
the lines read up to that point are then used as the standard
input for a command.
input (or file descriptor @var{n} if @var{n} is specified) for a command.
The format of here-documents is:
@example
<<[@minus{}]@var{word}
[@var{n}]<<[@minus{}]@var{word}
@var{here-document}
@var{delimiter}
@end example
@@ -2686,7 +2686,7 @@ natural fashion.
@subsection Here Strings
A variant of here documents, the format is:
@example
<<< @var{word}
[@var{n}]<<< @var{word}
@end example
The @var{word} undergoes
@@ -2694,7 +2694,7 @@ brace expansion, tilde expansion, parameter and variable expansion,
command substitution, arithmetic expansion, and quote removal.
Pathname expansion and word splitting are not performed.
The result is supplied as a single string to the command on its
standard input.
standard input (or file descriptor @var{n} if @var{n} is specified).
@subsection Duplicating File Descriptors
The redirection operator
+3 -3
View File
@@ -2,10 +2,10 @@
Copyright (C) 1988-2014 Free Software Foundation, Inc.
@end ignore
@set LASTCHANGE Wed Aug 27 08:43:08 EDT 2014
@set LASTCHANGE Tue Oct 7 11:45:14 EDT 2014
@set EDITION 4.3
@set VERSION 4.3
@set UPDATED 6 September 2014
@set UPDATED-MONTH September 2014
@set UPDATED 7 October 2014
@set UPDATED-MONTH October 2014