#!/bin/sh
# Rename ISO filenames to UTF
# Author: Hector Llorens
# This file is copyleft, enjoy!
for arg 
do
newfile=`echo "$arg" | iconv -f ISO-8859-1`;mv "$arg" "$newfile";
done


