blob: 7a548d761da437c16b6033c274e28298ffaa4a6a [file] [log] [blame]
#!/bin/bash
for file in $(find queue-* -type f | grep patch); do
ISO=$(file "${file}" | grep ISO)
if [ "${ISO}" != "" ] ; then
echo "Converting ${file}"
tmpfile=$(mktemp convert-XXXXX || exit 1)
iconv -c --to-code=UTF-8//TRANSLIT "${file}" > "${tmpfile}"
mv "${tmpfile}" "${file}"
fi
done