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