watcher
watcher copied to clipboard
watcher is a Go package for watching for files or directory changes without using filesystem events.
It would be nice if there is an option to terminate the previous invocation of the command when the command is still executing and a file changes. This would be...
This pull request allows the use of a json config file as an alternative to command line flags. This can be useful if you want to commit and share your...
When I modify multiple files in one shot (such as using "save all" in an IDE), multiple events are fired and the command is executed for each event. It would...
Also, is it possible to add a new item to Event, like Source, so we can know which watch item in names related to the event.
Currently the`-cmd` script is run once for each event, even when `-pipe=true` is specified. It would be great if there were an option to send all events from a single...
I'm not sure if this is an underlying fsevents issue/bug or what, but if using recursive paths, when a file is removed an event is triggered, when using a specific...
Potential fix for: https://github.com/radovskyb/watcher/issues/121
**Describe the bug** A clear and concise description of what the bug is. I changed a file which was observed by fsNotify and then the error occured: ``` fatal error:...
Hi, fantastic package, much appreciated. Couple of things I have noticed with latest version 1.0.7 I am using Arch Linux 1. The *Remove* event is not fired. 2. The *FilterOps*...
Hello, I am watching 5 events - create, write, remove, rename, move and I am performing below sample move command on Ubuntu - mv I am watching source directory and...