linux中find命令的使用详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux中find命令的使用详解相关的知识,希望对你有一定的参考价值。
参考技术A 常用命令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操作
壹——主要内容
以上是关于linux中find命令的使用详解的主要内容,如果未能解决你的问题,请参考以下文章