mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Fri, 25 Sep 2015 17:37:07 +0100
changeset 385 b7d055cf16e8
parent 358 8787c16bc26e
child 518 e1fcfba63a31
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

#subdirs="slides handouts hws"
subdirs="hws"

echo $subdirs

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