mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Sat, 06 Dec 2014 18:50:58 +0000
changeset 319 e7b110f93697
parent 318 7975e4f0d4de
child 322 698ed1c96cd0
permissions -rwxr-xr-x
updated

#!/bin/sh

subdirs="slides handouts hws coursework" 

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