mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 27 Nov 2015 12:08:29 +0000
changeset 388 66f66f1710ed
parent 332 4755ad4b457b
child 630 9b1c15c3eb6f
permissions -rwxr-xr-x
added

#!/bin/sh
set -e

subdirs=${1:-"slides handouts hws coursework"} 

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