Please enable JavaScript in your browser!
Home
Esplora
Aiuto
Accedi
id-Software
/
Quake
mirror da
https://github.com/id-Software/Quake
Segui
2
Vota
0
Forka
0
File
Problemi
0
Wiki
Ramo (Branch):
master
Rami (Branch)
Tag
master
Quake
/
QW
/
fixskins.sh
fixskins.sh
104 B
Permalink
Cronologia
Originale
1
2
3
4
5
6
7
8
9
#!/bin/sh
for x in *; do
y=`echo $x | tr '[A-Z]' '[a-z]'`
if [ $x != $y ]; then
mv $x $y
fi
done