如何在 Linux 中使用管道连接两个 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()" *
上面的命令将尝试在特定目录以及子目录中的所有文件中查找字符串“func main()”。
输出
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 命令,颜色也将不会保留。
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
广告