#!/bin/sh # (c) Copyright 2002, 2003 Stichting Wireless Leiden, all # rights reserved. More information can be found on # http://wwww.wirelessleiden.nl and the license is at: # http://wleiden.webweaving.org:8080/svn/node-config/LICENSE # # # Script to remove all username/passwords from SVN if [ $# = 1 ]; then DIR=$1 else DIR=. fi echo Starting at $DIR find $DIR -type d -name auth | grep .svn/aut | ( while read D do echo Removeing $D/password and $D/username rm $D/password and $D/username || exit 1 done exit 0 ) exit $?