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

I have a file which contains several thousand numbers, each on it's own line:

34
42
11
6
2
99
...

I'm looking to write a script which will print the sum of all numbers in the file. I've got a solution, but it's not very efficient. (It takes several minutes to run.) I'm looking for a more efficient solution. Any suggestions?

share|improve this question
2  
What was your slow solution? Maybe we can help you figure out what was slow about it. :) – brian d foy Apr 23 '10 at 23:59
@brian d foy, I'm too embarrassed to post it. I know why it's slow. It's because I call "cat filename | head -n 1" to get the top number, add it to a running total, and call "cat filename | tail..." to remove the top line for the next iteration... I have a lot to learn about programming!!! – Mark Roberts Apr 24 '10 at 1:22
3  
That's...very systematic. Very clear and straight forward, and I love it for all that it is a horrible abomination. Built, I assume, out of the tools that you knew when you started, right? – dmckee Apr 24 '10 at 2:43
2  
full duplicate: stackoverflow.com/questions/450799/… – codeholic Apr 26 '10 at 11:39

15 Answers

up vote 28 down vote accepted

For a Perl one-liner, it's basically the same thing as the awk solution in Ayman Hourieh's answer:

 % perl -nle '$sum += $_ } END { print $sum'

If you're curious what Perl one-liners do, you can deparse them:

 %  perl -MO=Deparse -nle '$sum += $_ } END { print $sum'

The result is a more verbose version of the program, in a form that no one would ever write on their own:

BEGIN { $/ = "\n"; $\ = "\n"; }
LINE: while (defined($_ = <ARGV>)) {
    chomp $_;
    $sum += $_;
}
sub END {
    print $sum;
}
-e syntax OK

Just for giggles, I tried this with a file containing 1,000,000 numbers (in the range 0 - 9,999). On my Mac Pro, it returns virtually instantaneously. That's too bad, because I was hoping using mmap would be really fast, but it's just the same time:

use 5.010;
use File::Map qw(map_file);

map_file my $map, $ARGV[0];

$sum += $1 while $map =~ m/(\d+)/g;

say $sum;
share|improve this answer
Wow, that shows a deep understanding on what code -nle actually wraps around the string you give it. My initial thought was that you shouldn't post while intoxicated but then I noticed who you were and remembered some of your other Perl answers :-) – paxdiablo Apr 23 '10 at 23:52
-n and -p just put characters around the argument to -e, so you can use those characters for whatever you want. We have a lot of one-liners that do interesting things with that in Effective Perl Programming (which is about to hit the shelves). – brian d foy Apr 23 '10 at 23:56
2  
Nice, what are these non-matching curly braces about? – Frank Apr 24 '10 at 6:00
3  
-n adds the while { } loop around your program. If you put } ... { inside, then you have while { } ... { }. Evil? Slightly. – jrockway Apr 24 '10 at 8:35
Big bonus for highlighting the -MO=Deparse option! Even though on a separate topic. – conny Nov 4 '11 at 12:47

You can use awk:

awk '{ sum += $1 } END { print sum }' file
share|improve this answer
1  
I stick my tongue out at you for having fast fingers... – dmckee Apr 23 '10 at 23:43
program exceeded: maximum number of field sizes: 32767 – leef Nov 2 '12 at 3:50

Here's another one-liner

( echo 0 ; sed 's/$/ +/' foo ; echo p ) | dc

This assumes the numbers are integers. If you need decimals, try

( echo 0 2k ; sed 's/$/ +/' foo ; echo p ) | dc

Adjust 2 to the number of decimals needed.

share|improve this answer

This is straight Bash:

sum=0
while read -r line
do
    (( sum += line ))
done < file
echo $sum
share|improve this answer
this willl work as long as there are no decimals – ghostdog74 Apr 24 '10 at 5:09
sed ':a;N;s/\n/+/;ta' file|bc
share|improve this answer

I don't know if you can get a lot better than this, considering you need to read through the whole file.

$sum = 0;
while(<>){
   $sum += $_;
}
print $sum;
share|improve this answer
what's the $_ mean? – Mark Roberts Apr 23 '10 at 23:39
Very readable. For perl. But yeah, it's going to have to be something like that... – dmckee Apr 23 '10 at 23:40
$_ is the default variable. The line input operator, <>, puts it's result in there by default when you use <> in while. – brian d foy Apr 23 '10 at 23:53
1  
@Mark, $_ is the topic variable--it works like the 'it'. In this case <> assigns each line to it. It gets used in a number of places to reduce code clutter and help with writing one-liners. The script says "Set the sum to 0, read each line and add it to the sum, then print the sum." – daotoad Apr 23 '10 at 23:59
1  
@Stefan, with warnings and strictures off, you can skip declaring and initializing $sum. Since this is so simple, you can even use a statement modifier while: $sum += $_ while <>; print $sum; – daotoad Apr 24 '10 at 0:00

Another for fun

sum=0;for i in $(cat file);do sum=$((sum+$i));done;echo $sum

or another bash only

s=0;while read l; do s=$((s+$l));done<file;echo $s

But awk solution is probably best as it's most compact.

share|improve this answer

This works. Mind the lack of space between '<' and '('.

cat <(cat file.txt | tr "\n" "+") <(echo -e "0\n") | bc
share|improve this answer

Pash (aka PowerShell for Linux :)):

