Linux查找和压缩文件:find、which、whereis、tar(上)

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介: 1 查找文件1.1 find采用递归方式,根据目标的名称、类型、大小等不同属性进行精细查找。命令的特点:

1 查找文件


1.1 find

采用递归方式,根据目标的名称、类型、大小等不同属性进行精细查找。

命令的特点:

  • 精确查找
  • 实时查找
  • 支持查找条件很多
  • 各表达式之间使用逻辑运算符, “-a”表示而且(and),“-o”表示 或者(or)

find命令格式:

find [OPTION]...  [查找路径] [查找条件] [处理动作]
复制代码


查找路径:指定具体目标路径;不指定则默认为当前目录。

查找条件:可以对文件名、大小、类型、权限等标准进行查找;默认为找出指定路径下的所有文件。

处理动作:对符合条件的文件做操作,默认输出至屏幕(print)。

处理动作:

  • -ls 对查找到的文件列出属性信息
  • -delete 对查找到的文件进行删除
  • -exec COMMAND {} \;
    对查找到的每个文件执行由COMMAND指定的命令,{}: 用于引用查找到的文件名称自身。
  • -ok COMMAND {} \;
    对查找到的每个文件执行由COMMAND指定的命令,对于每个文件执行命令之前,都会交互式要求用户确认。

常用可选项:

查找类型 关键字 说明
按名称查找 -name 根据目标文件的名称进行查找,允许使用“*”及“?”通配符; 如果名字使用通配符,需要加” “来查询
按文件大小查找 -size 根据目标文件的大小进行查找 一般使用“+”、“-”号设置超过或小于指定的大小作为查找条件 常用的容量单位包括 kB(注意 k 是小写)、MB、GB
按文件属主/属组查找 -user/-group 根据文件是否属于目标用户进行查找
查找无属主/属组的文件 -nouser/-nogroup 查找无属主/属组的文件
按文件类型查找 -type 根据文件的类型进行查找 文件类型包括普通文件(f)、目录(d)、块设备文件(b)、字符设备文件(c)等
按inode号查找 -inum 根据文件inode号查找
按权限查找 -perm 按文件权限查找
最大搜索目录深度 -maxdepth 将你的文件以分级的形式查找,,最多搜索到某级目录
最小搜索目录深度 -mindepth 将你的文件以分级的形式查找,最少搜索到某级目录
按三种时间查询 -三种时间 -atime、-mtime、-ctime



示例:

1)按文件名称查找 -name

[root@test1 opt]# find /etc/ -name passwd     //在/etc/目录下查找名字叫passwd的文件
/etc/pam.d/passwd
/etc/passwd
[root@test1 opt]# find /etc/ -name "*.conf"   //查找所有.conf 结尾的 ,不要在当前路径下找自己路径下的文件
/etc/resolv.conf
/etc/fonts/conf.d/57-dejavu-serif.conf
/etc/fonts/conf.d/65-1-vlgothic-gothic.conf
/etc/fonts/conf.d/31-cantarell.conf
/etc/fonts/conf.d/65-0-lohit-nepali.conf
/etc/fonts/conf.d/59-liberation-mono.conf
/etc/fonts/conf.d/65-0-lohit-bengali.conf
[root@localhost boot]# find ./ -name "vm*"    //查找vm开头的文件
./vmlinuz-3.10.0-693.el7.x86_64
./vmlinuz-0-rescue-869778d6675742a5968d2ea8c0e087b2
复制代码


2)按文件属主查找 -user、-nouser

[root@test1 opt]# find /mnt -user root    //查找属主为root的文件
/mnt
/mnt/abc
/mnt/ad
/mnt/ad/ad2
/mnt/ad/ad2/bbbbb.txt
/mnt/zhangsanlianjie
[root@localhost opt]# find /home -user zhangsan -ls    //查找/home下属于zhangsan的文件并列出属性
18892062    0 drwx------   3 zhangsan zhangsan       78 2月  8 03:02 /home/zhangsan
26604086    0 drwxr-xr-x   4 zhangsan zhangsan       39 1月 18 17:29 /home/zhangsan/.mozilla
 35529    0 drwxr-xr-x   2 zhangsan zhangsan        6 6月 10  2014 /home/zhangsan/.mozilla/extensions
8922083    0 drwxr-xr-x   2 zhangsan zhangsan        6 6月 10  2014 /home/zhangsan/.mozilla/plugins
18892063    4 -rw-r--r--   1 zhangsan zhangsan       18 8月  3  2017 /home/zhangsan/.bash_logout
16797782    4 -rw-r--r--   1 zhangsan zhangsan      193 8月  3  2017 /home/zhangsan/.bash_profile
18875334    4 -rw-r--r--   1 zhangsan zhangsan      231 8月  3  2017 /home/zhangsan/.bashrc
[root@localhost opt]# useradd hehe     //创建用户hehe
[root@localhost opt]# userdel hehe     //删除用户hehe,因为没有加-r,与用户相关的文件和目录没有被删除
[root@localhost opt]# ls /home/
hehe  mysql  zhangsan
[root@localhost opt]# ll /home/
总用量 0
drwx------. 3     1002     1002 78 8月  26 09:27 hehe
drwx------. 3 mysql    mysql    78 8月  25 11:45 mysql
drwx------. 3 zhangsan zhangsan 78 8月   6 20:57 zhangsan
[root@localhost opt]# find /home/ -nouser     //查找home下的无主文件
/home/hehe
/home/hehe/.mozilla
/home/hehe/.mozilla/extensions
/home/hehe/.mozilla/plugins
/home/hehe/.bash_logout
/home/hehe/.bash_profile
/home/hehe/.bashrc
复制代码


