linux中find命令的使用详解
2021-12-02 本文已影响0人
10676
常用命令
find (目录) [-type d | f] (文件夹 | 文件) -name (名称,可使用正则表达式)
find /root -name "*core"
find /root -type d -name "*core" 文件夹
find /root -type f -name "*core" 文件
find /root -type f -path "*core" 路径
find /root -name "*core" -delete 查到后删除
find /root -size +20M (-20M) 大于20M(小于20M)
find /root -name "*core" -exec ls {} ; 对查找后的文件执行ls操作
壹——主要内容