Mercurial > hg > config
view bin/desvn.sh @ 3:a7188391b4ce
autojoin socialplanning
author | k0s <k0scist@gmail.com> |
---|---|
date | Wed, 28 Oct 2009 12:49:24 -0400 |
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