fsevent_watch

Monitor macOS directories for file system changes in real-time.

brewmacoslinux
Try with needOr install directly
Source

About

macOS FSEvents client

Commands

fsevent_watch

Examples

watch a folder for any file changes$ fsevent_watch /path/to/directory
monitor multiple directories at once$ fsevent_watch /path/one /path/two /path/three
run a command whenever files change$ fsevent_watch /path/to/project -- npm run build
watch current directory and print file events$ fsevent_watch . --verbose
trigger script when files are modified in source folder$ fsevent_watch ./src -- ./rebuild.sh