grep进行多文件搜索如何抑制文件名的输出

32次阅读

共计 163 个字符,预计需要花费 1 分钟才能阅读完成。

微信公众号:51 码农网
专业编程问答社区
www.51manong.com

1. 使用 - h 参数

[root@ky35z 51mn]# grep -h  '[bg]zip' *.txt
gzip
bzip

2. 使用参数 - -no-filename

[root@ky35z 51mn]# grep --no-filename '[bg]zip' *.txt
gzip
bzip

正文完
 0