Linux核心命令—find命令详解_found linux_佞臣888的博客-CSDN博客

网站介绍:find命令是用来在给定的目录下查找符合给定条件的文件  find [OPTIONS] [查找起始路径] [查找条件] [处理动作]   基本参数说明:基本用法:fifind 路径 选项-type #根据文件类型 find /var/log -type f -name "*.log" ;find /var/log -type d-name #根据文件名 find /var/log -type f -name "*.log"-perm #根据文件权限 find /var/log -perm 60_found linux