fswatch
fswatchは、Mac OS X FSEvents APIを使用してディレクトリを監視する小さなプログラムです。そのディレクトリへの変更に関するイベントを受け取ると、指定されたシェルコマンドが/bin/bash
GNU / Linuxを使用している場合、
inotifywatch(inotify-tools
ほとんどのディストリビューションのパッケージの一部
)が同様の機能を提供します。
更新: fswatch
BSD、Debian、Windowsを含む多くのプラットフォームで使用できるようになりました。
構文/簡単な例
複数のパスを監視できる新しい方法- バージョン1.x以降の場合:
fswatch -o ~/path/to/watch | xargs -n1 -I{} ~/script/to/run/when/files/change.sh
注:によって出力されない場合-o
、出力される数値はxargs
コマンドの最後に追加され-I{}
ます。その番号を使用する場合{}
は、コマンドの任意の場所に配置してください。
バージョン0.xの古い方法:
fswatch ~/path/to/watch ~/script/to/run/when/files/change.sh
Homebrewによるインストール
2013年9月12日の時点で、自作に追加されました。したがって、数式リスト(brew update
)を更新すると、次の操作を行うだけです。
brew install fswatch
Homebrewを使用しないインストール
次のコマンドを入力します Terminal.app
cd /tmp
git clone https://github.com/alandipert/fswatch
cd fswatch/
make
cp fswatch /usr/local/bin/fswatch
c
システムにコンパイラがない場合は、XcodeまたはXcodeコマンドラインツールをインストールする必要があります。どちらも無料です。ただし、その場合は、おそらく自作をチェックする必要があります。
fswatch
バージョン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.