linux查询文件或者文件夹

查找目录:find /(查找范围) -name '查找关键字' -type d

// 查找fastdfs_storage_data文件夹
find / -name fastdfs_storage_data -type d

 

查找文件:find /(查找范围) -name 查找关键字 

// 查找以587.png结尾的文件
find /
-name "*587.png"

 

  

posted @ 2021-08-31 11:30  云村的王子  阅读(795)  评论(0编辑  收藏  举报