Recursively Add Changed Files to Subversion

From HowToGeek

Jump to: navigation, search

If you've ever wanted to add a bunch of changed files recursively to svn, this code snip will push them all up at once.

svn status | grep "^\?" | awk '{print $2}' | xargs svn add