Thanks to trash in #bash on irc.freenode.net. Simply define this function in Bash and invoke it when ready to add:
svn_radd ()
{
svn status | while read a b; do
[[ $a = '?' ]] && svn add "$b";
done
}
Thanks to trash in #bash on irc.freenode.net. Simply define this function in Bash and invoke it when ready to add:
svn_radd ()
{
svn status | while read a b; do
[[ $a = '?' ]] && svn add "$b";
done
}