enterprise-presentation/watch.sh

13 lines
217 B
Bash
Raw Normal View History

2020-02-25 05:51:39 +00:00
#!/bin/bash
# https://unix.stackexchange.com/a/107405
trap killgroup SIGINT
killgroup() {
echo Stopping...
kill 0
}
watchexec -w dot -e dot "dot -Tpng -O dot/*.dot" &
watchexec -e tex "tectonic main.tex" &
wait