*** empty log message ***
This commit is contained in:
12
ase/test/awk/emp-026.awk
Normal file
12
ase/test/awk/emp-026.awk
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
line[NR] = $0;
|
||||
}
|
||||
|
||||
END {
|
||||
i = NR;
|
||||
while (i > 0)
|
||||
{
|
||||
print line[i];
|
||||
i = i - 1;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user