【小白日记13】----文件查找及压缩

一、查找文件

1、which

查看可执行文件(即命令)的位置

输入命令
 [root@localhost /]# which ls

在这里插入图片描述

2、locate

配合数据库查看文件位置

3、find

输入命令
[root@localhost /]# find  /tmp  -iname  "file*"

按文件命查找 (i是不区分大小写的意思)
在这里插入图片描述

输入命令
[root@localhost /]# find /etc  -size  +10M 

按文件大小查找
在这里插入图片描述

按文件路径深度查找

输入命令
[root@localhost /]# find  /  -maxdepth   4   -a   -name  "ifcfg-en*"

在这里插入图片描述

按文件属组属主查找

输入命令
[root@localhost /]# find   /home   -user   user1
[root@localhost /]# find /home  -group  hr

在这里插入图片描述
在这里插入图片描述

按文件类型查找

输入命令
[root@localhost /]# find /dev  -type  b

在这里插入图片描述
按文件权限查找

输入命令
[root@localhost ~]# find  . -perm 644 -ls

在这里插入图片描述

查询系统中文件名为ifcfg-ens33的文件,并通过管道拷贝至/tmp目录。

输入命令
[root@localhost ~]# find / -name "ifcfg-ens33"  -exec  cp   {}  /tmp   \;

在这里插入图片描述

二、文件压缩及解压

1.文件打包

1.普通压缩

输入命令
[root@localhost ~]# tar -cf etc.tar /etc

在这里插入图片描述

输入命令
[root@localhost ~]# tar -czvf etc.tar-gz  /etc

此种方式为显示压缩过程
在这里插入图片描述
3.

输入命令
[root@localhost ~]# tar  -cJf  etc.tar.bz  /etc

在这里插入图片描述
在这里插入图片描述

2.文件解压

输入命令
[root@localhost ~]# tar -xf etc.tar

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值