首页 > 代码库 > Linux下find命令详解
Linux下find命令详解
1. find命令
linux的find命令用来查找文件,功能很强大,
可以通过时间, 用户组, 文件名, 文件类型, 权限,大小等来查找相应文件。
2. find的用法
通过find --help或者 man find查看介绍。
$ find --help Usage: find [path...] [expression] default path is the current directory; default expression is -print
3. 通过时间查找
与时间相关的参数: -atime, -ctime, -mtime。
如:
-mtime n n天之前当天修改过文件。
-mtime +n n天之前修改过的文件,不包括n天本身。
-mtime -n n天之内修改过的文件,包括n天。
$ find ./ -mtime -2 查找小于等于2天之内修改过的文件 $ find ./ -mtime +2 大于2天前修改过的文件 $ find ./ -mtime 2 2天前,当天修改过的文件还可以查找比某个文件新的文件
$ find ./ newer test.txt 比test.txt还要新的文件
4. 通过用户或组查找
参数:
-uid n : n为数字,用户的uid, /etc/passwd里与账号对应的数字
-gid n : n为数字,用户组gid, /etc/group中
-user name : name为用户名
-group name : name为 用户组名
-nouser : 文件是所有者不存在/etc/passwd中
-nogroup : 用户组不存在与/etc/group中,
当自行安装软件时,很可能软件的属性没有文件所有者,就使用nouser或nogroup来查找。
$ find ./ -user yonggang 查找当前目录下文件所有者是yonggang的文件 $ find ./ -group yonggang 查找当前目录下文件所属用户组是yonggang的文件 $ find ./ -nouser 查找不属于任何人的文件
5. 通过文件名称和权限来查找
-name 通过名称来查找
$ find ./ -name test.txt 查找文件名test.txt的文件 find ./ -name 'test*' 查找文件名中包含test的文件-type 通过文件类型查找
f: 普通文件
d: 目录
l : 链接文件
b,c : 设备文件
s : socket
$ find ./ -type l 查找链接文件-perm 通过权限查找
-perm mode 查找文件权限刚好等于mode的文件, 为chmod的属性值,例如0777
-perm -mode 查找的权限必须包含mode
-perm +mode 查找的权限包含任一mode
$ find ./ -perm 0700 查找权限为0700的文件-size 通过文件大小查找
$ find ./ -size +1000k 文件大于1M的文件 $ find ./ -size -1000k 文件小于1M的文件
6. 连接其他命令
-exec command : command为执行命令
$ find ./ -size -1000k -exec ls -l {} \;找到小于1M的文件,以 ls -l输出
{} 表示 find找到的内容,
;表示结尾 ,使用反斜线转义, exec 和 \; 之间为要执行的东西, 即 ls -l {}
地址:http://blog.csdn.net/yonggang7/article/details/37359767
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。