要在 linux 中监控文件,我可以像这样使用 inotify-tools
#!/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 中实现这一点?
要在 linux 中监控文件,我可以像这样使用 inotify-tools
#!/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 中实现这一点?
如果你想把它包装成 Python 脚本,你可以使用 Watchdog,它适用于 Linux 和 OSX。
https://pypi.python.org/pypi/watchdog
下面是用看门狗替换 pyinotify 的样子:
https://github.com/raphdg/baboon/commit/2c115da63dac16d0fbdc9b45067d0ab0960143ed
Watchdog 也有一个名为的 shell 实用程序watchmedo
:
watchmedo shell-command \
--patterns="*.py;*.txt" \
--recursive \
--command='echo "${watch_src_path}"' \
.
是的,您可以使用FSEvents API