Remove temporary .gnu files from plotwells.sh

After running plotwells.sh there are a lot of .gnu files left
over int the directories. This commit removes them at the end of the script.
This commit is contained in:
Markus Blatt 2016-04-21 20:53:22 +02:00
parent c91e0e7bfb
commit 6e5d9778d4

View File

@ -118,5 +118,8 @@ dvipdf article $OUTPUT.pdf
# remove temporary files
rm -f $WELLLISTEX
rm -f $PLOTFILE
for DIR in $DIRS; do
rm -f $DIR/*.gnu
done
rm -f $WELLTEX $OUTPUT.aux $OUTPUT.log $OUTPUT.dvi
find . -name "well-*.eps" -exec rm {} \;