du total


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers du total
# 8  
Old 11-21-2007
Unlikely I'll cut-&-paste such output.
But have attached in 'du-output-u03.txt'

Cheers,
Cameron
# 9  
Old 11-21-2007
Never mind...

Found that it's more suitable when du'ing for a particular filetype rather than everything '*'.

Solution I found was to do: find /u03 -name \*.Z -xdev -exec du -k {} \+ | awk '{total=total+$1} END {print total}'

Many thanks for the tip Yogesh Sawant.

Cheers,
Cameron

Did notice the following resulted in the same as before too ...
[/u03]# du -sk *
663780 installs
0 lost+found
2048022 paging
789192 scratch
[/u03]# du -sk * | awk '{total=total+$1} END {print total}'
3.50099e+06
[/u03]#
# 10  
Old 12-05-2008
The results apply only to the current directory. How do we get the sum of all the *.gz files within the subdirectories as well. Thanks and appreciate your help
 
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