*** empty log message ***

This commit is contained in:
2006-10-17 09:36:09 +00:00
parent 3e462dbcf1
commit 8bc6cc1d1c
6 changed files with 69 additions and 34 deletions

View File

@ -1,13 +1,17 @@
BEGIN {
print "0. FILENAME=", FILENAME, "FNR=", FNR;
}
/hello/ {
print FILENAME;
print "**1**" $0;
print "1. FILENAME=", FILENAME, "FNR=", FNR;
print "[" $0 "]";
#nextfile;
print "----------------";
}
/hello/ {
print FILENAME;
print "**2**" $0;
print "2. FILENAME=", FILENAME, "FNR=", FNR;
print "[" $0 "]";
nextfile;
print "----------------";
}