The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 03-18-2009
aaaaargh aaaaargh is offline
Registered User
  
 

Join Date: Aug 2006
Posts: 20
Be very careful when you run this.

First identify what the directories are:
Code:
find / -name "??????????" -type d -empty -ls
Then delete (be careful, I am warning you)
Code:
find / -name "??????????" -type d -empty -exec rmdir {} \;