[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/better-index, updated. gawk-4.1.
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/better-index, updated. gawk-4.1.0-3857-gde1841d |
Date: |
Sun, 11 Aug 2019 08:12:55 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, feature/better-index has been updated
via de1841d26dc01ee7b98ebbb9fd1057bb622bea53 (commit)
via 631c60699f26dc12f614998b646ab3f213e2a847 (commit)
from 23e365f89aa18d574fc1d59cfc49e2d614d07ad9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=de1841d26dc01ee7b98ebbb9fd1057bb622bea53
commit de1841d26dc01ee7b98ebbb9fd1057bb622bea53
Merge: 23e365f 631c606
Author: Arnold D. Robbins <address@hidden>
Date: Sun Aug 11 15:12:44 2019 +0300
Merge branch 'master' into feature/better-index
diff --cc doc/gawk.texi
index faba004,f27d301..2c38422
--- a/doc/gawk.texi
+++ b/doc/gawk.texi
@@@ -4418,10 -4407,19 +4418,19 @@@ file at all. (See @ref{Assignment Opti
awk -f program.awk file1 count=1 file2
@end example
+ @noindent
+ As a side point, should you really need to have @command{awk}
+ process a file named @file{count=1} (or any file whose name looks like
+ a variable assignment), precede the file name with @samp{./}, like so:
+
+ @example
+ awk -f program.awk file1 ./count=1 file2
+ @end example
+
-@cindex @command{gawk}, @code{ARGIND} variable in
-@cindex @code{ARGIND} variable, command-line arguments
+@cindex @command{gawk} @subentry @code{ARGIND} variable in
+@cindex @code{ARGIND} variable @subentry command-line arguments
@cindex @code{ARGV} array, indexing into
-@cindex @code{ARGC}/@code{ARGV} variables, command-line arguments
+@cindex @code{ARGC}/@code{ARGV} variables @subentry command-line arguments
All the command-line arguments are made available to your @command{awk}
program in the
@code{ARGV} array (@pxref{Built-in Variables}). Command-line options
and the program text (if present) are omitted from @code{ARGV}.
diff --cc doc/gawktexi.in
index ae08b65,03f58c3..6f8e30c
--- a/doc/gawktexi.in
+++ b/doc/gawktexi.in
@@@ -4328,10 -4317,19 +4328,19 @@@ file at all. (See @ref{Assignment Opti
awk -f program.awk file1 count=1 file2
@end example
+ @noindent
+ As a side point, should you really need to have @command{awk}
+ process a file named @file{count=1} (or any file whose name looks like
+ a variable assignment), precede the file name with @samp{./}, like so:
+
+ @example
+ awk -f program.awk file1 ./count=1 file2
+ @end example
+
-@cindex @command{gawk}, @code{ARGIND} variable in
-@cindex @code{ARGIND} variable, command-line arguments
+@cindex @command{gawk} @subentry @code{ARGIND} variable in
+@cindex @code{ARGIND} variable @subentry command-line arguments
@cindex @code{ARGV} array, indexing into
-@cindex @code{ARGC}/@code{ARGV} variables, command-line arguments
+@cindex @code{ARGC}/@code{ARGV} variables @subentry command-line arguments
All the command-line arguments are made available to your @command{awk}
program in the
@code{ARGV} array (@pxref{Built-in Variables}). Command-line options
and the program text (if present) are omitted from @code{ARGV}.
-----------------------------------------------------------------------
Summary of changes:
doc/ChangeLog | 7 +
doc/gawk.info | 1120 ++++++++++++++++++++++++++++---------------------------
doc/gawk.texi | 9 +
doc/gawktexi.in | 9 +
4 files changed, 588 insertions(+), 557 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, feature/better-index, updated. gawk-4.1.0-3857-gde1841d,
Arnold Robbins <=