// reverse the line order of a file

awk ' { line[NR] = $0 }
      END  { for (i=NR;i>0;i--)
       print line[i] }' $1

