Konvertiert alle Dateien rekursiv unterhalb des aktuellen Verzeichnisses von Latin1 (iso-8859-1) nach utf8

ConvertIsoCharset.script

convmv -f iso-8859-1 -t utf8 -i -r --notest $1
 
#       -f ENCODING
#           specify the current encoding of the filename(s) from which should
#           be converted
#
#       -t ENCODING
#           specify the encoding to which the filename(s) should be converted
#
#       -i  interactive mode (ask y/n for each action)
#
#       -r  recursively go through directories
#
#       --notest
#           Needed to actually rename the files. By default convmv will just
#           print what it wants to do.