up vote 56 down vote favorite
25
share [g+] share [fb]

I am looking for a command that will accept as input multiple lines of text, each line containing a single integer, and output the sum of these integers.

As a bit of background, I have a log file which includes timing measurements, so through grepping for the relevant lines, and a bit of sed reformatting I can list all of the timings in that file. I'd like to work out the total however, and my mind has gone blank as to any command I can pipe this intermediate output to in order to do the final sum. I've always used expr in the past, but unless it runs in RPN mode I don't think it's going to cope with this (and even then it would be tricky).

What am I missing? Given that there are probably several ways to achieve this, I'll be happy to read (and upvote) any approach that works, even if someone else has already posted a different solution that does the job.

Related question: Shortest command to calculate the sum of a column of output on Unix? (credits @Andrew)


Update: Wow, as expected there are some nice answers here. Looks like I'll definitely have to give awk deeper inspection as a command-line tool in general!

link|improve this question

1  
I really like this question for the fact that there are a lot of possible correct (or at least working) answers. – Francisco Canedo Jan 16 '09 at 22:06
Added a link to related question. – J.F. Sebastian Jan 17 '09 at 12:38
feedback

21 Answers

up vote 113 down vote accepted

Bit of awk should do it?

awk '{s+=$1} END {print s}' mydatafile
link|improve this answer
2  
very nice and compact, gotta love awk! – Jay Jan 16 '09 at 15:55
3  
+1 for knowing i'm not the only awk fan left in the world. :) – roe Jan 16 '09 at 15:59
There's a lot of awk love in this room! I like how a simple script like this could be modified to add up a second column of data just by changing the $1 to $2 – Paul Dixon Jan 16 '09 at 16:02
feedback

Or:

paste -sd+ infile|bc
link|improve this answer
6  
+1. How come I have been using Linux for over a decade and never heard of paste? – Thomas Jul 2 '10 at 12:03
Very nice! I would have put a space before the "+", just to help me parse it better, but that was very handy for piping some memory numbers through paste & then bc. – khedron Sep 8 '10 at 5:34
feedback

Plain bash:

$ cat numbers.txt 
1
2
3
4
5
6
7
8
9
10
$ sum=0; while read num ; do sum=$(($sum + $num)); done < numbers.txt ; echo $sum
55
link|improve this answer
1  
heh. Looks familiar :-) – Jay Jan 16 '09 at 16:17
SO popped up something like "6 new answers have been posted while you tried to remember the correct syntax of bash while". One of those was yours, but I posted anyway. You earned my +1, though :D – rjack Jan 16 '09 at 16:46
A smaller one liner: stackoverflow.com/questions/450799/… – Khaja Minhajuddin Oct 11 '11 at 1:51
feedback
perl -lne '$x += $_; END { print $x; }' < infile.txt
link|improve this answer
I've removed -l and <. – J.F. Sebastian Jan 16 '09 at 16:03
3  
And I added them back: "-l" ensures that output is LF-terminated as shell `` backticks and most programs expect, and "<" indicates this command can be used in a pipeline. – j_random_hacker Jan 16 '09 at 16:08
You are right. As an excuse: Each character in Perl one-liners requires a mental work for me, therefore I prefer to strip as many characters as possible. The habit was harmful in this case. – J.F. Sebastian Jan 16 '09 at 16:17
No worries J.F. :) – j_random_hacker Jan 16 '09 at 16:41
feedback

The one-liner version in Python:

$ python -c "import sys; print sum(int(l) for l in sys.stdin)"
link|improve this answer
Above one-liner doesn't work for files in sys.argv[], but that one does stackoverflow.com/questions/450799/… – J.F. Sebastian Jan 16 '09 at 16:21
True- the author said he was going to pipe output from another script into the command and I was trying to make it as short as possible :) – dF. Jan 16 '09 at 18:18
Shorter version would be python -c"import sys; print(sum(map(int, sys.stdin)))" – J.F. Sebastian Jan 17 '09 at 12:39
feedback

The following works in bash:

I=0

for N in `cat numbers.txt`
do
    I=`expr $I + $N`
done

echo $I
link|improve this answer
Command expansion should be used with caution when files can be arbitrarily large. With numbers.txt of 10MB, the cat numbers.txt step would be problematic. – rjack Jan 16 '09 at 15:59
Indeed, however (if not for the better solutions found here) I would use this one until I actually encountered that problem. – Francisco Canedo Jan 16 '09 at 22:05
feedback

