The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Advanced & Expert Users
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #7 (permalink)  
Old 06-05-2007
ghostdog74 ghostdog74 is offline
Registered User
 

Join Date: Sep 2006
Posts: 1,423
for small file
Code:
awk '{ arr[NR]=$0 }
     END{ 
        for(i=NR;i>0;i--) {
           print arr[i]
        }
     }
' "file"
Reply With Quote