使inotifywait将多个文件更新组合成一个?

时间:2012-08-13 08:17:02

标签: shell inotify inotify-tools

我有一个文件夹,其中包含我使用inotifywait(来自inotify-tools)观看的Sphinx文档。该脚本重新构建了html& singlehtml并刷新Chrome。

#!/bin/sh
inotifywait -mr source --exclude _build -e close_write -e create -e delete -e move | while read file event; do
    make html singlehtml
    xdotool search --name Chromium key --window %@ F5
done

保存单个文件时,此工作正常。但是,当我hg update到旧版本或粘贴source文件夹中的多个文件时,它会触发每个文件的脚本。

是否有一个简单的解决方法(无需编写自定义python脚本 - 我可以这样做)让它在触发脚本之前等待一小段时间?

1 个答案:

答案 0 :(得分:5)

我制作了一个更复杂的shell脚本并将其发布在the article

inotifywait -mr source --exclude _build -e close_write -e create -e delete -e move --format '%w %e %T' --timefmt '%H%M%S' | while read file event tm; do
    current=$(date +'%H%M%S')
    delta=`expr $current - $tm`
    if [ $delta -lt 2 -a $delta -gt -2 ] ; then
        sleep 1  # sleep 1 set to let file operations end
        make html singlehtml
        xdotool search --name Chromium key --window %@ F5
    fi
done

它使inotifywait log不仅仅是文件名&行动,但也是时间戳。该脚本将时间戳与当前的unixtime进行比较,如果delta小于2秒,则运行make html。但在此之前它会睡1秒钟让文件操作系统结束。对于下一个修改过的文件,时间戳将是旧的,增量将超过2秒,并且不会执行任何操作。

我发现这种方式消耗的CPU最少且最可靠。

我也试过运行一个简单的Python脚本,但这意味着如果我将一些像jQueryUI这样大的东西粘贴到文件夹中,就会产生一千个进程然后成为僵尸。