mirror of
https://github.com/id-Software/Quake.git
synced 2026-03-19 16:39:38 +01:00
9 lines
104 B
Bash
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
|
|
|