Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
This is very similar to a question I asked a while ago: stackoverflow.com/questions/295781/… – Andrew Jan 16 '09 at 17:35
3  
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

28 Answers

up vote 238 down vote accepted

Bit of awk should do it?

awk '{s+=$1} END {print s}' mydatafile
share|improve this answer
4  
very nice and compact, gotta love awk! – Jay Jan 16 '09 at 15:55
5  
+1 for knowing i'm not the only awk fan left in the world. :) – roe Jan 16 '09 at 15:59
1  
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
1  
There's not a practical limit, since it will process the input as a stream. So, if it can handle a file of X lines, you can be pretty sure it can handle X+1. – Paul Dixon Feb 25 '12 at 8:36
1  
I once wrote a rudimentary mailing list processer with an awk script run via the vacation utility. Good times. :) – L S Mar 7 '12 at 16:05
show 1 more comment

Or:

paste -sd+ infile|bc
share|improve this answer
29  
+1. How come I have been using Linux for over a decade and never heard of paste? – Thomas Jul 2 '10 at 12:03
1  
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
2  
this is way cooler than the awk solution. – Kevin Feb 1 '12 at 18:57
A solution using bc or dc is what I was looking for as a solution to my own similar problem. I don't know much about it and it seems to be underutilized, so it's very good to see others know how to use it. I suspect it's much faster than the other solutions, especially if there are many lines in the input. – L S Mar 7 '12 at 16:12
9  
Much easier to remember and type than the awk solution. Also, note that paste can use a dash - as the filename - which will allow you to pipe the numbers from the output of a command into paste's standard output without the need to create a file first: <commands> | paste -sd+ - | bc – George Mar 20 '12 at 19:15
show 4 more comments

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
share|improve this answer
1  
heh. Looks familiar :-) – Jay Jan 16 '09 at 16:17
1  
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
1  
A smaller one liner: stackoverflow.com/questions/450799/… – Khaja Minhajuddin Oct 11 '11 at 1:51
perl -lne '$x += $_; END { print $x; }' < infile.txt
share|improve this answer
I've removed -l and <. – J.F. Sebastian Jan 16 '09 at 16:03
4  
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

The one-liner version in Python:

$ python -c "import sys; print sum(int(l) for l in sys.stdin)"
share|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
1  
Shorter version would be python -c"import sys; print(sum(map(int, sys.stdin)))" – J.F. Sebastian Jan 17 '09 at 12:39
I love this answer for its ease of reading and flexibility. I needed the average size of files smaller than 10Mb in a collection of directories and modified it to this: find . -name '*.epub' -exec stat -c %s '{}' \; | python -c "import sys; nums = [int(n) for n in sys.stdin if int(n) < 10000000]; print(sum(nums)/len(nums))" – Paul Whipp Oct 23 '12 at 0:33

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/

share|improve this answer

The following works in bash:

I=0

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

echo $I
share|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
1  
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
dc -f infile -e '[+z1<r]srz1<rp'
share|improve this answer

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

share|improve this answer

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.

share|improve this answer
3  
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
Yes please, do explain :) (I'm not a Perl typea guy.) – Jens Apr 24 at 3:37

Plain bash one liner

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

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

Pure and short bash.

f=$(cat numbers.txt)
echo $(( ${f//$'\n'/+} ))
share|improve this answer

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
share|improve this answer

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()))"
share|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

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.

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

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.

share|improve this answer

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
share|improve this answer
You don't really need the {sum=0} part – Uphill_ What '1 Oct 11 '11 at 6:19

Pure bash and in a one-liner :-)

$ cat numbers.txt
1
2
3
4
5
6
7
8
9
10


$ I=0; for N in $(cat numbers.txt); do I=$(($I + $N)); done; echo $I
55
share|improve this answer

One-liner in Racket:

racket -e '(define (g) (define i (read)) (if (eof-object? i) empty (cons i (g)))) (foldr + 0 (g))' < numlist.txt
share|improve this answer

Or use awk rather than sed : arithmetic sample

share|improve this answer

Apologies in advance for readability of the backticks ("`"), but these work in shells other than bash and are thus more pasteable. If you use a shell which accepts it, the $(command ...) format is much more readable (and thus debuggable) than `command ...` so feel free to modify for your sanity.

I have a simple function in my bashrc that will use awk to calculate a number of simple math items

calc(){
  awk 'BEGIN{print '$@' }'
}

This will do +,-,*,/,^,%,sqrt,sin,cos, parenthesis ....(and more depending on your version of awk) ... you could even get fancy with printf and format floating point output, but this is all I normally need

for this particular question, I would simply do this for each line:

calc `echo $@|tr " " "+"`

so the code block to sum each line would look something like this:

while read LINE || [ "$LINE" ]; do
  calc `echo $LINE|tr " " "+"` #you may want to filter out some lines with a case statement here
done

That's if you wanted to only sum them line by line. However for a total of every number in the datafile

VARS=`<datafile`
calc `echo ${VARS// /+}`

btw if I need to do something quick on the desktop, I use this:

xcalc() { 
  A=`calc $@`
  A=`Xdialog --stdout --inputbox "Simple calculator" 0 0 $A`
  [ $A ] && xcalc $A
}
share|improve this answer

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"

share|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
$ 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.

share|improve this answer

C++ (simplified):

seq 1 10 | scc 'WRL n+=$0; n'

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

share|improve this answer

C (not simplified)

seq 1 10 | tcc -run <(cat << EOF
#include <stdio.h>
int main(int argc, char** argv) {
    int sum = 0;
    int i = 0;
    while(scanf("%d", &i) == 1) {
        sum = sum + i;
    }
    printf("%d\n", sum);
    return 0;
}
EOF)
share|improve this answer
(yeah I got bored and played code golf) – Greg Bowyer Jan 24 at 7:19

A lua interpreter is present on all fedora-based systems [fedora,RHEL,CentOS,korora etc. because it is embedded with rpm-package(the package of package manager rpm), i.e rpm-lua] and if u want to learn lua this kind of problems are ideal(you'll get your job done as well).

cat filname | lua -e "sum = 0;for i in io.lines() do sum=sum+i end print(sum)"

and it works. Lua is verbose though, you might have to endure some repeated keyboard stroke injury :)

share|improve this answer
#include <iostream>

int main()
{
    double x = 0, total = 0;
    while (std::cin >> x)
        total += x;
    if (!std::cin.eof())
        return 1;
    std::cout << x << '\n';
}
share|improve this answer

...and the PHP version, just for the sake of completeness

cat /file/with/numbers | php -r '$s = 0; while (true) { $e = fgets(STDIN); if (false === $e) break; $s += $e; } echo $s;'
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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