Return to Snippet

Revision: 4504
at December 22, 2007 09:53 by berkes


Initial Code
#!/bin/bash

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

svn rm $1 `svn st $1 | grep '^!.*' | tr -d '! ' | tr '\n' ' ' | sort -n`

Initial URL


Initial Description


Initial Title
Automatically remove all nonexsiting files in the current dir from svn

Initial Tags
svn, Bash

Initial Language
Bash