文件查找与打包压缩,文件发送

grep:文件内容过滤
[root@hostname ~]# grep 'root' /etc/passwd

从/etc/passwd文件中过滤root字段
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin
[root@hostname ~]# grep 'nologin$' /etc/passwd     //$以..结尾        ^以..开头
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin

#递归查找
[root@qfedu.com ~]# grep -r 'root' /etc/
查找命令

[root@hostname ~]# which ls
alias ls='ls --color=auto'
        /usr/bin/ls
[root@hostname ~]# which find
/usr/bin/find
查询命令和配置文件的位置
[root@hostname ~]# whereis rpm
rpm: /usr/bin/rpm /usr/lib/rpm 
/etc/rpm /usr/share/man/man8/rpm.8.gz
[root@hostname ~]# whereis passwd
passwd: /usr/bin/passwd 
/etc/passwd /usr/share/man/man1/passwd.1.gz
[root@hostname ~]# 

一、find详解:文件查找,针对文件名

语法:

#find 路径 条件 跟条件相关的操作符  [-exec  动作]

路径:

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

2.加路径

条件:

1.指定的名称        -name

2.文件类型        -tupe

3.权限

4.时间

1.1按文件名
[root@hostname ~]# find / -name tool.sh
/opt/tool.sh
从根开始找文件
[root@qfedu.com ~]# find / -name “file2” #从根开始找文件
/root/file2
/var/tmp/file2
[root@qfedu.com ~]# find /etc -name "ifcfg-ens33" #以名字的方式查找 
[root@qfedu.com ~]# find /etc -iname "Ifcfg-ens33" #-i忽略大小写

熟用*通配符

[root@hostname ~]# find /etc -name "*.txt"

参数解释:

*:表示所有字符

1.2按文件大小
[root@qfedu.com ~]# find /etc -size +5M		#大于5M
[root@qfedu.com ~]# find /etc -size 5M		#等于5M
[root@qfedu.com ~]# find /etc -size -5M      #小于5M
[root@qfedu.com ~]# find / -size +3M -a -size -5M  #查找/下面大于3M而且小于5M的文件
-a:and
[root@qfedu.com ~]# find / -size -1M -o -size            	 #查找/下面小于1M或者大于80M的文件
-o:or
[root@qfedu.com ~]# find / -size -3M -a -name "*.txt" #查找/ 下面小于3M而且名字是.txt的文件
1.3按时间查找

按时间找(atime,mtime,ctime)

-atime = access 访问时间

-mtime = modify 改变时间         内容修改时间会改变

-ctime = change修改时间   属性修改时间会改变

-amin  #分钟
-mmin
-cmin

[root@qfedu.com ~]# find /opt -mtime +5		#修改时间5天之前
[root@qfedu.com ~]# find /opt -atime +1     #访问时间1天之前
[root@qfedu.com ~]# find . -mtime -2		#修改时间2天之内

[root@qfedu.com ~]# find . -amin +1         #访问时间在1分钟之前
[root@qfedu.com ~]# find /opt -amin -4      #访问时间在4分钟之内
[root@qfedu.com ~]# find /opt -mmin -2      #修改时间在2分钟之内
1.4按文件类型
[root@qfedu.com ~]# find /dev -type f	#f普通文件
[root@qfedu.com ~]# find / -type f -size -1M -o -name "*.txt"

[root@qfedu.com ~]# find /dev -type d	#d目录
[root@qfedu.com ~]# find /etc/ -type d -name "*.conf.d"

[root@qfedu.com ~]# find /etc -type l	#l链接

[root@qfedu.com ~]# find /dev -type b	#b块设备
[root@qfedu.com ~]# find /dev/ -type b -name "sd*"
1.5按文件权限
[root@qfedu.com ~]# find . -perm 644            #.是当前目录    精确查找644  
[root@qfedu.com ~]# find /usr/bin  -perm -4000  #包含set uid
[root@qfedu.com ~]# find /usr/bin  -perm -2000  #包含set gid
[root@qfedu.com ~]# find /usr/bin  -perm -1000  #包含sticky
1.6找到后处理的动作ACTIONS

[root@hostname ~]# find /etc -name "ifcfg*" -exec cp -rf {} /tmp \;

#exec命令对之前查找出来的文件做进一步操作-----  查找带ifcfg开头的文件复制到tmp下

[root@hostname ~]# touch /home/test{1..20}.txt

[root@hostname ~]# find /home -name test* -exec rm -rf {} \;

 #{}为前面查找到的内容,\; 格式

find使用xargs

[root@qfedu.com ~]# touch /home/test{1..20}.txt
[root@qfedu.com ~]# # find /home/ -name "test*" | xargs -i cp {} /tmp/ #找到之后删除处理xargs 参数传递

