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 UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #7 (permalink)  
Old 05-16-2008
Stephan Stephan is offline
Registered User
 

Join Date: Sep 2005
Posts: 16
thanks for all the responses guys...i've tried this:

find . -type d | awk '!/\.\/200*/' | awk -F"/" '{print $2}' | more

just to see what it would return, since technically, i will do a rm -fR on the top level dir...Seems like it will do the trick.

Thanks.
Reply With Quote