#! /bin/sh
for f in $*; do
  if test -f $f; then
    /usr/bin/xslttransform $f /usr/lib/xml/changestylesheet.xsl > /tmp/tmp$$
    mv /tmp/tmp$$ $f
  fi
done
