Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Rename classes in XCode projects' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Rename classes in XCode projects
Authored by: jzdziarski on Apr 01, '05 10:28:44AM

It's much better to just do something like this:

perl -p -i.bak -e 's/OldClass/NewClass/g' `find . -name "*.java"`

or whatever extension you are interested in. this will prevent you from screwing with files you don't want..and grep -r never worked for me.



[ Reply to This | # ]