fswatch
fswatch to mały program wykorzystujący interfejs API Mac OS X FSEvents do monitorowania katalogu. Po odebraniu zdarzenia dotyczącego jakiejkolwiek zmiany w tym katalogu, określone polecenie powłoki jest wykonywane przez/bin/bash
Jeśli korzystasz z systemu GNU / Linux,
inotifywatch (część
inotify-tools
pakietu w większości dystrybucji) zapewnia podobną funkcjonalność.
Aktualizacja: fswatch
można teraz używać na wielu platformach, w tym BSD, Debian i Windows.
Składnia / prosty przykład
Nowy sposób, w jaki można oglądać wiele ścieżek - dla wersji 1.xi nowszych :
fswatch -o ~/path/to/watch | xargs -n1 -I{} ~/script/to/run/when/files/change.sh
Uwaga: Liczba wyjściowa przez -o
zostanie dodana na końcu xargs
polecenia, jeśli nie dla -I{}
. Jeśli zdecydujesz się użyć tego numeru, umieść {}
dowolne miejsce w swoim poleceniu.
Starszy sposób na wersje 0.x :
fswatch ~/path/to/watch ~/script/to/run/when/files/change.sh
Instalacja z Homebrew
Od 9.12.2013 został ponownie dodany do homebrew - tak! Zaktualizuj więc listę formuł ( brew update
), a wszystko, co musisz zrobić, to:
brew install fswatch
Instalacja bez Homebrew
Wpisz te polecenia w Terminal.app
cd /tmp
git clone https://github.com/alandipert/fswatch
cd fswatch/
make
cp fswatch /usr/local/bin/fswatch
Jeśli nie masz c
kompilatora w systemie, może być konieczne zainstalowanie narzędzi wiersza polecenia Xcode lub Xcode - oba są bezpłatne. Jeśli tak jest, prawdopodobnie powinieneś po prostu sprawdzić homebrew .
Dodatkowe opcje dla fswatch
wersji 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.