码迷,mamicode.com
首页 > 系统相关 > 详细

linux find命令详解

时间:2019-08-04 23:46:50      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:lin   sock   name   忽略   and   参数   int   byte   res   

 1 find查找命令
 find命令格式
 find   path   -option   [   -print ]   [ -exec   -ok   command ]   {} \;
 参数:find 根据下列规则判断 path 和 expression,在命令列上第一个 - ( ) , ! 之前的部份为 path,之后的是 expression。如果 path 是空字串则使用目前路径,如果 expression 是空字串则使用 -print 为预设 expression。

expression 中可使用的选项有二三十个之多,在此只介绍最常用的部份。

-mount, -xdev : 只检查和指定目录在同一个文件系统下的文件,避免列出其它文件系统中的文件

-amin n : 在过去 n 分钟内被读取过

-anewer file : 比文件 file 更晚被读取过的文件

-atime n : 在过去n天内被读取过的文件

-cmin n : 在过去 n 分钟内被修改过

-cnewer file :比文件 file 更新的文件

-ctime n : 在过去n天内被修改过的文件

-empty : 空的文件-gid n or -group name : gid 是 n 或是 group 名称是 name

-ipath p, -path p : 路径名称符合 p 的文件,ipath 会忽略大小写

-name name, -iname name : 文件名称符合 name 的文件。iname 会忽略大小写

-size n : 文件大小 是 n 单位,b 代表 512 位元组的区块,c 表示字元数,k 表示 kilo bytes,w 是二个位元组。-type c : 文件类型是 c 的文件。

d: 目录

c: 字型装置文件

b: 区块装置文件

p: 具名贮列

f: 一般文件

l: 符号连结

s: socket

-pid n : process id 是 n 的文件

1 本人最容易忘记,最难理解的
find -path  -a -purne

eq1: 寻找/etc 下除 /etc/sane.d 的所有“*.conf” 文件
find /etc -path /etc/sane.d -a -prune -o  -name "*.conf" 

linux find命令详解

标签:lin   sock   name   忽略   and   参数   int   byte   res   

原文地址:https://blog.51cto.com/14451217/2426435

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!