mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Sat, 20 Dec 2014 00:24:59 +0000
changeset 358 8787c16bc26e
parent 345 7f0ac1355f0b
child 385 b7d055cf16e8
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

subdirs="slides handouts hws" 

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