How to find the files recursively having a text pattern excluding some directories and files
本问题已经有最佳答案,请猛点这里访问。
如何递归地查找文本模式不包括某些目录和文件的文件?
1 2 3 | Example:- $ ls bower.json bower_components configure results unit-tests |
所以我需要在除bower.json和results之外的所有目录中递归地查找"searchtext"。
解决方案:短了 </P >
1 | grep -r --exclude="bower.json" --exclude-dir="results""searchText" |