du total


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers du total
# 1  
Old 11-20-2007
du total

Hi All

Can anyone help me with the following du querry. I am trying to achieve a total size for all the zipped files in a directory. Using du -k *.gz gets me a file by file list but no handy total at the bottom.

Thanks
Ed
# 2  
Old 11-20-2007
Code:
du -k *.gz | awk '{total=total+$1} END {print total}'

This User Gave Thanks to Yogesh Sawant For This Post:
# 3  
Old 11-20-2007
du -k *.gz | awk 'BEGIN {sum = 0} {sum = sum + $1 } END{print sum }'
# 4  
Old 11-20-2007
Thanks thats great.
Ed
# 5  
Old 11-20-2007
Or if you have the GNU coreutils package (such as on a Linux system,) you can do:
Code:
du -sh

# 6  
Old 11-21-2007
Err, just saw the thread, had a peek & a play and got the following result..

[/u03]# du -k * | awk '{total=total+$1} END {print total}'
4.72424e+06


How do I make the result more meaningful ??
OS= HP-UX 11.23 ia64
# 7  
Old 11-21-2007
can just paste the result of du -k *
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Column total

Input `0B0A RDF1+TDEV 45 BL_lmapm03 `0CE7 TDEV 59 BL_lmapm03 `0B09 RDF1+TDEV 70 BL_lmapm02 `0CE6 TDEV 59 BL_lmapm02 `0B08 RDF1+TDEV 70 BL_lmapm01 `0CE5 TDEV 59 BL_lmapm01 Output... (2 Replies)
Discussion started by: greycells
2 Replies

2. Solaris

Total

i want to list Total HDD count in any soalris machine..can someone suggest some commands or combinations of commands (6 Replies)
Discussion started by: omkar.jadhav
6 Replies

3. Shell Programming and Scripting

Total of columns

Input file cll_0014_spp,84,uranus,disk33,45 cll_0014_spp,84,pluto,disk3,10 cll_0014_spp,450,pluto,disk4,1 cll_0014_spp,453,pluto,disk46,19 cll_0014_spp,84,neptune,disk34,60 cll_0014_spp,450,neptune,disk4,1 cll_0014_spp,68,neptune,disk54,59 cll_1234_spp,66,satrun,1000... (6 Replies)
Discussion started by: greycells
6 Replies

4. Shell Programming and Scripting

Help with sum total number of record and total number of record problem asking

Input file SFSQW 5192.56 HNRNPK 611.486 QEQW 1202.15 ASDR 568.627 QWET 6382.11 SFSQW 4386.3 HNRNPK 100 SFSQW 500 Desired output file SFSQW 10078.86 3 QWET 6382.11 1 QEQW 1202.15 1 HNRNPK 711.49 2 ASDR 568.63 1 The way I tried: (2 Replies)
Discussion started by: patrick87
2 Replies

5. Shell Programming and Scripting

du -s *.ext (total)

How would I get a total of a wildcard of files from the 'du' command? du -s *.pdf Result: 736 11mens_bracket.pdf 64 2011_NIT_Bracket_3_13_11.pdf 80 Doing more with Less part1.pdf 1064 Doing more with Less part2.pdf 28 Parkview_1309_Garage.pdf 3964 statsheet-bracket-2011.pdf Expected... (7 Replies)
Discussion started by: AlphaLexman
7 Replies

6. Red Hat

Total Memory

Hi, I have a strange issue where the total memory on the server is showing low. At the moment 8 GB of memory is installed and only 3 GB is showing on the shell prompt. I am using the commands free -m and vmstat to check the memory. Please help me out in identifying the issue. With regards... (3 Replies)
Discussion started by: shabu
3 Replies

7. Shell Programming and Scripting

Calculate total space, total used space and total free space in filesystem names matching keyword

Good afternoon! Im new at scripting and Im trying to write a script to calculate total space, total used space and total free space in filesystem names matching a keyword (in this one we will use keyword virginia). Please dont be mean or harsh, like I said Im new and trying my best. Scripting... (4 Replies)
Discussion started by: bigben1220
4 Replies

8. Shell Programming and Scripting

Running Total

HPUX 11i v2 #!/bin/sh Hi all. I have a space delimited flat file of about 9000 lines. I would like to get a running total of field 3 to the variable $TOTAL. Field 3 can be formatted as listed.... $ 0.00 $2804.15 <$ 4.14> (negative) Any ideas are most appreciated!!!! TIA!! (9 Replies)
Discussion started by: lyoncc
9 Replies

9. UNIX for Dummies Questions & Answers

grep running total/ final total across multiple files

Ok, another fun hiccup in my UNIX learning curve. I am trying to count the number of occurrences of an IP address across multiple files named example.hits. I can extract the number of occurrences from the files individually but when you use grep -c with multiple files you get the output similar to... (5 Replies)
Discussion started by: MrAd
5 Replies
Login or Register to Ask a Question