mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 25 Sep 2015 17:39:02 +0100
changeset 331 a2c18456c6b7
parent 322 698ed1c96cd0
child 332 4755ad4b457b
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

subdirs="slides handouts hws coursework" 

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