📌  相关文章
📜  如何在 linux 中搜索目录中的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:49.396000             🧑  作者: Mango

代码示例1
# this will search all subdirectories for text (no case sensitivity)
grep -inR "your text" .
# Node: this command will search for text INSIDE Files, not file names