mk
author cu
Mon, 02 Oct 2017 10:02:48 +0100
changeset 541 5cd1865d45bd
parent 518 e1fcfba63a31
permissions -rwxr-xr-x
updated

#!/bin/sh
set -e

subdirs=${1:-"slides handouts hws coursework"} 
#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