Files
Quake/QW/fixskins.sh

9 lines
104 B
Bash

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