diff options
Diffstat (limited to 'doc')
-rw-r--r-- | doc/gawk.info | 10 | ||||
-rw-r--r-- | doc/gawk.texi | 9 |
2 files changed, 10 insertions, 9 deletions
diff --git a/doc/gawk.info b/doc/gawk.info index 68f6fa04..50f54f64 100644 --- a/doc/gawk.info +++ b/doc/gawk.info @@ -22562,11 +22562,11 @@ Redirection standard input stream, or performing output to something other than the standard output stream. - You can redirect the output of the `print' and `printf' statements - to a file or a system command, using the `>', `>>', `|', and `|&' - operators. You can redirect input to the `getline' statement using - the `<', `|', and `|&' operators. (*Note Redirection::, and *note - Getline::.) + You can redirect input to the `getline' statement using the `<', + `|', and `|&' operators. You can redirect the output of the + `print' and `printf' statements to a file or a system command, + using the `>', `>>', `|', and `|&' operators. (*Note Getline::, + and *note Redirection::.) Regexp Short for "regular expression". A regexp is a pattern that diff --git a/doc/gawk.texi b/doc/gawk.texi index 0b328ec2..a81b14d3 100644 --- a/doc/gawk.texi +++ b/doc/gawk.texi @@ -30181,12 +30181,13 @@ If this isn't clear, refer to the entry for ``recursion.'' Redirection means performing input from something other than the standard input stream, or performing output to something other than the standard output stream. +You can redirect input to the @code{getline} statement using +the @samp{<}, @samp{|}, and @samp{|&} operators. You can redirect the output of the @code{print} and @code{printf} statements to a file or a system command, using the @samp{>}, @samp{>>}, @samp{|}, and @samp{|&} -operators. You can redirect input to the @code{getline} statement using -the @samp{<}, @samp{|}, and @samp{|&} operators. -(@xref{Redirection}, -and @ref{Getline}.) +operators. +(@xref{Getline}, +and @ref{Redirection}.) @item Regexp Short for @dfn{regular expression}. A regexp is a pattern that denotes a |