fswatch
fswatch adalah program kecil menggunakan Mac OS X FSEvents API untuk memantau direktori. Ketika suatu peristiwa tentang perubahan apa pun ke direktori itu diterima, perintah shell yang ditentukan dijalankan oleh/bin/bash
Jika Anda menggunakan GNU / Linux,
inotifywatch (bagian dari
inotify-tools
paket di sebagian besar distribusi) menyediakan fungsionalitas serupa.
Pembaruan: fswatch
sekarang dapat digunakan di banyak platform termasuk BSD, Debian, dan Windows.
Sintaks / Contoh Sederhana
Cara baru yang dapat menonton banyak jalur - untuk versi 1.x dan lebih tinggi :
fswatch -o ~/path/to/watch | xargs -n1 -I{} ~/script/to/run/when/files/change.sh
Catatan: Angka keluaran oleh -o
akan ditambahkan ke akhir xargs
perintah jika bukan untuk -I{}
. Jika Anda memilih untuk menggunakan nomor itu, letakkan {}
di mana saja dalam perintah Anda.
Cara yang lebih lama untuk versi 0.x :
fswatch ~/path/to/watch ~/script/to/run/when/files/change.sh
Instalasi dengan Homebrew
Pada 9/12/13 ditambahkan kembali ke homebrew - yay! Jadi, perbarui daftar rumus Anda ( brew update
) dan kemudian yang perlu Anda lakukan adalah:
brew install fswatch
Instalasi tanpa Homebrew
Ketik perintah ini di Terminal.app
cd /tmp
git clone https://github.com/alandipert/fswatch
cd fswatch/
make
cp fswatch /usr/local/bin/fswatch
Jika Anda tidak memiliki c
kompiler pada sistem Anda, Anda mungkin perlu menginstal alat baris perintah Xcode atau Xcode - keduanya gratis. Namun, jika itu masalahnya, Anda mungkin harus memeriksa homebrew .
Opsi tambahan untuk fswatch
versi 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.