find . -name "*[#:|]*" |while read x
do
old=`echo "${x}"`
new=`echo "${x}"|sed 's/[#:|]/_/g'`
mv "$old" "$new"
# ls "$new" || echo ERROR $new
done
