Fájlnevek kisbetűssé alakítása

Bash script:

#!/bin/bash
for filename in *
do
   n=`echo $filename | tr '[:upper:]' '[:lower:]'`
   mv $filename $n
done    


What doesn't kill you makes you smaller (Super Mario)