📜  linux 查找不包含字符串的文件 - Shell-Bash 代码示例
📅  最后修改于: 2022-03-11 14:49:37.831000             🧑  作者: Mango
代码示例1
# Find all files (here php files) which do not contain the string "somestring"
grep -Li "somestring" *.php