7 lines
71 B
Bash
Executable File
7 lines
71 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
while inotifywait -e modify . ./dot/
|
|
do
|
|
make
|
|
done
|