#!/bin/bash
for file in  *.java
do

iconv -f ISO-8859-15 -t UTF-8 -o "$file" "$file"
done
~          
