#!/bin/sh find . -depth -print0 | while read -d "" old do new=$( echo "$old" | tr -s "ï¿" "Ã" ) [ "$old" = "$new" ] || mv -vb "$old" "$new" done