Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 510 Bytes

找出文本中含有'linux'的行,如何统计共有多少行.md

File metadata and controls

25 lines (23 loc) · 510 Bytes

找出文本中含有'linux'的行,如何统计共有多少行

准备一个文本文件 1.txt

[root@VM_12_22_centos /]# cat 1.txt
linux fdjalfd
fjdlsfjdlal linux linux fdlaj
fdjaljf
fdjal
fdjal linuxlinuxfjdla
fjadl

找出文本中含有'linux'的行

[root@VM_12_22_centos /]# cat 1.txt | grep 'linux'
linux fdjalfd
fjdlsfjdlal linux linux fdlaj
fdjal linuxlinuxfjdla

统计文本中含有'linux'的行数

[root@VM_12_22_centos /]# cat 1.txt | grep 'linux' | wc -l
3