在 Linux 中通过管道 grep 到 grep 后如何保留颜色?
为了在grep到grep命令之间使用管道后能够保留着色,我们必须首先了解grep命令是什么以及如何在Linux上使用它。
Linux中的grep命令用于过滤文件中特定字符模式的搜索。它是最常用的Linux实用程序命令之一,用于显示包含我们尝试搜索的模式的行。
通常,我们尝试在文件中搜索的模式称为正则表达式。
语法
grep [options] pattern [files]
虽然我们有很多不同的选择,但最常用的是-
-c : It lists only a count of the lines that match a pattern -h : displays the matched lines only. -i : Ignores, case for matching -l : prints filenames only -n : Display the matched lines and their line numbers. -v : It prints out all the lines that do not match the pattern
现在,让我们考虑一种情况,我们希望在特定目录的所有文件中找到特定模式,比如dir1。
语法
grep -rni "word" *
在上面的命令中,将“word”占位符替换为
为此,我们使用如下所示的命令-
grep -rni "func main()" *
上面的命令将尝试main()在特定目录和子目录中的所有文件中查找字符串“func”。
输出结果
main.go:120:func main() {}
如果我们只想在单个目录中而不是在子目录中找到特定模式,那么我们需要使用如下所示的命令-
grep -s "func main()" *
考虑下面显示的由三个数字组成的简单文件的输出。
immukul@192 dir1 % cat bar 11 12 13
现在,当我们在上述文件中使用grep命令(grep-e'1'*)时,输出将不会被着色。
immukul@192 dir1 % grep -e '1' * 11 12 13
现在,如果我们使用一个grep和一个grep中间有一个管道,颜色也不会在那里。
immukul@192 dir1 % grep -e '1' * | grep -ve '12' 11 13
我们可以使用下面显示的命令来确保保留颜色。
命令
grep -e '1' * | grep -ve '12' | grep -e '1' --color=always输出结果
immukul@192 dir1 % grep -e '1' * | grep -ve '12' | grep -e '1' --color=always 11 13