mk
author Christian Urban <urbanc@in.tum.de>
Thu, 15 Dec 2016 14:26:43 +0000
changeset 501 0d40d1f973e0
parent 385 b7d055cf16e8
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