我需要一个脚本来运行一系列tail -f
命令并将它们输出到一个文件中。我需要的是tail -f
运行一段时间来 grep 特定的单词。这是一定时间的原因是因为其中一些值不会立即显示,因为这是一个实时日志。
我怎样才能运行这样的东西让我们说 20 秒,输出 grep 命令,然后继续执行下一个命令?
tail -f /example/logs/auditlog | grep test
谢谢
timeout 20 tail -f /example/logs/auditlog | grep test
tail -f /example/logs/auditlog | grep test &
pid=$!
sleep 20
kill $pid
那这个呢:
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