sudo fs_usage -w | while true; do
if read -rt5 && [[ $REPLY =~ objectpattern ]]; then
# Some output happened in the last 5 seconds that matches object pattern
:
else
touch objectfile
fi
done
Naturalmente, usar read -t
significa que existe a possibilidade de haver alguma saída não correspondente a objectpattern
; se isso acontecer, o arquivo será tocado. Se você quiser evitar isso, temos que ficar um pouco mais sofisticados.
timeout=5
sudo fs_usage -w | while true; do
(( mark = SECONDS + timeout ))
if !read -rt$timeout; then
touch objectfile
timeout=5
elif ![[ $REPLY =~ objectpattern ]]; then
# Some output happened within timeout seconds that does _not_ match.
# Reduce timeout by the elapsed time.
(( timeout = mark - SECONDS ))
if (( timeout < 1 )); then
touch objectfile
timeout=5
fi
else
timeout=5
fi
done