view bin/desvn.sh @ 32:f878d9f62211

fix syntax error and actually execute the commands
author Jeff Hammel <k0scist@gmail.com>
date Tue, 16 Mar 2010 11:55:12 -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