#!/bin/bash
# url: http://pank.org/scripts/
# description: rename all files in current directory to lower case
# comment: bash
# platform: all

for f in *
do 
   mv -- "$f" "$(tr [:upper:] [:lower:]<<< "$f")"
done