(gc "input.txt" | measure -sum).Sum > "output.txt"
share|improve this answer
echo $(for i in $(cat numbers.txt); do echo -n "$i+"; done ; echo 0) | bc

I am curious to see how it performs (it might reach memory limits).

share|improve this answer
2  
On my Mac Pro for 1,000,000 numbers between 0 and 9999, this ran in about 15 seconds, where my Perl solution was 0.3 seconds, and the awk solution was 0.3 seconds. – brian d foy Apr 24 '10 at 0:30
@brian: Thank you! I thought the bash solution would have died sooner than 1,000,000 numbers (due to command line limitations). Guess not. – Dave Jarvis Apr 24 '10 at 0:32
3  
That's not straight Bash. cat and bc are external executables. – Dennis Williamson Apr 24 '10 at 1:05
@Dennis: You are correct. – Dave Jarvis Apr 24 '10 at 4:53

Here's another:

open(FIL, "a.txt");

my $sum = 0;
foreach( <FIL> ) {chomp; $sum += $_;}

close(FIL);

print "Sum = $sum\n";
share|improve this answer
cat nums | perl -ne '$sum += $_ } { print $sum'

(same as brian d foy's answer, without 'END')

share|improve this answer

Just for fun, lets do it with PDL, Perl's array math engine!

perl -MPDL -E 'say rcols(shift)->sum' datafile

rcols reads columns into a matrix (1D in this case) and sum (surprise) sums all the element of the matrix.

share|improve this answer

Just to be ridiculous:

cat f | tr "\n" "+" | perl -pne chop | R --vanilla --slave
share|improve this answer
This one eventually died with "Error: evaluation nested too deeply: infinite recursion / options(expressions=)?" for my tests. I would have thought R could do this all by itself. – brian d foy Apr 24 '10 at 0:54
Haha nice solution. – Frank Apr 24 '10 at 5:58

I have not tested this but it should work:

cat f | tr "\n" "+" | sed 's/+$/\n/' | bc

You might have to add "\n" to the string before bc (like via echo) if bc doesn't treat EOF and EOL...

share|improve this answer
2  
It doesn't work. bc issues a syntax error because of the trailing "+" and lack of newline at the end. This will work and it eliminates a useless use of cat: { tr "\n" "+" | sed 's/+$/\n/'| bc; } < numbers2.txt or <numbers2.txt tr "\n" "+" | sed 's/+$/\n/'| bc – Dennis Williamson Apr 24 '10 at 2:18
tr "\n" "+" <file | sed 's/+$/\n/' | bc – ghostdog74 Apr 24 '10 at 5:23

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.