当前位置:  开发笔记 > 编程语言 > 正文

当文本行出现在文件中时,如何使用Bash执行某些操作

如何解决《当文本行出现在文件中时,如何使用Bash执行某些操作》经验,为你挑选了2个好方法。

我想在日志文件中出现某个文本时立即运行命令.我怎么用Bash做到这一点?



1> ketorin..:

使用命令

tail -f file.log | grep --line-buffered "my pattern" | while read line
do
  echo $line
done

--line-buffered是关键,否则读取将失败.



2> Bruno De Fra..:

仅使用tail:

tail -f file.log | while read line; do if [[ $line == *text* ]]; then
    mycommand
fi; done

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有