mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Wed, 05 Aug 2015 09:52:50 +0200
changeset 377 fed7ce62b6d6
parent 358 8787c16bc26e
child 385 b7d055cf16e8
permissions -rwxr-xr-x
typos

#!/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