Linux文件查找
1.find查找概述
为什么要有文件查找,因为很多时候我们可能会忘了某个文件所在的位置,此时就需要通过find来查找。
find命令可以根据不同的条件来进行查找文件,例如:文件名称、文件大小、文件修改时间、属主属组、权限、等等方式。同时find命令是Linux下必须掌握的。
*find 命令的基本语法如下*
命令 | 路径 | 选项 | 表达式 | 动作 |
---|---|---|---|---|
find | [path…] | [options] | [expression] | [action] |
查找 | 地区 | 妹纸 | 18-25岁 | 约? |
是linux里面的一个实时查找工具,通过制定路径完成文件查找
find [options] ..... [查找路径] [查找条件] [处理动作]
查找路径:查找的位置,默认是当前文件夹
查找条件:制定查找的标准,文件名、大小、类型、日期等等
处理动作:对符合条件的文件做什么操作,默认是输出到屏幕上
2.find查找示例
*以下列出所有find常用的选项*
1.find名称查找
#1.创建文件 touch /etc/sysconfig/network-scripts/{ifcfg-eth1,IFCFG-ETH1} #2.查找/etc目录下包含ifcfg-eth0名称的文件 [root@lqz ~]# find /etc -name "ifcfg-eth1" #3.-i 忽略大小写 [root@lqz ~]# find /etc -iname "ifcfg-eth1" #查找/etc目录下包含ifcfg-eth名称所有文件 [root@lqz ~]# find /etc/ -name "ifcfg-eth*" [root@lqz ~]# find /etc -iname "ifcfg-eth*"
2.find大小查找
#1.查找大于5M的文件 [root@lqz ~]# find /etc -size +5M #2.查找等于5M的文件 [root@lqz ~]# find /etc -size 5M #3.查找小于5M的文件 [root@lqz ~]# find /etc -size -5M
3.find类型查找
# f 文件 [root@lqz ~]# find /dev -type f # d 目录 [root@lqz ~]# find /dev -type d # l 链接 [root@lqz ~]# find /dev -type l # b 块设备 [root@lqz ~]# find /dev -type b # c 字符设备 [root@lqz ~]# find /dev -type c # s 套接字 [root@lqz ~]# find /dev -type s # p 管道文件 [root@lqz ~]# find /dev -type p
4.find时间查找
#1.创建测试文件(后期shell会讲) [root@lqz ~]# for i in {01..28};do date -s 201904$i && touch file-$i;done #2.查找7天以前的文件(不会打印当天的文件) [root@lqz ~]# find ./ -iname "file-*" -mtime +7 #3.查找最近7天的文件,不建议使用(会打印当天的文件) [root@lqz ~]# find ./ -iname "file-*" -mtime -7 #4.查找第7天文件(不会打印当天的文件) [root@lqz ~]# find ./ -iname "file-*" -mtime 7 #5.本地文件保留最近7天的备份文件, 备份服务器保留3个月的备份文件(实际使用方案) find /backup/ -iname "*.bak" -mtime +7 -delete find /backup/ -iname "*.bak" -mtime +90 -delete
5.find用户查找
#查找属主是jack [root@lqz ~]# find /home -user jack #查找属组是admin [root@lqz ~]# find /home -group admin #查找属主是jack, 属组是admin [root@lqz ~]# find /home -user jack -group admin #查找属主是jack, 并且属组是admin [root@lqz ~]# find /home -user jack -a -group admin #查找属主是jack, 或者属组是admin [root@lqz ~]# find /home -user jack -o -group admin #查找没有属主 [root@lqz ~]# find /home -nouser #查找没有属组 [root@lqz ~]# find /home -nogroup #查找没有属主或属组 [root@lqz ~]# find /home -nouser -o -nogroup
6.find权限查找
#精切匹配644权限 [root@lqz ~]# find . -perm 644 -ls #包含444权限即可 [root@lqz ~]# find . -perm -444 -ls #查找全局可写(每位权限必须包含w) [root@lqz ~]# find . -perm -222 -ls #包含set uid [root@lqz ~]# find /usr/sbin -perm -4000 -ls #包含set gid [root@lqz ~]# find /usr/sbin -perm -2000 -ls #包含sticky [root@lqz ~]# find /usr/sbin -perm -1000 -ls
查找条件
-
根据文件名查找
-
-name 指定名称,可以使用正则
-
-iname 忽略大小写
-
-links n 引用次数为n的文件
-
-regex 后面跟完整路径,而不是文件名, 必须整个路径完全匹配
-
-
制定搜索的层级
-
-maxdepth level 最大的搜索深度,指定的目录为第1层
-
-mindepth level 最小的搜索深度,包括level层
-
-
根据属主、属组来查找
-
-user username 查找属主为username的文件
-
-group groupname 查找属组为groupname的文件
-
-uid id 查找属主为id的文件
-
-gid id 查找属组为id的文件
-
-nouser 查找没有属主的文件
-
-nogroup 查找没有属组的文件
-
m[root@192 test]#chown qiao b m[root@192 test]#ll total 0 drwxr-xr-x. 4 root root 24 Dec 4 22:50 a -rw-r--r--. 1 qiao root 0 Dec 6 17:53 b m[root@192 test]#chown :llx b m[root@192 test]#ll total 0 drwxr-xr-x. 4 root root 24 Dec 4 22:50 a -rw-r--r--. 1 qiao llx 0 Dec 6 17:53 b m[root@192 test]#find -group llx ./b m[root@192 test]#id root uid=0(root) gid=0(root) groups=0(root) m[root@192 test]#id qiao uid=1000(qiao) gid=1000(qiao) groups=1000(qiao) m[root@192 test]#find -uid 1000 ./b m[root@192 test]#useradd xiaobao m[root@192 test]#chown xiaobao b m[root@192 test]#ll total 0 drwxr-xr-x. 4 root root 24 Dec 4 22:50 a -rw-r--r--. 1 xiaobao llx 0 Dec 6 17:53 b m[root@192 test]#userdel xiaobao m[root@192 test]#ll total 0 drwxr-xr-x. 4 root root 24 Dec 4 22:50 a -rw-r--r--. 1 1002 llx 0 Dec 6 17:53 b m[root@192 test]#find -nouser ./b # 全盘找 m[root@192 test]#find / -nouser
-
根据文件类型 -type
-
d 目录
-
f 文件
-
l 符号链接
-
s 套接字
-
b 块设备
-
c 字符设备
-
p 管道文件
-
m[root@192 test]#find -type f ./b
-
空文件或者空目录
-
-empty
-
m[root@192 test]#find -empty
-
条件
-
与 -a
-
或 -o
-
非 -not
-
m[root@192 test]#find -empty -o -type d m[root@192 test]#find -empty -not -type d ./b
-
摩根定律
-
非(A或者B) 非A 且非B
-
非(A且B)非A或非B
-
m[root@192 ~]#find !(-empty -a -tpye d)
-
排除目录
-
-path
-
[root@localhost test]#find /etc -name *_config /etc/ssh/ssh_config /etc/ssh/sshd_config [root@localhost test]#find /etc -path /etc/ssh -name *_config
-
按照大小来查找
-
-size # (#-1,#] 不包括#-1,包括#
-
-size -# [0,#-1] 包括#-1
-
-size +# (#,......)
-
-
按照时间来查找
-
-atime # [#,#+1)
-
-atime -# (0,#)
-
-atime +# [#+1,....]
-
查找7天以后的文件 find -atime +7
-
-mtime
-
-ctime
-
以分钟为单位
-
-amin
-
-mmin
-
-cmin
-
-
3 处理动作
find动作处理,比如查找到一个文件后,需要对文件进行如何处理, find的默认动作是 -print
1.find查找后的动作命令示例
动作 | 含义 |
---|---|
打印查找到的内容(默认) | |
-ls | 以长格式显示的方式打印查找到的内容 |
-delete | 删除查找到的文件(仅能删除空目录) |
-ok | 后面跟自定义 shell 命令(会提示是否操作) |
-exec | 后面跟自定义 shell 命令(标准写法 -exec
标签:文件,lqz,正则表达式,etc,查找,Linux,root,find,三剑客
From: https://www.cnblogs.com/coderxueshan/p/17933844.html
相关文章
|