mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Wed, 08 Jul 2015 14:36:12 +0100
changeset 374 7d8ad963ad24
parent 358 8787c16bc26e
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