Here's a command to add all the new files in your current path to subversion:
svn stat | grep ^? | sed 's/? /svn add "/' | sed 's/$/"/' | sh
svn commit -m "added all my new files"
A command to add all the new files in your current path to subversion |

Here's a command to add all the new files in your current path to subversion:
svn stat | grep ^? | sed 's/? /svn add "/' | sed 's/$/"/' | sh
svn commit -m "added all my new files"