mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 24 Sep 2015 22:52:10 +0100
changeset 328 bc03ff3d347c
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