freebsd-nq/contrib/awk/test/clsflnam.awk
1997-10-14 18:17:11 +00:00

13 lines
246 B
Awk

#! /usr/bin/awk -f
BEGIN {
getline
# print ("FILENAME =", FILENAME) > "/dev/stderr"
#Rewind the file
if (close(FILENAME)) {
print "Error " ERRNO " closing input file" > "/dev/stderr";
exit;
}
}
{ print "Analysing ", $0 }