fswatch
fswatch ist ein kleines Programm, das die Mac OS X FSEvents-API zum Überwachen eines Verzeichnisses verwendet. Wenn ein Ereignis über eine Änderung in diesem Verzeichnis empfangen wird, wird der angegebene Shell-Befehl von ausgeführt/bin/bash
Wenn Sie mit GNU / Linux arbeiten,
bietet inotifywatch (Teil des
inotify-tools
Pakets bei den meisten Distributionen) ähnliche Funktionen.
Update: fswatch
Kann jetzt auf vielen Plattformen verwendet werden, einschließlich BSD, Debian und Windows.
Syntax / Ein einfaches Beispiel
Die neue Methode, mit der mehrere Pfade überwacht werden können - für Versionen 1.x und höher :
fswatch -o ~/path/to/watch | xargs -n1 -I{} ~/script/to/run/when/files/change.sh
Hinweis: Die von ausgegebene Nummer -o
wird am Ende des xargs
Befehls hinzugefügt, wenn nicht für -I{}
. Wenn Sie diese Nummer verwenden möchten, platzieren Sie sie an einer {}
beliebigen Stelle in Ihrem Befehl.
Der ältere Weg für Versionen 0.x :
fswatch ~/path/to/watch ~/script/to/run/when/files/change.sh
Installation mit Homebrew
Ab dem 12.9.13 wurde es wieder zu Homebrew hinzugefügt - yay! Aktualisieren Sie also Ihre Formelliste ( brew update
) und alles, was Sie tun müssen, ist:
brew install fswatch
Installation ohne Homebrew
Geben Sie diese Befehle ein Terminal.app
cd /tmp
git clone https://github.com/alandipert/fswatch
cd fswatch/
make
cp fswatch /usr/local/bin/fswatch
Wenn Sie keinen c
Compiler auf Ihrem System haben, müssen Sie möglicherweise Xcode- oder Xcode-Befehlszeilentools installieren - beide kostenlos. Wenn dies jedoch der Fall ist, sollten Sie sich wahrscheinlich nur Homebrew ansehen .
Zusätzliche Optionen für fswatch
Version 1.x.
Usage:
fswatch [OPTION] ... path ...
Options:
-0, --print0 Use the ASCII NUL character (0) as line separator.
-1, --one-event Exit fsw after the first set of events is received.
-e, --exclude=REGEX Exclude paths matching REGEX.
-E, --extended Use exended regular expressions.
-f, --format-time Print the event time using the specified format.
-h, --help Show this message.
-i, --insensitive Use case insensitive regular expressions.
-k, --kqueue Use the kqueue monitor.
-l, --latency=DOUBLE Set the latency.
-L, --follow-links Follow symbolic links.
-n, --numeric Print a numeric event mask.
-o, --one-per-batch Print a single message with the number of change events.
in the current batch.
-p, --poll Use the poll monitor.
-r, --recursive Recurse subdirectories.
-t, --timestamp Print the event timestamp.
-u, --utc-time Print the event time as UTC time.
-v, --verbose Print verbose output.
-x, --event-flags Print the event flags.
See the man page for more information.