restructured regression test scripts for awk

This commit is contained in:
2009-06-30 04:17:39 +00:00
parent 14b0bca55c
commit e78de0f959
165 changed files with 203 additions and 1637 deletions

View File

@ -0,0 +1,9 @@
#!/bin/awk
BEGIN {
RS = "\n\n";
FS = "\n";
}
{
print $1, $NF;
}