summaryrefslogtreecommitdiffstats
path: root/scripts/watch_metadata.sh
blob: 41457e1c8a573757a04e21a8e4be72c1ebd75f83 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/bash

inotifywait -qrme close_write,delete,move --format "%w%f" metadata \
    | while read FILENAME
        do
            scripts/build_content.sh "all_md"
        done