diff options
Diffstat (limited to 'bin/dw')
| -rwxr-xr-x | bin/dw | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -1,10 +1,6 @@ #!/bin/sh # Execute given command when current dir content changes. -# -trap exit SIGINT -while true; do - fswatch -1 . >/dev/null 2>&1 - "$@" -done +trap exit SIGINT +while true; do "$@"; fswatch -1 . >/dev/null 2>&1; done |
