如何在所有 .htaccess 文件中递归地搜索某个字符串?

grep -r -n -H -I 'string' .htaccess

似乎不起作用。

我在 GNU Linux 系统上。

最佳答案

cd 到存储 htaccess 的文件夹之前的文件夹

$find . -name ".htaccess" -exec grep -r -n -H -I 'string' {} \;

关于linux - 在所有 .htaccess 文件中递归地查找字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1225603/

10-15 13:12