nixite/testing/watch.nix
2024-01-02 08:51:27 +00:00

11 lines
187 B
Nix

pkgs: cmd: pname:
pkgs.writeShellScriptBin "watch" ''
while true
do
${cmd} &
${pkgs.inotify-tools}/bin/inotifywait -e modify -r . --exclude .git
pkill ${pname}
done
''