Return to Snippet

Revision: 4503
at December 22, 2007 09:52 by berkes


Initial Code
#!/bin/bash

if [ ! "$1" ]
then
  1='.'
fi

echo "Processing $1"
svn add $1 `svn st $1 | grep '^?.*' | tr -d '? ' | sort -n | tr '\n' ' '`

Initial URL


Initial Description


Initial Title
Automatically add all new files in the current dir.

Initial Tags
svn, Bash

Initial Language
Bash