Fastest way calculating directory


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Fastest way calculating directory
# 8  
Old 10-28-2013
centos 6.4 and my bid disk mounted from EMC.

here is my directory structure.
20TB mouted from EMC
/data
10m files -images/
500k files -txt/
wanted to get total size of images and txt folder separately.

Code:
cnt=0 > /tmp/summary_sizes.txt   # set the file to zero length while read dirname  do 
[ "$dirname" = "/data/images" ]  && continue                # skip highlevel dirs 
[ "$dirname" = "/data/txt" ]  && continue      
du -s $dirname >> /tmp/summary_sizes.txt &   # run du in the background      
cnt=$(( $cnt + 1 ))                                          # count background processes      
[  $(( $cnt % 15 )) -eq 0 ]  && wait                   # when 15 active -- wait
done  < /tmp/dir.txt
wait

I try your script but no result

Last edited by rufino; 10-28-2013 at 11:24 PM..
# 9  
Old 10-29-2013
Quote:
Originally Posted by rufino
Code:
[ "$dirname" = "/data/images" ]  && continue                # skip highlevel dirs 
[ "$dirname" = "/data/txt" ]  && continue

I try your script but no result
No wonder - you have skipped exactly the directories you were interested in. You should skip "/data", as HIGHERLEVEL directory, like the commentary suggested. It might help to actually try to understand what the script is doing before modifying it.

I hope this helps.

bakunin
# 10  
Old 10-30-2013
yes you right, now is working and will update you.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Check fastest server and using it

hello we have upload some data in 15 servers in usa asia ... i consider to add new feature , script can detect download speed between localhost and destination and use fastest server, i have cut this part from a script which have this feature, download a xx MB file from all its source and... (0 Replies)
Discussion started by: nimafire
0 Replies

2. Shell Programming and Scripting

How to Calculating space used in GB for any particular directory in UNIX?

How to Calculating space used in GB for any particular directory in unix Currently I am using : df -h which gives me space for each mout point ldndyn1:/vol/v01/dyn/sbcexp/dyn 1.1T 999G 29G 98% /sbcimp/dyn but I need for some internal particular directory... (3 Replies)
Discussion started by: RahulJoshi
3 Replies

3. Shell Programming and Scripting

Calculating the epoch time from standard time using awk and calculating the duration

Hi All, I have the following time stamp data in 2 columns Date TimeStamp(also with milliseconds) 05/23/2012 08:30:11.250 05/23/2012 08:30:15.500 05/23/2012 08:31.15.500 . . etc From this data I need the following output. 0.00( row1-row1 in seconds) 04.25( row2-row1 in... (5 Replies)
Discussion started by: ks_reddy
5 Replies

4. Shell Programming and Scripting

calculating column summation in a directory of flat files

Hello Guru s I need your kind help to solve my below issue I have a directory of flat files and have to calculate sum of some columns from the flat file . Say for flat file 302 I need the column summation of 2 and 3 rd column For flat file 303 I need the column summation of 5 and... (2 Replies)
Discussion started by: Pratik4891
2 Replies

5. Solaris

The FASTEST copy method?

Hi Experts, I've been asked if there is a fast way to duplicate a file(10GB) and zip it at the same time. The zipped file would be FTP'd.....management is asking this. Maybe there is a better method all together? any ideas? CP will not cut it. Thanks in advance Harley (1 Reply)
Discussion started by: Harleyrci
1 Replies

6. AIX

Fastest way to count big amount of files in sub directory

Hi, what happened is we want to count all the files in a directory and inside this directory got many folders and so take long time to count it. Already run for about few minutes but still not done. The command we use to count is find . -type f | wc -l Just wondering if there is any other... (9 Replies)
Discussion started by: ngaisteve1
9 Replies

7. UNIX for Advanced & Expert Users

Fastest way for searching the file

I want to search a file in fastest manner. Presently I am using 'find' command. But it is taking around 15min for searching. Is there any other method through which I can do it fast? (3 Replies)
Discussion started by: vaibhavbhat
3 Replies

8. Shell Programming and Scripting

how to delete/remove directory in fastest way

hello i need help to remove directory . The directory is not empty ., it contains several sub directories and files inside that.. total number of files in one directory is 12,24,446 . rm -rf doesnt work . it is prompting for every file .. i want to delete without prompting and... (6 Replies)
Discussion started by: getdpg
6 Replies

9. Shell Programming and Scripting

Scripts for calculating size and remaining space of a directory automatically.

I would like to create a script for calculating size and remaining space of a directory automatically every 24 hours, then send an email to report to the admin. * POSIX and PERL are preferred. Can anyone help, please? (1 Reply)
Discussion started by: leonall
1 Replies

10. UNIX for Dummies Questions & Answers

fastest copy command

wich is the fastest command in HP-UX to copy an entire disk to dat tapes, or even disk to disk? thanks (0 Replies)
Discussion started by: vascobrito
0 Replies
Login or Register to Ask a Question