vote up 0 vote down star

I have some files across several folders:

/home/d/folder1/a.txt
/home/d/folder1/b.txt
/home/d/folder1/c.mov
/home/d/folder2/a.txt
/home/d/folder2/d.mov
/home/d/folder2/folder3/f.txt

How can I measure the grand total amount of disk space taken up by all the .txt files in /home/d/?

I know du will give me the total space of a given folder, and ls -l will give me the total space of individual files, but what if I want to add up all the txt files and just look at the space taken by all .txt files in one giant total for all .txt in /home/d/ including both folder1 and folder2 and their subfolders like folder3?

flag

If you needed it to run on HP-UX, why did you use the linux tag? – Barry Kelly Aug 31 at 20:02

5 Answers

vote up 1 vote down check

this will do it:

total=0
for file in $(ls *.txt)
do
space=$(ls -l $file | awk '{print $5}')
let total+=space
done
echo $total
link|flag
Will that find the files in subfolders folder1 and folder2? – Vinko Vrsalovic Aug 31 at 19:15
Used a slight variation. Removed the first -l in ls. This still doesn't do any recursion, and it'll bomb on anything with spaces, but it is the closest thing I have. Thanks – Dan Aug 31 at 19:36
no problem....I missed the subfolder requirement but thats easily handled by changing the for command to somethng like find . -name *.txt -exec ls {} ;\ – ennuikiller Aug 31 at 19:38
that ls *.txt in the for loop is redundant. just use shell expansion. --> for file in *.txt – ghostdog74 Sep 1 at 11:01
vote up 0 vote down

GNU find,

find /home/d -type f -name "*.txt" -printf "%s\n" | awk '{s+=$0}END{print "total: "s" bytes"}'
link|flag
vote up 0 vote down

use the tool du and the parameter -I to exclude all other files.

link|flag
vote up 1 vote down

Here's a way to do it, avoiding bad practice:

total=0
while read line
do
    size=($line)
    (( total+=size ))
done < <( find . -iname "*.txt" -exec du -b {} + )
echo $total

If you want to exclude the current directory, use -mindepth 2 with find.

Another version which may be more POSIX compliant:

find . -iname "*.txt" -exec du -b {} + | awk '{total += $1} END {print total}'
link|flag
vote up 4 vote down

find folder1 folder2 -iname '*.txt' -print0 | du --files0-from - -c -s | tail -1

link|flag
du doesnt appear to have a --files-from option – ennuikiller Aug 31 at 19:16
I meant a --files0-from option – ennuikiller Aug 31 at 19:16
`du --version du (GNU coreutils) 5.93` - works on my machine. – Barry Kelly Aug 31 at 19:17
And on my Cygwin install: du --version du (GNU coreutils) 6.10 – Barry Kelly Aug 31 at 19:18
on my linux box I'm running coreutils 4.5.3 so it's a bit outdated – ennuikiller Aug 31 at 19:20
show 2 more comments

Your Answer

Get an OpenID
or

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