Files
2022-06-14 14:23:17 -07:00

5 lines
93 B
Bash
Executable File

#!/bin/sh
dir1="./source"
while inotifywait -qqre modify "$dir1"; do
make clean html
done