find命令

-type  文件的类型
    f 普通文件 file
    d 文件夹 directory
    l 链接文件 link
    s socket 文件
    p pipe 管道文件
    c 字符设备文件  character
    b 块设备文件 block

 

-mtime  修改文件的时间 modify time  
    +7  7天前的修改过得文件
    -7   7天内的修改过得文件
    -mtime n
              File's data was last modified n*24 hours ago.

 

 -name   文件的名称   -iname  不区分大小写

-a   and  默认是逻辑与
-o  or
not  ! 取反

\转义字符:  作用就是在shell解释器解释的时候,有些特殊的字符,取消它的特殊作用

[root@nfs-server liquan]# find  /  -name  "xiaowei*" -exec  rm  -rf {} \;

[root@nfs-server ~]# find  /  -name  hosts  -exec  cp {}  /liquan  \;

[root@nfs-server liquan]# find  /boot  -size +10k
[root@nfs-server liquan]# find  /liquan -type f

posted @ 2023-03-03 22:08  法螺話  阅读(15)  评论(0编辑  收藏  举报