rayzor

annotate util/fixcase @ 7:75bc89c2abc4

fixed the mouse handling problem
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 07 Apr 2014 08:05:06 +0300
parents c273c6f799a4
children 235c8b764c0b
rev   line source
nuclear@2 1 #!/bin/sh
nuclear@2 2
nuclear@4 3 src=`find \( -iname '*.c' -o -iname '*.cc' -o -iname '*.h' -o -iname '*.inl' \)`
nuclear@4 4 for i in $src util/*; do
nuclear@2 5 if echo $i | grep '[A-Z]' >/dev/null; then
nuclear@2 6 fixed=`echo $i | tr '[:upper:]' '[:lower:]'`
nuclear@2 7 echo "\"$i\" -> \"$fixed\""
nuclear@2 8 mv "$i" "$fixed"
nuclear@2 9 fi
nuclear@2 10 done