#!/bin/sh
### fix UTF-8 contaminated files etc.
### install konwert package
### Execute this command in source directory as such: (Italian)
### ../bin/isofix it
for xx in *.sgml ; do mv $xx $xx.org ; done
for xx in *.sgml.org ; do konwert any/${1}-iso1 $xx -o ${xx%%\.org} ; done
rm -f *.sgml.org
