如何让fswatch在文件更改时运行shell脚本?

时间:2017-01-12 18:43:59

标签: linux macos shell watch

我已阅读过文档,但我无法按预期工作。 我想在fswatch检测到更改时启动脚本。 当我打开详细模式时,我会在日志中看到检测到更改:

def checkGrouping(s, row, col):
    if row in memberships.keys() and col in memberships.keys():
        return memberships[row].intersection(set(memberships[col]))
    else:
        return np.nan

我尝试了不同的变种,但似乎没有任何效果。 如果我只想在发生更改时列出某个文件夹,比如这个?

,该怎么办?
notify_events: Notifying events #: 3.

请分享一个工作示例,了解如何运行shell脚本。 谢谢!

1 个答案:

答案 0 :(得分:0)

试试这个

fswatch -v ./src/**/*.go | while IFS= read -r line
    ls ./src
done