标签:roo root 常用选项 文本 vmax max nbsp 显示 区分
grep命令在文本中搜索指定的内容。
grep命令的常用选项
搜索内容
[root@vmax0105 test_shell]# grep "abc" file
abc
abc123
123abc
搜索内容并显示行号
[root@vmax0105 test_shell]# grep -n "abc" file
1:abc
2:abc123
3:123abc
精准匹配
[root@vmax0105 test_shell]# grep -w "abc" file abc
查询abc开头的行
[root@vmax0105 test_shell]# grep "^abc" file abc abc123
查询abc结尾的行
[root@vmax0105 test_shell]# grep "abc$" file abc 123abc
显示不包含匹配文本的所有行
[root@vmax0105 test_shell]# grep -v "abc" file 123
显示匹配到的内容的行数
[root@vmax0105 test_shell]# grep -c "abc" file 3
标签:roo root 常用选项 文本 vmax max nbsp 显示 区分
原文地址:https://www.cnblogs.com/lfjn/p/11420662.html