deleting CVS administrative directories recursively

Tom Legrady legrady-bJEeYj9oJeDQT0dZR+AlfA at public.gmane.org
Fri Apr 9 16:30:49 UTC 2004



William O'Higgins wrote:

>I used to use CVS, and I am migrating to subversion.  I don't have my
>CVS respository (long story), and so the CVS directories all over the 
>place are of little use to me.  I would like to remove them all, but I'm
>not sure how.
>
>Should I do a find piped to a rm, or is there a better way?  I am
>uncertain of the best way to do this, and I'd rather not recursively
>deleted things I actually want, you know?  Thanks.
>  
>

You want

    sudo rm -rf /*

no, I mean:

    find $start_here -name CVS -exec rm -rf {} \;


Tom
--
The Toronto Linux Users Group.      Meetings: http://tlug.ss.org
TLUG requests: Linux topics, No HTML, wrap text below 80 columns
How to UNSUBSCRIBE: http://tlug.ss.org/subscribe.shtml





More information about the Legacy mailing list