Mercurial > hg > config
view bin/desvn.sh @ 14:ac34d580c6d7
make symbolic links when necessary (should generalize)
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 19 Jan 2010 16:22:21 -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