Miscellaneous
Convert recursively all files in utf-8
find . -type f -exec iconv -f ISO-8859-1 -t UTF-8 {} -o {}.utf8 \;
find . -type f -name '*.properties' -exec sh -c 'file="$0"; iconv -f ISO-8859-1 -t UTF-8 -o "$file.new" "$file" && mv -f "$file.new" "$file"' {} ';'