Remove the .pyc files from current directory tree and from svn « Python recipes « ActiveState Code
Why not just run this command ?
$ find . -name "*.pyc" | xargs svn rm --force
Remove the .pyc files from current directory tree and from svn « Python recipes « ActiveState Code
|