使用
egrep
在压缩文件中查找扩展正则表达式模式。 更多信息:https://www.unix.com/man-page/freebsd/1/zegrep/.
?
, +
, {}
, ()
和 |
),区分大小写:zegrep "{{搜索模式}}" {{路径/到/文件}}
?
, +
, {}
, ()
和 |
),忽略大小写:zegrep --ignore-case "{{搜索模式}}" {{路径/到/文件}}
zegrep --invert-match "{{搜索模式}}" {{路径/到/文件}}
zegrep --with-filename --line-number "{{搜索模式}}" {{路径/到/文件}}
zegrep --only-matching "{{搜索模式}}" {{路径/到/文件}}
zegrep --recursive "{{搜索模式}}" {{路径/到/文件}}