mk
author Christian Urban <urbanc@in.tum.de>
Wed, 10 May 2017 17:03:21 +0100
changeset 491 7a0182c66403
parent 332 4755ad4b457b
child 630 3cea57c5501f
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

subdirs=${1:-"slides handouts hws coursework"} 

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