enterprise-presentation/watch.sh

13 lines
217 B
Bash
Executable File

#!/bin/bash
# https://unix.stackexchange.com/a/107405
trap killgroup SIGINT
killgroup() {
echo Stopping...
kill 0
}
watchexec -w dot -e dot "dot -Tpdf -O dot/*.dot" &
watchexec -e tex "tectonic main.tex" &
wait