mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 09 Apr 2015 07:42:23 +0100
changeset 322 698ed1c96cd0
parent 318 7975e4f0d4de
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