diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-01-10 21:34:37 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-01-10 21:34:37 +0200 |
commit | 108a61e2819b37ffd95e81b81b29e5946d4baa03 (patch) | |
tree | e20241383c734428d6fd1676343433e453d9ebff /doc/gawk.texi | |
parent | 0cc0973babcc4c35557aade37be5926a3f6023c9 (diff) | |
download | egawk-108a61e2819b37ffd95e81b81b29e5946d4baa03.tar.gz egawk-108a61e2819b37ffd95e81b81b29e5946d4baa03.tar.bz2 egawk-108a61e2819b37ffd95e81b81b29e5946d4baa03.zip |
Minor doc fix.
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 |