summaryrefslogtreecommitdiffstats
path: root/contrib/awk/awklib/eg/lib/nextfile.awk
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/awk/awklib/eg/lib/nextfile.awk')
-rw-r--r--contrib/awk/awklib/eg/lib/nextfile.awk15
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/awk/awklib/eg/lib/nextfile.awk b/contrib/awk/awklib/eg/lib/nextfile.awk
new file mode 100644
index 0000000..4bb07bc
--- /dev/null
+++ b/contrib/awk/awklib/eg/lib/nextfile.awk
@@ -0,0 +1,15 @@
+# nextfile --- skip remaining records in current file
+# correctly handle successive occurrences of the same file
+# Arnold Robbins, arnold@gnu.org, Public Domain
+# May, 1993
+
+# this should be read in before the "main" awk program
+
+function nextfile() { _abandon_ = FILENAME; next }
+
+_abandon_ == FILENAME {
+ if (FNR == 1)
+ _abandon_ = ""
+ else
+ next
+}
OpenPOWER on IntegriCloud