mk
author Christian Urban <urbanc@in.tum.de>
Thu, 21 Nov 2019 00:49:21 +0000
changeset 696 3a5a7908517f
parent 630 9b1c15c3eb6f
child 752 c0bdd4ad69ca
permissions -rwxr-xr-x
added krakatau version and made the mandel program work

#!/bin/sh
set -e

subdirs=${1:-"slides handouts hws coursework"} 

for sd in $subdirs; do
  cd $sd
  for fl in *.tex; do
     echo $fl 
     xelatex $fl | pr -to4
  done
  cd ..
done