小编典典

查找包含给定文本的文件

all

.php|.html|.js在 bash 中,我想为每个包含不区分大小写字符串的类型的文件返回文件名(和文件的路径)"document.cookie" | "setcookie"

我该怎么做?


阅读 62

收藏
2022-07-31

共1个答案

小编典典

egrep -ir --include=*.{php,html,js} "(document.cookie|setcookie)" .

r标志表示递归搜索(搜索子目录)。该i标志表示不区分大小写。

如果您只想要文件名,请添加l(小写L)标志:

egrep -lir --include=*.{php,html,js} "(document.cookie|setcookie)" .
2022-07-31