5
如何找到所有不包含文本字符串的文件?
我可以使用什么简洁的命令来查找所有不包含文本字符串的文件? 我没有运气尝试过这个(使用-v反转grep的参数): find . -exec grep -v -l shared.php {} \; 有人说这行得通: find . ! -exec grep -l shared.php {} \; 但这似乎对我不起作用。 此页面包含以下示例: find ./logs -size +1c > t._tmp while read filename do grep -q "Process Complete" $filename if [ $? -ne 0 ] ; then echo $filename fi done …