aboutsummaryrefslogtreecommitdiffstats
path: root/games/doom-hr/scripts/lowercase.sh
blob: 0a61219d046d6746502b4561b40f5bbdb53a6dc5 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh

for x in *; do
    y=`echo $x | tr '[A-Z]' '[a-z]'`
    if [ $x != $y ]; then
        mv $x $y
    fi
done