NetBSD/gnu/dist/gawk/awklib/eg/lib/nextfile.awk

16 lines
388 B
Awk
Raw Normal View History

1999-06-14 00:39:15 +04:00
# nextfile --- skip remaining records in current file
# correctly handle successive occurrences of the same file
# Arnold Robbins, arnold@gnu.ai.mit.edu, 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
}