Sometimes you find yourself catching up with some devs who did not care to add all the stuff they should to SVN or you want to make sure all files are in SVN. Well here’s a hand script :
svn status | awk ‘{if ($1 == “?”) print $2 }’ | xargs svn add
nJoy 😉