文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Linux命令——find

Linux命令——find

时间:2006-07-25  来源:linxh

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

 
 
文件: find.pdf
大小: 129KB
下载: 下载

 

相关阅读 更多 +
排行榜 更多 +
里科竞技场最新版

里科竞技场最新版

飞行射击 下载
辣了么卷饼传奇最新版

辣了么卷饼传奇最新版

模拟经营 下载
尸潮塔防最新版

尸潮塔防最新版

策略塔防 下载