【转】find命令常用示例

find [目录] [文件]
例:
1)查找/home目录下所有的目录
find /home -type d

type:
b block (buffered) special
c character (unbuffered) special
d directory
p named pipe (FIFO)
f regular file
l symbolic link; this is never true if the -L option or the
-follow option is in effect, unless the symbolic link is
broken. If you want to search for symbolic links when -L
is in effect, use -xtype.

2) 查找/home目录下所有大小大于100M的文件
find /home -size +100M
数字前的加号,表示大于给定值; 减号表示小于给定值; 不加为等于。
`b' for 512-byte blocks (this is the default if no suffix is used)
`c' for bytes
`w' for two-byte words
`k' for Kilobytes (units of 1024 bytes)
`M' for Megabytes (units of 1048576 bytes)
`G' for Gigabytes (units of 1073741824 bytes)

3) 查找最近5天内修改的文件 find /home -mtime -5
查找最近5天前访问的文件 find /home -atime +5
查找最近5天内改变过状态的文件 find /home -ctime -5
查找当前目录下比a.txt文件新的文件 find . -newer a.txt
查找当前目录下比a.txt文件新但比b.txt旧的文件find . -newer a.txt ! -newer b.txt

4)查找文件并执行命令
find . -name "*.core" -exec rm -rf {} \;


==================
更详细的信息:man find



原文地址 http://blog.chinaunix.net/u/8780/showart_145315.html
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值