diff --git a/watch.sh b/watch.sh new file mode 100755 index 0000000..f244c53 --- /dev/null +++ b/watch.sh @@ -0,0 +1,5 @@ +#!/usr/bin/env bash + +while inotifywait -e modify -r --include ".+?\.rst" .; do + make html +done