searching for list of empty directories


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting searching for list of empty directories
# 1  
Old 10-13-2004
searching for list of empty directories

Guys

I need to write a korn shell script that will search for a list of empty sub-directories in a specific directory and then email a list of these empty directories.
Any ideas - apologies, I am new to shell scripting.


Thanks

Last edited by man80; 10-13-2004 at 05:30 AM..
# 2  
Old 10-13-2004
Would be good to see what you've already attempted in terms of the script you've written so far.
# 3  
Old 10-13-2004
!/bin/ksh

find $1 -type d | while read D
do
ls -lrt $D | grep "total 0"
done


You enter the directory name as paramet $1 for the directory to search. This just lists "total 0" for all directories if it finds total 0. However, I think that I should:

1. perform test to see if "total 0" is found
2. output directory to log file if true
3. send email at end.
# 4  
Old 10-14-2004
Code:
!/bin/ksh

find $1 -type d | while read D
do
   ls -lrt $D | grep -i -q "total 0"
   if [ $? -eq 0 ]; then
      echo $D
   fi
done  > logfile
/usr/bin/mailx -s "Zero directories", man80@foo.com  < logfile

play around with this and see if it helps. Smilie

Last edited by jim mcnamara; 10-15-2004 at 05:56 PM..
# 5  
Old 10-15-2004
Nice one jim!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Empty Directories

Please help me. How i can find empty directories in solaris?? (4 Replies)
Discussion started by: FoDeGe
4 Replies

2. UNIX for Advanced & Expert Users

Delete empty directories recursively - HP-UX

Hi, I want to delete all empty directories in a long directore tree structure. I want to use that from a script that will run on HP-UX 11. My definition of empty directory is that there is no regular file under it and directly beneath it. To elaborate, I have below directories. /app/dev/java... (14 Replies)
Discussion started by: asutoshch
14 Replies

3. Shell Programming and Scripting

How to exclude the empty directories

Hi., I have a script, in which I am processing a files present in the directory types. ls -lrt | grep ^d | grep Dir_type | awk -f '{print $9}' |\ while read dir_name; do #operations done where Dir_type is the pattern in which directories get created. How to filter out empty... (2 Replies)
Discussion started by: IND123
2 Replies

4. Shell Programming and Scripting

Listing non empty directories

Hi Gurus, How to list directories that are non-empty and non-hidden Thanks in advance (2 Replies)
Discussion started by: kinny
2 Replies

5. UNIX for Dummies Questions & Answers

Remove only Empty Directories

I know this one was answered before in forum below - https://www.unix.com/unix-dummies-questions-answers/58210-removing-empty-folders-using-find-command.html But that one is closed & I have a question so here it goes. I want to delete all 2006 files. Now if along with the files, if the... (2 Replies)
Discussion started by: kedar.mehta
2 Replies

6. Shell Programming and Scripting

identify the empty directories

Hi Wrote the below script to identify the empty directories ,when executing the below showing that directory is not empty but the directories are empty.Please help to identify the empty directories 33 is not empty 33 is not empty 33 is not empty 33 is not empty for file in `find .... (5 Replies)
Discussion started by: mohan705
5 Replies

7. UNIX for Dummies Questions & Answers

Empty directories having different size

$ls -lrt mydir total 12 drwxrwxrwx 2 nobody nobody 512 Aug 8 11:51 tmp drwxrwxrwx 2 nobody nobody 4608 Jan 19 12:20 web.cache $ ls -lrt mydir/web.cache/ total 0 $ ls -lrt mydir/tmp/ total 0 Can anyone explain me the above results? I know the o/p of ls, but this... (3 Replies)
Discussion started by: rahulrathod
3 Replies

8. UNIX for Dummies Questions & Answers

Help identifying empty directories

Is there a way you can identify directories that are empty? I do not need to remove them, I just need to identify them below a cetain path. I have tried the following already and it returned everything for some reason. #!/bin/sh && set -- . find "$@" -type d -depth -print > dir.txt |... (2 Replies)
Discussion started by: dboard
2 Replies

9. Shell Programming and Scripting

searching through directories

Please help. I am getting back into UNIX and I need a script that requires me to start in one main directory (call it mydata) and under this directory searches several subdirectories within subdirectories. I need to search each directory to locate *_source and delete files within the directory... (2 Replies)
Discussion started by: MrJaunty
2 Replies

10. UNIX for Dummies Questions & Answers

scanning empty directories

Hi, I want to produce a text file representing a list of empty directories on a unix system starting from a specified directory. I hope I explained well my problem. Thanks in advance. (7 Replies)
Discussion started by: N065956BM
7 Replies
Login or Register to Ask a Question