一.find 路径 条件 动作
1.按文件名查找
eg:find /etc -name "zxy"
查找所有以8开头以9结尾的文件
eg: find / -name "8*" -o -name "*9"
2.按文件类型查找
find /dev -type f 查找普通文件
d目录
l链接
b块设备
c字符设备
s套接字
p管道文件
3.按文件大小来查
eg:find /etc -size 5M
4.-not 和!都是取反的意思
eg:find /opt/ ! -name "file1"
5.动作查找
默认print
查看 ls
移动 find /etc -name "ifcfg" -exec rm -rf {} \;
6.例题示例:
# find /etc -name "*.conf" -exec cp {} /opt \;
# find / -size +10G
# find /opt -user qf
#find /opt -perm -440
#find / -type b -o -type c
#find /dev -type c
# find / -type c -o -type s
标签:opt,文件,name,eg,查找,Linux,type,find From: https://blog.csdn.net/weixin_70469391/article/details/137587864