i have contents in a file
like
asdfb ... 1
adfsdf ... 2
sdfdf .. 3
I want to write a unix command that should be able to add 1 + 2 + 3 and give the result as 6
From what I am aware grep and awk would be handy, any pointers would help.
|
|
|
|
|
|
|
I believe the following is what you're looking for. It will sum up the last field in each record for the data that is read from stdin.
Some things to note:
|
|||
|
|
|
|
An Let's say your actual file consists of:
and you want to sum the third column. You can use:
The BEGIN clause is run before processing any lines, the END clause after processing all lines. The other clause happens for every line but you can add more clauses to change the behavior based on all sorts of things ( |
||||||||||
|
|
|
This might not exactly be what you're looking for, but I wrote a quick Ruby script to accomplish your goal:
|
||
|
|
|
|
Here's one in Perl.
Golfed version:
|
||
|
|