Thursday, August 20, 2009

bash shell one liner for denying access to a specific user to all svn repos in a directory.

for i in $(find /Volumes/DATA/SubVersion/ -name svnserve.conf |xargs grep -L anon-access); do echo "anon-access = none" >> $i; done

0 Comments:

Post a Comment

<< Home