Re: Deleting build products & intermediates for all projects on a volume
Re: Deleting build products & intermediates for all projects on a volume
- Subject: Re: Deleting build products & intermediates for all projects on a volume
- From: "Jonathan 'Wolf' Rentzsch" <email@hidden>
- Date: Wed, 7 Apr 2004 23:26:34 -0500
Wade Tregaskis, email@hidden, wrote:
>
So I'm wondering if anyone has any magic scripts or apps to
>
systematically purge these build folders? I have about 50 or 60
>
different projects with build folders at any one time (out of about 200
>
total), and going through manually in the Finder is at best tedious,
>
and using XCode nigh high on impossible [given how sluggish it is].
I use:
find ~/code -name 'build' -print0|xargs -0 -n 1 rm -rf
It runs prior to my daily backup.
>
The only requirement I have is that only the regenerable build stuff be
>
deleted - not just the whole build folder indiscriminately.
This command does not match your criteria, but you should be able to hack
it to fit.
| Jonathan 'Wolf' Rentzsch
http://rentzsch.com
| Red Shed Software
http://redshed.net
| "better" necessarily means "different"
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.