From 82edda96ef68a4e4d0695fe1e056b609fdd83074 Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Thu, 19 Mar 2026 16:57:18 -0400 Subject: hello, world --- watch_and_host.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 watch_and_host.sh (limited to 'watch_and_host.sh') diff --git a/watch_and_host.sh b/watch_and_host.sh new file mode 100755 index 0000000..a5dd265 --- /dev/null +++ b/watch_and_host.sh @@ -0,0 +1,8 @@ +#! /bin/bash + +python -m http.server & + +inotifywait -e modify,create,delete -r . -m \ +| while read; do + ./compile.sh +done -- cgit v1.3-2-g0d8e