3)按文件类型查找 -type

[root@localhost opt]# find /boot -type d    //查找/boot下的目录文件
/boot
/boot/efi
/boot/efi/EFI
/boot/efi/EFI/centos
/boot/grub2
/boot/grub2/i386-pc
/boot/grub2/locale
/boot/grub2/fonts
/boot/grub
复制代码


4)按目录层级查找

[root@localhost boot]# find /tmp/test -maxdepth 2  -mindepth 2   //只向下看第二级目录
/tmp/test/aaa/1.txt
/tmp/test/aaa/2.txt
/tmp/test/bbb/3.txt
复制代码


5)按文件权限查找 -perm

[root@localhost opt]# find -perm 644   //查找属主有读写权限、属组和其他人只有读权限的文件
./100.img
./99.img
./a.txt 
复制代码


6)按文件大小查找 -size

[root@test1 opt]# find -size 1k     //查找(0,1]k的文件
./rh
./rh/aaa
[root@localhost boot]# find /boot/ -size -10M -a -name "*img"   //查找9M以内(含9M)、且名称结尾为img的文件
/boot/grub2/i386-pc/core.img
/boot/grub2/i386-pc/boot.img
[root@localhost opt]# find -size 1G    //查找1G的文件会把所有都显示出来,这是因为1G表示0G到1G之间,不含0G,即(0,1]。
.
./100.img
./99.img
#按大小查找新建两个文件:
[root@localhost opt]# dd if=/dev/zero of=99.img bs=99M count=1
[root@localhost opt]# dd if=/dev/zero of=100.img bs=100M count=1
[root@localhost opt]# ls
100.img  99.img
[root@localhost opt]# find -size 100M
./100.img
[root@localhost opt]# find /opt/ -size 100M
/opt/100.img
[root@localhost opt]# ll 99.img 
-rw-r--r--. 1 root root 103809024 8月  26 10:02 99.img
[root@localhost opt]# echo >>99.img 
[root@localhost opt]# ll 99.img 
-rw-r--r--. 1 root root 103809025 8月  26 10:03 99.img
[root@localhost opt]# find /opt/ -size 100M   //这是因为linux中的100M不是正好100M,是99M开始到100M,不包括99M,即(99-100]
/opt/100.img
/opt/99.img
复制代码


注意:按文件大小查找时,大小范围需注意

  • find -size 1G:查找的是从0G到1G,不包括0G,即(0,1]。
  • find -size 2G:查找的是从1G到2G,不包括1G,即(1,2]。
  • find -size 1024M:查找的是从1023M到1024M,不包括1023M,即(1023,1024]。

思考:find -size 1024M 和 1G 一样么?

  • 1024M 表示 1023M ~ 1024M,不包括 1023M。
  • 1G 表示 0G ~1G,不包括 0G。
    故使用 find -size 1024M 查找更加精准。

思考:10k、-10k、+10k的大小范围分别是多少?

  • -size 10k :表示9k到10k,包括10k、不包括9k,即(9,10]。
  • -size -10k :表示9k以内,包括9k,即 [0,9]。
  • -size +10k :表示10k以上,不包括10k,即(10,+∞)。


相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助     相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
2天前
|
Linux
linux查看目录下的文件夹命令,find查找某个目录,但是不包括这个目录本身?
通过本文的介绍,您应该对如何在 Linux 系统中查看目录下的文件夹以及使用 `find` 命令查找特定目录内容并排除该目录本身有了清晰的理解。掌握这些命令和技巧,可以大大提高日常文件管理和查找操作的效率。 在实际应用中,灵活使用这些命令和参数,可以帮助您快速定位和管理文件和目录,满足各种复杂的文件系统操作需求。
23 8
|
1月前
|
Linux
在 Linux 系统中,`find` 命令
在 Linux 系统中,`find` 命令
39 1
|
1月前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
113 6
|
3月前
|
存储 Linux Shell
linux查找技巧: find grep xargs
linux查找技巧: find grep xargs
46 13
|
3月前
|
Docker 容器
14 response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file speci
14 response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file speci
44 1
26Linux - 文件管理(文件压缩解压:bzip2)
26Linux - 文件管理(文件压缩解压:bzip2)
68 0
|
7月前
|
算法 Linux
【Linux笔记】压缩、解压文件的 4 种方式。tar、gzip、gunzip、zip、unzip、7z命令使用方法
【Linux笔记】压缩、解压文件的 4 种方式。tar、gzip、gunzip、zip、unzip、7z命令使用方法
|
6月前
|
Linux
linux 压缩解压
linux 压缩解压
43 1
|
6月前
|
Linux
14. 【Linux教程】文件压缩与解压
14. 【Linux教程】文件压缩与解压
68 0
|
7月前
|
Linux
linux 压缩包管理压缩解压查看 追加
linux 压缩包管理压缩解压查看 追加
59 0