#!/bin/bash

for f in $*; do 
  g=`echo $f | tr A-Z a-z`
  echo mv $f $g
done
