#!/bin/bash
for f in ./doc/*.ps; do
    rm -f $f
done
rm ./doc/*.bib
rm ./doc/*.sty
exit 0