mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 01 May 2015 21:30:13 +0100
changeset 326 94700593a2d5
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