vote up 0 vote down star

Given a list of files in files.txt, I can get a list of their sizes like this:

cat files.txt | xargs ls -l | cut -c 23-30

which produces something like this:

  151552
  319488
 1536000
  225280

How can I get the total of all those numbers?

flag

7 Answers

vote up 8 vote down check

Here goes

cat files.txt | xargs ls -l | cut -c 23-30 | 
  awk '{total = total + $1}END{print total}'
link|flag
4  
Using awk is a fine idea, but why keep the cut? That's a predictable column number, so use ... | xargs ls -l | awk '{total = total + $5}{END{print total}' – dmckee May 29 at 14:36
1  
You are correct of course - it was easier just to append on to the end of what was already there :-) – Greg Reynolds Jun 1 at 10:05
vote up 0 vote down

Instead of using cut to get the file size from output of ls -l, you can use directly:

$ cat files.txt | xargs ls -l | awk '{total += $5} END {print "Total:", total, "bytes"}'

Awk interprets "$5" as the fifth column. This is the column from ls -l that gives you the file size.

link|flag
vote up 1 vote down

In ksh:

echo " 0 $(ls -l $(<files.txt) | awk '{print $5}' | tr '\n' '+') 0" | bc
link|flag
Good for picking up on skipping the cut, but you ignore awks ability to do the math... – dmckee May 29 at 14:38
vote up 0 vote down

Here's mine

cat files.txt | xargs ls -l | cut -c 23-30 | sed -e :a -e '$!N;s/\n/+/;ta' | bc
link|flag
+1 for proving once and for all that there are uglier languages than perl :) – bdonlan Aug 12 at 16:17
vote up 1 vote down

You can use the following script if you just want to use shell scripting without awk or other interpreters:

#!/bin/bash

total=0

for number in `cat files.txt | xargs ls -l | cut -c 23-30`; do
   let total=$total+$number
done

echo $total
link|flag
vote up 0 vote down

Pipe to gawk:

 cat files.txt | xargs ls -l | cut -c 23-30 | gawk 'BEGIN { sum = 0 } // { sum = sum + $0 } END { print sum }'
link|flag
vote up 3 vote down

I would use "du" instead.

$ cat files.txt | xargs du -c | tail -1
4480    total

If you just want the number:

cat files.txt | xargs du -c | tail -1 | awk '{print $1}'
link|flag
1  
Disk usage != size of file. du reports disk usage. – 0x6adb015 May 29 at 14:07
1  
I think the -b switch makes du do what I need. – RichieHindle May 29 at 14:16
@0x6adb015 Good knowledge. Thanks I hadn't realised. – MichaelJones May 29 at 16:34

Your Answer

Get an OpenID
or

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