Home
»
Linux
» 一些有用的 Linux 命令
Updated 2017-04-17
一些有用的 Linux 命令
递归查找目录中文件的文本
find <folder> -type f -name <pattern> -print0 | xargs -0 grep <text>