Operating System - HP-UX
1834454 Members
2523 Online
110067 Solutions
New Discussion

How can I add 4 numbers in the file

 
SOLVED
Go to solution
Saraswathy_1
Advisor

How can I add 4 numbers in the file

Hello All,

My file contents are as below

$more /tmp/first
21
33
345
44

How can I add all this numbers ?

2 REPLIES 2
RAC_1
Honored Contributor
Solution

Re: How can I add 4 numbers in the file

awk '{s+=$1} END {print s}' your_file
There is no substitute to HARDWORK
Saraswathy_1
Advisor

Re: How can I add 4 numbers in the file

thanks for instant response.