01-07 Linux三剑客-grep
定义
【01-07 Linux三剑客-grep】根据用户指定的模式(pattern),对目标文件进行过滤,显示被漠视匹配到的行
格式:grep [参数] 匹配内容 [文件]
常用参数:
-v
:显示未匹配到的行-i
:忽略大小写-n
:显示匹配的行号-c
:统计匹配的行数-o
:仅显示匹配到的字符串-E
:使用 ERE,相当于egrep
- 显示含有 root 的行,并显示行号
$ cat test
root root hello root
new
new
root
root
leo
kate
hogwart
string
leon
$ grep -n root test
1:root root hello root
4:root
5:root
- 显示不包含 root 的行,并显示行号
$ grep -vn root test
2:new
3:new
6:leo
7:kate
8:hogwart
9:string
10:leon
- 查找以 s 开头的行;查找以 n 结尾的行
$ grep ^s -n test
9:string
$ grep n$ -n test
10:leon
推荐阅读
- Linux下面如何查看tomcat已经使用多少线程
- Beego打包部署到Linux
- Linux|109 个实用 shell 脚本
- linux定时任务contab
- 芯灵思SinlinxA33开发板Linux内核定时器编程
- day16-Linux|day16-Linux 软件管理
- 如何在阿里云linux上部署java项目
- mac|mac 链接linux服务器 如何在Mac上连接服务器
- Linux|Linux 服务器nginx相关命令
- linux笔记|linux 常用命令汇总(面向面试)