Fix test for directory
[git-tools-moved-to-github.git] / cvsignore-mv / cvsignore-mv.sh
1 #!/bin/sh
2 # moves all .cvsignore to .gitignore
3 for c in `find . -name .cvsignore`; do
4         n=`echo $c|sed -es/cvsignore/gitignore/`
5         git mv $c $n
6 done