tix/testing/watch.nix

11 lines
187 B
Nix
Raw Normal View History

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