10 lines
97 B
Awk
10 lines
97 B
Awk
#! /bin/awk -f
|
|
|
|
{ line[NR] = $0 }
|
|
|
|
END {
|
|
for (i=NR;i>0;i--){
|
|
print line[i]
|
|
}
|
|
}
|