#!/bin/sh

outext=.html
for file in *.xml
do
  basename=`echo $file | sed "s/.xml//"`
  perl /usr/local/apache/htdocs/legallib/slavery/edits/slaveparse.pl $file > $basename$outext
  echo "creating $basename$outext"
done