Jan 23

one-liner to remove .svn metafiles recursively

Tag: Uncategorizeddenis @ 4:06 pm


find . -name ".svn" -exec rm -rf '{}' \;

always useful.

Bookmark this page on: These icons link to social bookmarking sites where readers can share and discover new web pages.
  • Digg
  • del.icio.us
  • Facebook
  • Google
  • Reddit
  • StumbleUpon
  • Technorati

One Response to “one-liner to remove .svn metafiles recursively”

  1. ted says:

    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.

Leave a Reply