mk
author Christian Urban <urbanc@in.tum.de>
Mon, 05 Feb 2018 10:58:48 +0000
changeset 547 81eb43c41416
parent 332 4755ad4b457b
child 630 9b1c15c3eb6f
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

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

for sd in $subdirs; do
  cd $sd
  for fl in *.tex; do
     xelatex $fl
  done
  cd ..
done