一些有用的 linux 命令

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