find命令

作用:

  查找指定路径下目录/文件,包括子目录

使用:

  find [路径] -name “内容"

例子:

  # 查找当前目录下的py文件

  find -name "*.py"

提示:

  如省略路径,则在当前目录下查找

  可使用通配符

原文地址:https://www.cnblogs.com/Selling-fish-bears/p/10327829.html