HardenedBSD/contrib/awk/test/clsflnam.awk

13 lines
246 B
Awk
Raw Normal View History

1997-10-14 20:17:11 +02:00
#! /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 }