mk
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 11 Dec 2014 23:51:08 +0000 (2014-12-11)
changeset 351 cd8d18f7b7ac
parent 345 7f0ac1355f0b
child 358 8787c16bc26e
permissions -rwxr-xr-x
updated
#!/bin/sh

subdirs="slides handouts hws" 

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