如何以递归方式查找具有排除某些目录和文件的文本模式的文件

时间:2017-08-04 06:22:11

标签: bash shell sh

如何以递归方式查找文件模式,不包括某些目录和文件?

Example:- 
$ ls
bower.json      bower_components    configure       results         unit-tests

所以我需要找到" searchText"递归地在除bower.json和结果

之外的所有目录中

1 个答案:

答案 0 :(得分:4)

grep 解决方案:

grep -r --exclude="bower.json" --exclude-dir="results" "searchText"