The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




Thread: reading file
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #7 (permalink)  
Old 12-10-2004
bhargav's Avatar
bhargav bhargav is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2004
Location: USA
Posts: 511
x is the file there from previous o/p.
redirect previous awk to file "x" as follows

awk -F" " '{ print $6 }' file1 > x

and continue with next step ....

awk '
BEGIN { sum=0 ; } { sum+=$1 } END { print sum }' x