find实现特殊功能示例

find列出目录下所有文件:

# find /shell-script/

# find /shell-script/ -print

find列出文件夹中所有开头为text的文件,参数-iname意思忽略大小写:


# find /shell-script/ -name "text*"
# find /shell-script/ -name "text*" -print
# find /shell-script/ -iname "text*" -print

find列出文件夹中所有开头为text或c开头的文件:


# find /shell-script/ \( -name "text*" -o -name "c*" \) -print

find列出目录路径包含shell的文件:


# find /shell-script/ -path "*shell*" -print

find命令中使用正则表达式,其中!表示否定的意思:


# find . -regex ".*\(\.sh\|\.txt\)$"
# find . -iregex ".*\(\.sh\|\.txt\)$"
# find . ! -iregex ".*\(\.sh\|\.txt\)$"

 

find指定目录深度查找:


# find /etc/ -maxdepth 2 -mindepth 2 -name "passwd" -print

find查找特定文件格式的文件:


# find /usr/local/ -type d -print
# find /usr/local/ -type f -print

# find /usr/ -type l -print

find安找文件时间进行查找,linux下文件包含3种时间格式:


# find . -type f -atime -1 -print
# find . -type f -mtime 1 -print
# find . -type f -mtime +3 -print

# find . -type f -newer text1.txt -name "*.txt"

find按照文件大小查找:


# find . -type f -size +2k

find查找相应文件,并删除文件:


# find . -type f -newer text1.txt -name "*.txt" -delete

find按照权限进行查找:


# find -type f -perm 777 -print
# find . -type f -user chavin -print

find对查找到的文件执行动作(-exec):


# find . -type f -user chavin -exec chown -R root:root {} \;
# find . -type f -user chavin -exec chown -R root:root {} +;

find查找但是屏蔽特定文件:


# find . \( -name "oracle*" -prune \) -o \( -type f -print \)

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值