#!/bin/bash
#
# Tidy one XML file
#
if [ -z "$1" ]; then
	echo "Usage $0 <file to tidy>"
	exit
fi

if [ ! -r $1 ]; then
	echo "Cant find $1"
	exit
fi

xsltproc xslt/clean-entitydescriptor.xsl $1 > $1.c && mv $1.c $1