Watchman: Execute a command when something changes
51–60 of 98 posts
Re: Watchman: Execute a command when something changes
#52For those use-cases I use entr ( https://github.com/clibs/entr ). In what sense does watchman differ to it? Didn't see anything related to this at first glance :-)
Re: Watchman: Execute a command when something changes
#53What does this add to inotifywait? That does exactly the same as this project, which uses inotifywait to reimplement inotifywait. For example: dnf install inotify-tools or apt-get install inotify-tools
Not super useful, but not useless.
Re: Watchman: Execute a command when something changes
#54I understand this is shell script territory, but a cross-platform tool would be ideal.
Re: Watchman: Execute a command when something changes
#55Re: Watchman: Execute a command when something changes
#56Not to be confused with Facebook’s file watch daemon, also names watchman, which does the same sort of thing but is more complicated. There’s a bunch of tools that integrate Facebook’s watchman for more efficient change tracking. Advantages of Facebook’s watchman: 1. Implements efficient file system event watches on macOS and Windows 2. IPC/daemon system reduces resource use because overlapping watches/triggers don’t…
Re: Watchman: Execute a command when something changes
#57Not to be confused with Facebook’s file watch daemon, also names watchman, which does the same sort of thing but is more complicated. There’s a bunch of tools that integrate Facebook’s watchman for more efficient change tracking. Advantages of Facebook’s watchman: 1. Implements efficient file system event watches on macOS and Windows 2. IPC/daemon system reduces resource use because overlapping watches/triggers don’t…
Also support for other OS's - like Windows.
Re: Watchman: Execute a command when something changes
#58Not to be confused with Facebook’s file watch daemon, also names watchman, which does the same sort of thing but is more complicated. There’s a bunch of tools that integrate Facebook’s watchman for more efficient change tracking. Advantages of Facebook’s watchman: 1. Implements efficient file system event watches on macOS and Windows 2. IPC/daemon system reduces resource use because overlapping watches/triggers don’t…
If you sign up for notifications on both github projects, you can watch the watchmen.
Re: Watchman: Execute a command when something changes
#59Uses rust for performance, and is usable from the terminal or from python.