查找并列出包含/不包含特定字符串的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查找并列出包含/不包含特定字符串的文件相关的知识,希望对你有一定的参考价值。
Find and List all the files with extension .file containing/not containing the given string "STRING"The snippet is set to "containing", to switch it to "not containg" just replace "grep -l" with "grep -L"
containing : grep -l
not containing: grep -L
find . -type f -name "*.file" | xargs grep -l "STRING"
以上是关于查找并列出包含/不包含特定字符串的文件的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 gsutil 命令列出 gcs 存储桶中的所有文件(包含所有文件夹)以匹配文件内容中的特定字符串