mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 17 Apr 2015 04:56:30 +0100
changeset 324 6cb517754d8a
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