You can using num-utils, although it may be overkill for what you need. This is a set of programs for manipulating numbers in the shell, and can do several nifty things, including of course, adding them up. It's a bit out of date, but they still work and can be useful if you need to do something more.

http://suso.suso.org/programs/num-utils/

link|improve this answer
feedback

You can do it in python, if you feel comfortable:

Not tested, just typed:

out = open("filename").read();
lines = out.split('\n')
ints = map(int, lines)
s = sum(ints)
print s

Sebastian pointed out a one liner script:

cat filename | python -c"from fileinput import input; print sum(map(int, input()))"
link|improve this answer
python -c"from fileinput import input; print sum(map(int, input()))" numbers.txt – J.F. Sebastian Jan 16 '09 at 15:50
Or cat numbers.txt | python -c"from ... – J.F. Sebastian Jan 16 '09 at 15:51
Include above code in the answer if you like it. – J.F. Sebastian Jan 16 '09 at 15:52
cat is overused, redirect stdin from file: python -c "..." < numbers.txt – rjack Jan 16 '09 at 16:02
1  
@rjack: cat is used to demonstrate that script works both for stdin and for files in argv[] (like while(<>) in Perl). If your input is in a file then '<' is unnecessary. – J.F. Sebastian Jan 16 '09 at 16:06
feedback

I think AWK is what you are looking for:

awk '{sum+=$1}END{print sum}'

You can use this command either by passing the numbers list through the standard input or by passing the file containing the numbers as a parameter.

link|improve this answer
It's a dup: stackoverflow.com/questions/450799/… – J.F. Sebastian Jan 16 '09 at 16:43
feedback

AWK has already been mentioned, so in addition I'd like to suggest that you use this language instead of GREP and SED for scanning the original log file. A suitable AWK script can easily do the job of both and calculate the interesting value as Paul and Alf have already pointed out.

link|improve this answer
feedback

I realize this is an old question, but I like this solution enough to share it.

% cat > numbers.txt
1 
2 
3 
4 
5
^D
% cat numbers.txt | perl -lpe '$c+=$_}{$_=$c'
15

If there is interest, I'll explain how it works.

link|improve this answer
2  
Please don't. We like to pretend that -n and -p are nice semantic things, not just some clever string pasting ;) – hobbs Oct 15 '09 at 0:37
feedback

The following should work (assuming your number is the second field on each line).

awk 'BEGIN {sum=0} \
 {sum=sum + $2} \
END {print "tot:", sum}' Yourinputfile.txt
link|improve this answer
You don't really need the {sum=0} part – Uphill_ What '1 Oct 11 '11 at 6:19
feedback

Plain bash one liner

$ cat > /tmp/test
1 
2 
3 
4 
5
^D

$ echo $(( $(cat /tmp/test | tr "\n" "+" ) 0 ))
link|improve this answer
feedback

Or use awk rather than sed : arithmetic sample

link|improve this answer
feedback

BASH solution, if you want to make this a command (e.g. if you need to do this frequently):

function addnums {
  TOTAL=0
  while read val; do
    TOTAL=$(($TOTAL+$val))
  done
  echo $TOTAL
}

Then usage:

cat /tmp/nums | addnums
link|improve this answer
feedback
dc -f infile -e '[+z1<r]srz1<rp'
link|improve this answer
feedback

$ sed 's/^/.+/' infile | bc | tail -1

link|improve this answer
feedback

one simple solution would be to write a program to do it for you. This could probably be done pretty quickly in python, something like:

sum = 0
file = open("numbers.txt","R")
for line in file.readlines(): sum+=int(line)
file.close()
print sum

I haven't tested that code, but it looks right. Just change numbers.txt to the name of the file, save the code to a file called sum.py, and in the console type in "python sum.py"

link|improve this answer
calling readlines() reads the entire file into memory - using 'for line in file' could be better – orip Jan 16 '09 at 16:11
feedback

This is very similar to a question I asked a while ago: http://stackoverflow.com/questions/295781/shortest-command-to-calculate-the-sum-of-a-column-of-output-on-unix

link|improve this answer
feedback
$ cat n
2
4
2
7
8
9
$ perl -MList::Util -le 'print List::Util::sum(<>)' < n
32

Or, you can type in the numbers on the command line:

$ perl -MList::Util -le 'print List::Util::sum(<>)'
1
3
5
^D
9

However, this one slurps the file so it is not a good idea to use on large files. See j_random_hacker's answer which avoids slurping.

link|improve this answer
feedback

C++ (simplified):

seq 1 10 | scc 'WRL n+=F0; n'

SCC project - http://volnitsky.com/project/scc/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.