Mercurial > hg > config
view bin/desvn.sh @ 22:8da594377f18
updates so installation wont break if no .subversion directory
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 01 Mar 2010 13:12:40 -0500 |
parents | 3530d50c97ff |
children |
line wrap: on
line source
#!/bin/bash desvn() { if [ "$#" == "1" ] then cd $1 fi svn ls | grep '.*/$' | while read line do desvn $line done rm -rf .svn if [ "$#" == "1" ] then cd .. fi } desvn