diff options
Diffstat (limited to 'doc/gawk.texi')
-rw-r--r-- | doc/gawk.texi | 9 |
1 files changed, 5 insertions, 4 deletions
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 |