文件的查找

grep: 文件内容过滤

# grep 'root' /etc/passwd  #从/etc/passwd文件中过滤root字段
root:x:0:0:root:/root:/bin/bash
operator:x:11:0:operator:/root:/sbin/nologin

查找命令

# which ls
alias ls='ls --color=auto'
        /usr/bin/ls

# which cd
/usr/bin/cd

# which rm
alias rm='rm -i'
        /usr/bin/rm

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

# whereis rpm 
rpm: /usr/bin/rpm /usr/lib/rpm /etc/rpm /usr/share/man/man8/rpm.8.gz

# whereis passwd
passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man1/passwd.1.gz

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

语法:
# find 路径 条件 跟条件相关的操作符   [-exec 动作]
路径:
1.默认不写路径时查找的是当前路径.
2.加路径。
条件:
1.指定的名称  -name
2.文件类型  -type
3.权限
4.时间

1.按文件名

从根开始找文件

# find / -name “file2” #从根开始找文件

/root/file2
/var/tmp/file2

# find /etc -name "ifcfg-ens33" #以名字的方式查找 

# find /etc -iname "Ifcfg-ens33" #-i忽略大小写

熟用*通配符

# find /etc -iname "*.txt"
参数解释:
*:表示所有字符

2.按文件大小 -size

# find /etc -size +5M        #大于5M

# find /etc -size 5M        #等于5M

# find /etc -size -5M      #小于5M

# find / -size +3M -a -size -5M  #查找/下面大于3M而且小于5M的文件

-a:and

# find / -size -1M -o -size +80M #查找/下面小于1M或者大于80M的文件
-o:or

# find / -size -3M -a -name "*.txt" #查找/ 下面小于3M而且名字是.txt的文件

3按时间查找

按时间找(atime,mtime,ctime)
-atime = access访问时间
-mtime = modify改变时间  内容修改时间会改变
-ctime = change修改时间   属性修改时间会改变

-amin  #分钟
-mmin
-cmin

# find /dev -type f    #f普通文件

# find / -type f -size -1M -o -name "*.txt"

# find /dev -type d    #d目录

# find /etc/ -type d -name "*.conf.d"

# find /etc -type l    #l链接

# find /dev -type b    #b块设备

# find /dev/ -type b -name "sd*"

5按文件权限

# find . -perm 644            #.是当前目录    精确查找644

# find /usr/bin  -perm -4000  #包含set uid

# find /usr/bin  -perm -2000  #包含set gid

# find /usr/bin  -perm -1000  #包含sticky

6找到后处理的动作 ACTIONS

# find /etc -name "ifcfg*" -exec cp -rf {} /tmp \; #exec命令对之前查找出来的文件做进一步操作-----  查找带ifcfg开头的文件复制到tmp下

# touch /home/test{1..20}.txt

# find /home/ -name test* -exec rm -rf {} \; #{}为前面查找到的内容,\; 格式

-exec和xargs的区别

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

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

分别找出test5 和除了test5的文件

# find /home/ -name *test5*

# find /home/ ! -name "test5*" # !--取反

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值