deepstone

view src/fixcase @ 39:f9b1ff21fd62

merged
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 10 Mar 2014 17:28:28 +0200
parents
children
line source
1 #!/bin/sh
3 # when I ftp files over from the dos machine, everything becomes uppercase...
4 # just run this in the source dir to fix them all
6 for i in *.C *.H; do
7 fixedname="`echo $i | tr '[:upper:]' '[:lower:]'`"
8 echo "$i -> $fixedname"
9 mv "$i" "$fixedname"
10 done