grep: 文件内容过滤
grep 'root' /etc/passwd #从/etc/passwd文件中过滤root字段
grep -r 'root' /etc/ 递归查找
grep "^root" /etc/passwd 查找关键字以“root”开始
grep "bash$" /etc/passwd 查找关键字以结尾bash
查找命令
查询命令和配置文件的位置
一、find详解:文件查找,针对文件名
语法:find 路径 条件 跟条件相关的操作符 【-exec 动作】
路径:
1.默认不写路径时查找的是当前路径
2.加路径
条件:
1.指定的名称 -name
2.文件类型 -type
3.权限
4.时间
1.1按文件名
find / -name “file2” #从根开始找文件
/root/file2
/var/tmp/file2
# find /etc -name "ifcfg-ens33" #以名字的方式查找
# find /etc -iname "Ifcfg-ens33" #-i忽略大小写
熟用*通配符
find / etc -iname "*.txt" *表示所有字符
1.2 按文件大小 -size
[root@yang.com ~]# find /etc -size +5M #大于5M
[root@yang.com ~]# find /etc -size 5M #等于5M
[root@yang.com ~]# find /etc -size -5M #小于5M
[root@yang.com ~]# find / -size +3M -a -size -5M #查找/下面大于3M而且小于5M的文件
-a:and
[root@yang.com ~]# find / -size -1M -o -size +80M #查找/下面小于1M或者大于80M的文件
-o:or
[root@yang.com ~]# find / -size -3M -a -name "*.txt" #查找/ 下面小于3M而且名字是.txt的文件
1.3按时间查找
按时间找(atime,mtime,ctime)
-atime = access访问时间
-mtime = modify改变时间 内容修改时间会改变
-ctime = change修改时间 属性修改时间会改变-amin #分钟
-mmin
-cmin
1.4 按文件类型
find -type
1.5按文件权限
[root@yang.com ~]# find . -perm 644 #.是当前目录 精确查找644
[root@yang.com ~]# find /usr/bin -perm -4000 #包含set uid
[root@yang.com ~]# find /usr/bin -perm -2000 #包含set gid
[root@yang.com ~]# find /usr/bin -perm -1000 #包含sticky
1.6找到后处理动作ACTIONS
[root@yang.com ~]# find /etc -name "ifcfg*" -exec cp -rf {} /tmp \;
#exec命令对之前查找出来的文件做进一步操作----- 查找带ifcfg开头的文件复制到tmp下
[root@yang.com ~]# touch /home/test{1..20}.txt
[root@yang.com ~]# find /home/ -name test* -exec rm -rf {} \; #{}为前面查找到的内容,\; 格式
find使用xargs
[root@yang.com ~]# touch /home/test{1..20}.txt [root@yang.com ~]# # find /home/ -name "test*" | xargs -i cp {} /tmp/ #找到之后删除处理xargs 参数传递
-exec和xargs的区别
-exec:参数是一个一个传递的,传递一个参数执行一次命令。 xargs:将前一个命令的标准输出传递给下一个命令,作为它的参数转换成下一个命令的参数列表。 =============== 1、exec 每处理一个文件或者目录,它都需要启动一次命令,效率不好; 2、exec 格式麻烦,必须用 {} 做文件的代位符,必须用 \来转义; 作为命令的结束符,书写不便。 3、xargs不能操作文件名有空格的文件; 综上,如果要使用的命令支持一次处理多个文件,并且也知道这些文件里没有带空格的文件,那么使用 xargs比较方便; 否则,就要用 exec了。
二、打包压缩
linux打包压缩工具:
结尾:.tar.gz .tar.bz2 .zip xz
工具:gzip和tar(打包)
bzip2(只压缩)
zip
xzip
打包(用相对路径去打包)
语法: #tar cvf xxxx.tar filename 被打包的文件 ... c :create 创建 v :verbose 详细信息 f :file 指定文件
解包
#tar xvf filename.tar [-C /root/Desktop] x: extract 解压缩 解包 -C: 指定解包路径
压缩
gzip bzip2 xzip zip 语法: 压缩: #gzip 源文件 #格式 file.gz结尾 #bzip2 源文件 #格式 file.bz2结尾
解压缩
语法: #gunzip filename.gz 压缩文件 #bunzip2 filename.bz2 压缩文件 #gzip -d filename.gz 压缩文件 #bzip2 -d filename.bz2 压缩文件 -d:dicompress 解压缩
打包压缩一起:
语法: #tar cvzf file.tar.gz 源文件 #tar cvjf file.tar.bz2 源文件 #tar cvJf file.tar.xz 源文件 z:表示gz压缩 j:表示bz2压缩
解压解包一起:
语法:
#tar xvzf 压缩文件 [-C 解压路径]
#tar xvjf 压缩文件 [-C 解压路径]eg: # tar xzf dir1.tar.gz -C /usr/local/ #解压到指定位置