Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码给出了包含字符串“类型:错误”的日志输出
grep -E "$Currentdate" *.log | grep "Type: Error" | sort -u
什么是代码如果我想获取日志中所有行的输出,除了带有字符串“类型:错误”的行
提前致谢
使用-v选项 grep 可以解决问题。
-v
cat logFile | grep -v "Type: Error"
有了这个,首先,你将显示你的文件,然后你将使用-v反转匹配的选项,然后技巧就完成了!
对于多个字符串,你可以做这样的事情
cat logFile | egrep -v '(firstString)|(secondString)|(thirdString)|...|(nString)'