*** empty log message ***
This commit is contained in:
@ -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 "----------------";
|
||||
}
|
||||
|
Reference in New Issue
Block a user