欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Linux】grep常见用法

程序员文章站 2024-02-23 17:26:22
...

在文件中查找匹配模式的行,假设文件内容为:

123
hello
hello world
hello
hello world
666
fine
grep "hello world" /home/user/1.txt     // 匹配到一行
grep [0-9] /home/user/1.txt             // 匹配到两行


在多个文件中查找

grep "match_pattern" file_1 file_2 file_3 ...


输出包含匹配字符串的行数 -n,从 1 开始:

# grep -n "hello world" 1.txt 
3:hello world
5:hello world

统计包含匹配字符串的总行数:

# grep -c "hello world" 1.txt 
2

在多个文件中搜索并输出匹配到的文件:

grep -l "text" file1 file2 file3...

在多级目录中对文本进行递归搜索:

grep "text" . -r -n

忽略匹配样式中的字符大小写:

echo "hello world" | grep -i "HELLO"
hello

静默查找:不会输出任何信息,如果命令运行成功返回 0,失败则返回非 0 值。一般用于条件测试。

grep -q "test" 1.txt