linux 上查找包含特定文本的所有文件
2021/11/25 7:10:32
本文主要是介绍linux 上查找包含特定文本的所有文件,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
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
微信公众号:入门小站
这篇关于linux 上查找包含特定文本的所有文件的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南