find 文件查找
Posted gongjingyun123--
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了find 文件查找相关的知识,希望对你有一定的参考价值。
目录
find文件查找
1.为什么要使用文件查找
有些时候,我们可能会忘了某个文件所在的位置,此时就需要通过find来查找。
还有些时候,我想要找到,某个目录下,所有小于1k的文件。
还还有些时候,我们想要找到,某个目录下,7天之前创建的文件。
还还还有些时候,我们想找到,某个目录下,所有以.sh结尾的脚本。
Linux
系统中的find
命令在查找文件时非常有用而且方便。
它可以根据不同的条件来进行查找文件:例如权限、拥有者、修改日期/时间、文件大小等等。 同时find
命令是Linux
下必须掌握的。
find 命令的基本语法如下
命令 | 路径 | 选项 | 表达式 | 动作 |
---|---|---|---|---|
find | [path...] | [options] | [expression] | [action] |
查找 | 地区 | 小姐姐 | 18 | 约... |
视频 | 路径 | 日韩 | 无码 | 看 |
2.根据文件名称查找-name
//创建文件
touch /etc/sysconfig/network-scripts/ifcfg-eth1,IFCFG-ETH1
//查找/etc目录下包含ifcfg-eth0名称的文件
[[email protected] ~]# find /etc -name "ifcfg-eth1"
//在/etc/下找到以.sh结尾的文件
[[email protected] ~]# find /etc/ -name '*.sh'
//显示详细信息
[[email protected] ~]# find /etc/ -name '*.sh' -ls
//-i 忽略大小写
[[email protected] ~]# find /etc -iname "ifcfg-eth1"
//查找/etc目录下包含ifcfg-eth名称所有文件
[[email protected] ~]# find /etc/ -name "ifcfg-eth*"
[[email protected] ~]# find /etc -iname "ifcfg-eth*"
3.根据文件大小查找-size
+ | 大于 |
---|---|
等于 | |
- | 小于 |
//查找大于5M
[[email protected] ~]# find /etc -size +5M
//超找等于5M
[[email protected] ~]# find /etc -size 5M
//查找小于5M
[[email protected] ~]# find /etc -size -5M
需求:我想查找到这些文后,查看他们的大小zls
[[email protected] ~]# find /etc -size +5M -ls
4.根据文件类型查找-type f
//f 文件
[[email protected] ~]# find /dev -type f
//d 目录
[[email protected] ~]# find /dev -type d
//l 链接
[[email protected] ~]# find /dev -type l
//b 块设备
[[email protected] ~]# find /dev -type b
//c 字符设备
[[email protected] ~]# find /dev -type c
//s 套接字
[[email protected] ~]# find /dev -type s
//p 管道文件
[[email protected] ~]# find /dev -type p
5.根据文件时间查找-mtime
+n | 查找n天之前(当天的不算) |
---|---|
-n | 查找n天内的文件(当天的文件算在内) |
n | 查找第n 天的文件(当天的不算) |
//创建测试文件
[[email protected] ~]# for i in `seq -w 30`;do date -s 201802$i && touch file-$i;done
//查找7天以前的文件(不会打印当天的文件)
[[email protected] ~]# find ./ -iname "file-*" -mtime +7
//查找最近7天的文件,不建议使用(会打印当天的文件)
[[email protected] ~]# find ./ -iname "file-*" -mtime -7
//查找第7天文件(不会打印当天的文件)
[[email protected] ~]# find ./ -iname "file-*" -mtime 7
//本地文件保留最近7天的备份文件, 备份服务器保留3个月的备份文件
find /backup/ -iname "*.bak" -mtime +7 -delete
find /backup/ -iname "*.bak" -mtime +90 -delete
6.根据文件用户查找-user
-user | 指定文件属主用户 |
---|---|
-group | 指定文件属组 |
-nouser | 查找没有属主的文件 |
-nogroup | 查找没有属组的文件 |
//查找属主是zls
[[email protected] ~]# find /home -user zls
//查找属组是admin
[[email protected] ~]# find /home -group admin
//查找属主是zls, 属组是admin
[[email protected] ~]# find /home -user zls -group admin
//查找属主是zls, 并且属组是admin
[[email protected] ~]# find /home -user zls -a -group admin
//查找属主是zls, 或者属组是admin
[[email protected] ~]# find /home -user zls -o -group admin
//查找没有属主
[[email protected] ~]# find /home -nouser
//查找没有属组
[[email protected] ~]# find /home -nogroup
//查找没有属主或属组
[[email protected] ~]# find /home -nouser -o -nogroup
//打印目录的时候,只打印1级目录(按深度查找)
[[email protected] ~]# find /home/ -maxdepth 1 -type d -user zls
7.根据文件权限查找-perm
644:精确查找
-644:模糊查找
//精切匹配644权限
[[email protected] ~]# find . -perm 644 -ls
//拥有者至少有011(-wx),组010(-w-),其他人100(r--)
[[email protected] ~]# find /home -perm -324
//查找全局可写(没位权限必须高于2 -w-)
[[email protected] ~]# find . -perm -222 -ls
//拥有者至少有r权限, 或者拥有组至少有r权限, 或者匿名至少有w权限
[[email protected] ~]# find /home -perm 442
//包含set uid
[[email protected] ~]# find /usr/sbin -perm -4000 -ls
//包含set gid
[[email protected] ~]# find /usr/sbin -perm -2000 -ls
//包含sticky
[[email protected] ~]# find /usr/sbin -perm -1000 -ls
8.find 处理动作
当查找到一个文件后, 需要对文件进行如何处理, 默认动作 -print
动作 | 含义 |
---|---|
打印查找到的内容(默认) | |
-ls | 以长格式显示的方式打印查找到的内容 |
-delete | 删除查找到的文件(仅能删除空目录) |
-ok | 后面跟自定义shell命令(会提示是否操作) |
-exec | 后面跟自定义shell命令(标准写法-exec ;) |
//打印查询到的文件
[[email protected] ~]# find /etc -name "ifcfg*"
[[email protected] ~]# find /etc -name "ifcfg*" -print
[[email protected] ~]# find /etc -name "ifcfg*" -ls
//拷贝文件
[[email protected] ~]# find /etc -name "ifcfg*" -exec cp -rvf /tmp \;
//-ok会不断提示
[[email protected] ~]# find /etc -name "ifcfg*" -ok cp -rvf /tmp \;
//删除文件
[[email protected] ~]# find /etc -name "ifcfg*" -exec rm -f \;
[[email protected] ~]# find /etc -name "ifcfg*" -delete
9.find 结合xargs
#xargs将查找到结果一个一个的处理
[[email protected] ~]# touch file.txt
[[email protected] ~]# find . -name "file.txt" |xargs rm -f
[[email protected] ~]# find . -name "file.txt" |xargs -I cp -rvf /var/tmp
注意:
$() 和 `` :将引起来的部分当成一个命令执行。
-a:多个条件同时满足
-o:或者,多个条件有一个满足即可
!:取反
以上是关于find 文件查找的主要内容,如果未能解决你的问题,请参考以下文章