将日志文件里的含有关键词的行提取到文件 filter.log
关键词
filter.log
cat app.log | grep -v '关键词' > filter.log
如果想精确字符串匹配不用正则,则:
cat app.log | grep -F '关键词' > filter.log