#!/usr/bin/bash

find . |grep -e ":" > /tmp/uh


cat /tmp/uh|while read x
do 
echo mv \""$x"\" \"`echo "$x"|sed 's/:/./g'`\" 
done
rm /tmp/uh
