The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 02-07-2007
sbasetty sbasetty is offline
Registered User
  
 

Join Date: Sep 2006
Posts: 75
Summing on column

Hi Friends

How to do sum on a column?
I have a file like:

FRED 500.01 TX
SMITH 50.10 NY
HARRY 5.00 CA

555.11

Sum on second column.

I am trying using nawk like

nawk 'BEGIN {FS="|"}; {printf $1"+"}'

Thanks a lot for your help

S