linux的inotify工具外殼的方法來監測在linux下一個文件,我可以使用inotify工具類似這樣的如何實現在OSX
#!/bin/bash
# with inotify-tools installed, watch for modification of file passed as first param
while inotifywait -e modify $1; do
# do something here
done
,但我怎麼會在OSX實現這一目標?
這可以在shell腳本中使用嗎? –
不,但是有一個python的包裝庫:http://pypi.python.org/pypi/MacFSEvents/0.2.4 – Baversjo