[root@hostname ~]# find /tmp/ -name "ifcfg*" | xargs -i rm -rf {}

-exec和xargs的区别

-exec:参数是一个一个传递的,传递一个参数执行一次命令。
xargs:将前一个命令的标准输出传递给下一个命令,作为它的参数转换成下一个命令的参数列表。
===============
1、exec 每处理一个文件或者目录,它都需要启动一次命令,效率不好; 
2、exec 格式麻烦,必须用 {} 做文件的代位符,必须用 \来转义; 作为命令的结束符,书写不便。 
3、xargs不能操作文件名有空格的文件;

综上,如果要使用的命令支持一次处理多个文件,并且也知道这些文件里没有带空格的文件,那么使用 xargs比较方便; 否则,就要用 exec了。

案例1: 分别找出test5 和除了test5的文件

[root@qfedu.com ~]# find /home/ -name *test5*
[root@qfedu.com ~]# find /home/ ! -name "test5*" # !--取反

二、打包压缩

window打包压缩工具:

结尾:.rar     .zip
打包工具:winrar zip 7zip bandizip

linux打包压缩工具:

结尾:.tar.gz      .tar.bz2     .zip   xz

工具:gzip和tar(打包)

bzip2(只压缩)

zip
打包压缩:zip -r etc.zip etc
解压缩:unzip etc.zip

xzip

打包

语法:
#tar cvf xxxx.tar filename   被打包的文件 ...
c :create  创建
v :verbose 详细信息
f :file  指定文件

解包

#tar xvf filename.tar [-C /root/Desktop]
x: extract  解压缩  解包
-C: 指定解包路径

案例

[root@qfedu.com ~]# tar cvf dir1.tar /home/dir10/ #打包目录dir10,将包命名为dir1.tar
[root@qfedu.com ~]# tar xf dir1.tar -C /usr/local/ #将dir1包解压到指定目录

压缩

gzip bzip2 xzip zip

语法:
压缩:
    #gzip  源文件   #格式  file.gz结尾
    #bzip2 源文件   #格式  file.bz2结尾

bzip2需要安装

[root@qfedu.com ~]# yum -y install bzip2   #打包bzip2需要安装

解压缩

语法:
#gunzip    压缩文件
#bunzip2   压缩文件

#gzip     -d 压缩文件  
#bzip2  -d 压缩文件
-d:dicompress 解压缩

案例:

[root@qfedu.com ~]# gzip file1  #压缩
[root@qfedu.com ~]# gzip -d file1.gz #解压缩
[root@qfedu.com ~]# gunzip file1.gz  #也是解压缩包
[root@qfedu.com ~]# gzip -c file1 > /usr/local/file1.gz  #压缩到指定位置(注意以.gz结尾)
[root@qfedu.com ~]# gunzip -c /usr/local/file1.gz > /opt/file1 #解压到指定位置(解压出的名字可以自定义)
-c, --stdout

打包压缩一起:

语法:
#tar cvzf file.tar.gz  源文件
#tar cvjf file.tar.bz2 源文件
#tar cvJf file.tar.xz  源文件
#打包压缩到指定路径
tar czf /opt/
z:表示gz压缩
j:表示bz2压缩

解压解包一起:

语法:
#tar xvzf 压缩文件 [-C 解压路径]
#tar xvjf 压缩文件 [-C 解压路径]

#tar -xf 压缩文件 -C 解压路径        //通用

打包到指定路径

[root@qfedu.com ~]# tar czf /tmp/`date +%F-%T`-etc.tar.gz /etc/  #将打包的文件放到/tmp目录下,并以当前时间开头命名

扩展--按时间创建目录或者文件

# mkdir `date +%F`-upload
# touch file-`date +%F`.txt

作业

查找系统内所有.gz结尾的文件并备份到/tmp/backup目录下
find / -name "*.gz" -exec cp {} /tmp/backup \;

find / -name "*.gz" | xargs -i cp {} /tmp/backup
查找10天以内被修改过的.txt结尾的文件
find / -name "*.txt" -a -mtime -10
+10:10天之前    -10:10天以内

邮件发送

yum -y install mailx

 

vim /etc/mail.rc

set from=邮箱号
set smtp=smtp.163.com        //或者smtp.qq.com
set smtp-auth-user=邮箱号
set smtp-auth-password=邮箱授权码
set smtp-auth=login

cat /etc/passwd | mail -s "测试邮件" 19991820903@189.cn

发送邮件

(1)

mail -s "邮件主题"  收件人地址  

邮件内容

Ctrl+d

(2)

mail -s "邮件主题"  收件人的地址 </etc/passwd(邮件内容所在文件)

(3)

echo "邮件内容" | mail  -s "主题"  -a 附件 收件人地址

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值