标签:提示 子目录 name 当前目录 str 作用 例子 -name 指定
作用:
查找指定路径下目录/文件,包括子目录
使用:
find [路径] -name “内容"
例子:
# 查找当前目录下的py文件
find -name "*.py"
提示:
如省略路径,则在当前目录下查找
可使用通配符
find命令
原文地址:https://www.cnblogs.com/Selling-fish-bears/p/10327829.html