mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 05 Dec 2014 01:00:34 +0000
changeset 317 a61b50c5d57f
child 318 7975e4f0d4de
permissions -rwxr-xr-x
updated all

#!/bin/sh

subdirs="slides hws slides coursework handouts" 

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