Mercurial > hg > config
view bin/desvn.sh @ 137:e12176a453e4
note git global ignore silliness
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 07 Apr 2011 10:23:27 -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