Mercurial > hg > config
view bin/desvn.sh @ 21:099a3bfa2852
fixes to anagram.py
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 26 Feb 2010 13:19:14 -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