i used to think i could blog; i was wrong.
Jan 23
find . -name ".svn" -exec rm -rf '{}' \; always useful.
find . -name ".svn" -exec rm -rf '{}' \;
find . -name “.svn” | xargs rm -rf
saves you reaching for the shift key a few times. and it is satisfying to type xargs, no?
xargs.
Name (required)
Mail (will not be published) (required)
Website
February 6th, 2008 at 2:34 am
find . -name “.svn” | xargs rm -rf
saves you reaching for the shift key a few times.
and it is satisfying to type xargs, no?
xargs.