写点什么

linux 上查找包含特定文本的所有文件

作者:入门小站
  • 2021 年 11 月 24 日
  • 本文字数:516 字

    阅读完需:约 2 分钟

grep

> grep -rnw '/path/to/somewhere/' -e 'pattern'
复制代码


  • -r 或者-R 是递归的,

  • -n 是行号,并且

  • -w 代表匹配整个单词。

  • -l (小写 L) 可以添加只给出匹配文件的文件名。

  • -e 是搜索过程中使用的模式


除了这些, --exclude, --include,--exclude-dir 标志可用于高效搜索:

只搜索那些具有 .c 或 .h 扩展名的文件

> grep --include=\*.{c,h} -rnw '/path/to/somewhere/' -e "pattern"
复制代码

排除搜索所有以 .o 扩展名结尾的文件:

> grep --exclude=\*.o -rnw '/path/to/somewhere/' -e "pattern"
复制代码

对于目录,可以使用--exclude-dir 参数排除一个或多个目录。例如,这将排除目录dir1/dir2/ 以及所有与*.dst/ 匹配的目录

> grep --exclude-dir={dir1,dir2,*.dst} -rnw '/path/to/somewhere/' -e "pattern"
复制代码

ack

> awk "/root/" /etc/passwd
复制代码

find

> find / -type f -exec grep -l "rumenz" {} \; > find . -name "*.txt" | xargs grep -i "rumenz"
复制代码

别名一个 ffind

在~/.bashrc 文件中


> alias ffind find / -type f | xargs grep
复制代码


启动一个新终端


> ffind 'rumenz'
复制代码

ack-grep

> ack-grep "rumenz"
复制代码

ack

> ack -i rumenz doc/*
复制代码

git 存储库中查找

> git grep "rumenz"
复制代码


原文链接:https://rumenz.com/rumenbiji/linux-find-strings.html

微信公众号:入门小站

发布于: 2021 年 11 月 24 日阅读数: 4
用户头像

入门小站

关注

还未添加个人签名 2020.01.18 加入

还未添加个人简介

评论

发布
暂无评论
linux 上查找包含特定文本的所有文件