千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:西安千锋IT培训  >  技术干货  >  Linux文件查找的几种方式

Linux文件查找的几种方式

来源:千锋教育
发布人:qyf
时间: 2023-01-11 17:06:00

Linux文件查找

  1、which/whereis/whatis

  which 只能查询命令

  [root@qfedu.com ~]#which rpm

  whereis

  可以查询命令和配置文件的位置

  [root@qfedu.com ~]#whereis rpm

  [root@qfedu.com ~]#whereis passwd

  whatis

  [root@qfedu.com ~]#whatis rpm 和下面命令一样的效果,查询rpm命令都在哪章man有解释

  [root@qfedu.com ~]#man -f rpm

  2、locate

  维护着一个查询数据库

  [root@qfedu.com ~]#vim /etc/updatedb.conf

  1)文件系统类型

  2)目录

  如果被更改之后,需要更新数据库

  [root@qfedu.com ~]#updatedb 手动更新数据库

  [root@qfedu.com ~]#locate 被查找的关键字

  [root@qfedu.com ~]#locate *.txt

  *是通配符

  3、find

  [root@qfedu.com ~]#find 路径 条件 跟条件相关的操作符 [-exec|-ok 动作]

  路径

  默认不写路径时查找的是当前路径

  例:

  /etc

  ./

  /

  /var/ftp

  条件

  名称 大小 时间 文件类型 用户 组 权限 ...

  -name 文件名称 按名称查找

  # find / -name a.txt

  # find / -name a.t??

  # find / -name a.tx?

  # find / -name '*a.txt'

  # find / -iname '*a.txt'

  -iname 不区分大小写

  ?表示单个字符

  *表示所有字符

  一般情况下{}不能用

  {1..100}

  {abc,abd,efg}

  通配符:

  * ? [] {}

  * 表示所有字符

  ? 表示任意单个字符

  [] 表示其中任意一个单个字符

  例:

  [abc]

  [a-z]

  [a-Z]

  [a-zA-Z]

  [!a-z] !取反

  [0-9]

  a到Z的匹配顺序是aAbBcC...

  [root@server python]# ls

  a.txt E.txt j.txt N.txt s.txt W.txt

  A.txt f.txt J.txt o.txt S.txt x.txt

  b.txt F.txt k.txt O.txt t.txt X.txt

  B.txt g.txt K.txt p.txt T.txt y.txt

  c.txt G.txt l.txt P.txt u.txt Y.txt

  C.txt h.txt L.txt q.txt U.txt z.txt

  d.txt H.txt m.txt Q.txt v.txt Z.txt

  D.txt i.txt M.txt r.txt V.txt

  e.txt I.txt n.txt R.txt w.txt

  {hello,hi,king,xiaoxuan}

  [root@qfedu.com ~]# touch {python,wing,haha}.txt

  {a..z}

  {1..100}

  /dev/vdc{1,2,3}

  按大小查找

  -size

  [root@qfedu.com ~]#find / -size 50M

  [root@qfedu.com ~]#find / -size +50M

  [root@qfedu.com ~]#find / -size -50M

  查找大于10M小于20M

  [root@qfedu.com ~]#find / -size +10M -a -size -20M

  -a可以换成-and

  [root@qfedu.com ~]#find / -size -10M -o -size +20M

  -o可以换成-or

  [root@qfedu.com ~]# find ./ ! -size -10M

  [root@qfedu.com ~]# find / -size -50M -a -name "*wing*"

  [root@qfedu.com ~]# find / ! \( -size -50M -a -name "*wing*" \)

  !取反

  \( \)

  \ 转义字符 把有意义的变的没意义 把没意义的变的有意义

  附加:用dd命令做测试数据

  [root@qfedu.com ~]#dd if=/dev/zero of=/tmp/aa.txt bs=5M count=2

  按文件类型查找

  -type

  f

  d

  b

  c

  l

  s

  p

  [root@qfedu.com ~]# find / -type c -exec ls -l {} \;

  [root@qfedu.com ~]# find /tmp/ -name aa.txt -exec rm -i {} \;

  [root@qfedu.com ~]# find /tmp/ -name aa.txt -ok rm {} \;

  < rm ... /tmp/aa.txt > ? y

  -exec 对之前查找出来的文件做进一步操作

  -ok 和-exec一样,只不过多了提示

  按权限查找:

  -perm

  [root@qfedu.com ~]# find ./ -perm 644 -ls

  ./dd.txt

  按用户和组查找

  -user

  -group

  [root@qfedu.com ~]# find ./ -user wing

  ./bb.txt

  [root@qfedu.com ~]# find ./ -group user3

  ./cc.txt

  按时间

  -atime access时间

  -mtime modify时间

  -ctime change时间

  -amin

  -mmin

  -cmin

  time表示单位是天

  min 表示分钟

  [root@qfedu.com ~]# stat 文件

  查找两分钟内访问过的文件

  [root@qfedu.com ~]# find /tmp -amin -2

  /tmp/a.txt

  查找两分钟前访问过的文件

  [root@qfedu.com ~]# find /tmp -amin +2

  查找一个文件的硬链接:

  [root@qfedu.com ~]# ln a.txt heihei

  [root@qfedu.com ~]# ll -i

  439360 -rw-r--r-- 2 root root 12 Nov 29 22:22 a.txt

  439360 -rw-r--r-- 2 root root 12 Nov 29 22:22 heihei

  [root@qfedu.com ~]# find . -samefile a.txt

  ./a.txt

  ./heihei

  指定查找的目录深度:

  -maxdepth levels

  -mindepth levels

  [root@qfedu.com ~]# find / -maxdepth 3 -a -name "ifcfg-eth0"

  按正则表达式查找:

  [root@qfedu.com ~]# find /etc -regex '.*ifcfg-ens[0-9][0-9]'

  -exec -ok

  [root@qfedu.com ~]# find . -name wing.txt -exec cp {} /root/Desktop/ \;

  防止被查找到的文件过多,导致内存溢出错误

  [root@qfedu.com ~]# find . -name wing.txt | xargs -i cp {} /root/Desktop

  4、xargs

  防止被查找到的文件过多,导致内存溢出错误

  [root@qfedu.com ~]# find . -name wing.txt | xargs -i cp {} /root/Desktop

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

c++获取文件大小

2023-03-14

OpenCV系列教程(四) 计算 N 维数据关系

2023-01-11

OpenCV系列教程(三)Mat 像素统计技术

2023-01-11

最新文章NEW

jquery字符串转数字

2023-04-21

tomcat端口号配置

2023-03-20

搭建hadoop高可用集群

2023-03-16

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>