Mercurial > hg > config
view bin/desvn.sh @ 226:d9865f96eb98
https://bugzilla.mozilla.org/show_bug.cgi?id=754703
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 14 May 2012 13:06:33 -0700 |
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