*** empty log message ***

This commit is contained in:
2006-07-28 10:38:16 +00:00
parent e106111984
commit 7053e8b0f4
6 changed files with 25 additions and 5 deletions

20
ase/test/awk/t18.awk Normal file
View File

@@ -0,0 +1,20 @@
/hello/
{
//print FILENAME;
print "**1**" $0;
//nextfile;
print "----------------";
}
/hello/
{
//print FILENAME;
print "**2**" $0;
nextfile;
print "----------------";
}
END
{
print "== END OF PROGRAM ==";
}