summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/generic/pst-spirograph/animation/runall.sh
blob: 08fa638fb79dcbeaeb805099ecbb49979044a1ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
set `dir -R *.tex`
for datei in *.tex
do
#  rm -fr *.pdf
  echo -n "Runnning file $datei ... "
  FILE=`basename $datei .tex`
  latex $FILE &> /dev/null
  dvips $FILE &> /dev/null
  ps2pdf $FILE.ps &> /dev/null
  rm -fr $FILE.log $FILE.aux $FILE.ps $FILE.dvi 
  echo " done"
done