mk
author Christian Urban <urbanc@in.tum.de>
Tue, 20 Sep 2016 12:24:29 +0100
changeset 422 5deefcc8cffa
parent 332 4755ad4b457b
child 630 9b1c15c3eb6f
permissions -rwxr-xr-x
updated programs

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