4

我需要一个脚本来运行一系列tail -f命令并将它们输出到一个文件中。我需要的是tail -f运行一段时间来 grep 特定的单词。这是一定时间的原因是因为其中一些值不会立即显示,因为这是一个实时日志。

我怎样才能运行这样的东西让我们说 20 秒,输出 grep 命令,然后继续执行下一个命令?

tail -f /example/logs/auditlog | grep test

谢谢

4

3 回答 3

17
timeout 20 tail -f /example/logs/auditlog | grep test
于 2013-05-03T22:49:21.857 回答
4
tail -f /example/logs/auditlog | grep test &
pid=$!
sleep 20
kill $pid
于 2013-05-03T22:38:24.753 回答
0

那这个呢:

for (( N=0; $N < 20 ; N++)) ; do tail -f /example/logs/auditlog | grep test ; sleep 1 ; done

编辑:我误读了你的问题,对不起。你想要这样的东西:

tail -f /example/logs/auditlog | grep test
sleep 20
于 2013-05-03T22:26:31.027 回答