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

Linux下find命令详解

时间:2014-07-08 21:09:35      阅读:290      评论:0      收藏:0      [点我收藏+]

标签: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 {}


Linux下find命令详解,布布扣,bubuko.com

Linux下find命令详解

标签:linux   find   

原文地址:http://blog.csdn.net/yonggang7/article/details/37359767

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