文件查找:
locate:
非实时,模糊匹配,查找是根据全系统文件数据库进行的;
# updatedb, 手动生成文件数据库
速度快
find:
实时
精确
支持众多查找标准
遍历指定目录中的所有文件完成查找,速度慢;
find 查找路径 查找标准 查找到以后的处理运作
查找路径:默认为当前目录
查找标准:默认为指定路径下的所有文件
处理运作:默认为显示
匹配标准:
-name 'FILENAME':对文件名作精确匹配
文件名通配:
*:任意长度的任意字符
?
[]
-iname 'FILENAME': 文件名匹配时不区分大小写
-regex PATTERN:基于正则表达式进行文件名匹配
-user USERNAME: 根据属主查找
-group GROUPNAME: 根据属组查找
-uid UID: 根据UID查找
-gid GID: 根据GID查找
-nouser:查找没有属主的文件
-nogroup: 查找没有属组的文件
-type
f: 普通文件
d
c
b
l
p
s
-size [+|-]
#k
#M
#G
/tmp目录,不是目录,并且还不能套接字类型的文件
/tmp/test目录下,属主不是user1,也不是user2的文件;
-mtime 修改时间
-ctime
-atime 访问时间
[+|-]#
-mmin
-cmin
-amin
[+|-]#
解释-atime 5 表示距离此刻刚好五天的
-atime +5 表示距离此刻大于五天都没访问过的
-atime -5 表示距离此刻五天之内有访问过的
-perm MODE:精确匹配
/MODE: 任意一位匹配即满足条件
-MODE: 文件权限能完全包含此MODE时才符合条件
-644
644: rw-r--r--
755: rwxr-xr-x
750: rwxr-x---
find ./ -perl -001
运作:
-print: 显示
-ls:类似ls -l的形式显示每一个文件的详细
-ok COMMAND {} \; 每一次操作都需要用户确认
-exec COMMAND {} \;
运作例子:{}表示匹配到的内容
[root@data-1-3 scripts]# find . -amin -30 -exec chmod u-w {} \;
[root@data-1-3 scripts]# ll
total 20
-rwxr-xr-x 1 root root 280 Jan 7 11:55 1.sh
-r--r--r-- 1 root root 0 Jan 8 08:03 a
-rwxr-xr-x 1 root root 168 Jan 7 11:13 jiou_sum.sh
-rwxr-xr-x 1 root root 261 Jan 8 03:30 sum.sh
-rwxr-xr-x 1 root root 222 Jan 7 17:42 user01.sh
-rwxr-xr-x 1 root root 489 Jan 7 18:24 user.sh
[root@data-1-3 scripts]# find . -amin -30 -ok chmod u+w {} \;
< chmod ... . > ? y
< chmod ... ./a > ? y
[root@data-1-3 scripts]# ll
total 20
-rwxr-xr-x 1 root root 280 Jan 7 11:55 1.sh
-rw-r--r-- 1 root root 0 Jan 8 08:03 a
-rwxr-xr-x 1 root root 168 Jan 7 11:13 jiou_sum.sh
-rwxr-xr-x 1 root root 261 Jan 8 03:30 sum.sh
-rwxr-xr-x 1 root root 222 Jan 7 17:42 user01.sh
-rwxr-xr-x 1 root root 489 Jan 7 18:24 user.sh
改文件名:
[root@data-1-3 scripts]# find -perm 644
./a
[root@data-1-3 scripts]# find -perm 644 -exec mv {} {}.new \;
[root@data-1-3 scripts]# ll
total 20
-rwxr-xr-x 1 root root 280 Jan 7 11:55 1.sh
-rw-r--r-- 1 root root 0 Jan 8 08:03 a.new
-rwxr-xr-x 1 root root 168 Jan 7 11:13 jiou_sum.sh
-rwxr-xr-x 1 root root 261 Jan 8 03:30 sum.sh
-rwxr-xr-x 1 root root 222 Jan 7 17:42 user01.sh
-rwxr-xr-x 1 root root 489 Jan 7 18:24 user.sh
再一个例子:将大于1M的文件找出并追加到/tmp/etc.largesfile
[root@data-1-3 scripts]# find /etc/ -size +1M
/etc/pki/tls/certs/ca-bundle.trust.crt
/etc/selinux/targeted/policy/policy.24
/etc/selinux/targeted/modules/active/policy.kern
[root@data-1-3 scripts]# find /etc/ -size +1M |xargs >> /tmp/etc.largesfile
[root@data-1-3 scripts]# cat /tmp/etc.largesfile
/etc/pki/tls/certs/ca-bundle.trust.crt /etc/selinux/targeted/policy/policy.24 /etc/selinux/targeted/modules/active/policy.kern
[root@data-1-3 scripts]# find /etc/ -size +1M -exec echo {} >> /tmp/etc.largesfile \; [root@data-1-3 scripts]# cat /tmp/etc.largesfile
/etc/pki/tls/certs/ca-bundle.trust.crt /etc/selinux/targeted/policy/policy.24 /etc/selinux/targeted/modules/active/policy.kern
/etc/pki/tls/certs/ca-bundle.trust.crt
/etc/selinux/targeted/policy/policy.24
/etc/selinux/targeted/modules/active/policy.kern
##############################################################
[root@data-1-3 scripts]# stat a
File: `a'
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd00h/64768d Inode: 131939 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-01-08 08:03:12.990058301 +0800
Modify: 2017-01-08 08:03:07.122074618 +0800
Change: 2017-01-08 08:03:12.990058301 +0800
[root@data-1-3 scripts]# find -amin -5 -ls
143757 4 drwxr-xr-x 2 root root 4096 Jan 8 08:03 .
131939 0 -rw-r--r-- 1 root root 0 Jan 8 08:03 ./a
[root@data-1-3 scripts]# find -atime -5 -ls
143757 4 drwxr-xr-x 2 root root 4096 Jan 8 08:03 .
131939 0 -rw-r--r-- 1 root root 0 Jan 8 08:03 ./a
140442 4 -rwxr-xr-x 1 root root 168 Jan 7 11:13 ./jiou_sum.sh
140514 4 -rwxr-xr-x 1 root root 222 Jan 7 17:42 ./user01.sh
140515 4 -rwxr-xr-x 1 root root 261 Jan 8 03:30 ./sum.sh
140448 4 -rwxr-xr-x 1 root root 280 Jan 7 11:55 ./1.sh
140513 4 -rwxr-xr-x 1 root root 489 Jan 7 18:24 ./user.sh
- linux文件查找工具——locate,find
一文件查找介绍 文件的查找就是在文件系统上查找符合条件的文件. 文件查找的方式:locate, find非实时查找也就是基于数据库查找的locate,效率特别高. 实时查找:find 二locate ...
- Linux文件查找命令find用法整理(locate/find)
Linux文件查找查找主要包括:locate和find 1.locate 用法简单,根据数据库查找,非实时,用法: locate FILENAME 手动更新数据库(时间可能较长) updatedb 2 ...
- linux 文件查找,which,whereis,locate,find
linux 文件查找,which,whereis,locate,find 一:which 主要用于查找可执行命令的所在位置: 如图,查找命令 ls的目录: 二:whereis 主要用于查找命令的帮助文 ...
- Linux操作系统的文件查找工具locate和find命令常用参数介绍
Linux操作系统的文件查找工具locate和find命令常用参数介绍 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 一.非实时查找(数据库查找)locate工具 locate命 ...
- Linux文件查找.md
Linux 文件查找 在Linux系统的查找相关的命令: which 查看可执行文件的位置 whereis 查看文件的位置 locate 配合数据库查看文件位置 find 实际搜寻硬盘查询文件名称 w ...
- linux文件查找find命令
linux文件查找find命令 1.文件查找 基本介绍 在文件系统上查找符合条件的文件 linux上常见的文件查找工具:find命令 查找分类 实时查找 精确查找 基本语法 find [option ...
- Linux文件查找命令find,xargs详述【转】
转自:http://blog.csdn.net/cxylaf/article/details/4069595 转自http://www.linuxsir.org/main/?q=node/137 Li ...
- 【Linux相识相知】文件查找(locate/find)
在用linux操作系统的时候,当我们忘记之前某个文件存储的位置,但是知道其文件名或者模糊的知道其文件名,我们都可以通过文件查找工具来查找,linux提供两种常用的查找工具,locate和find,在日 ...
- Linux文件查找find和locate
目 录 第1章 locate文件查找 1 1.1 概述 1 1.2 locate文件查找的特性 1 第2章 文件查找概述 1 第3章 1 3.1 文件名查找 1 3 ...
随机推荐
- 关于#!/usr/bin/env python 的用法
在linux的一些脚本里,需在开头一行指定脚本的解释程序,如: !/usr/bin/env python 再如: !/usr/bin/env perl 那么 env到底有什么用?何时用这个呢?脚本用e ...
- 快讯 | FireEye在GitHub上开源密码破解工具GoCrack
近日,FireEye 开源了一款密码破解工具 GoCrack,可在多机器上部署破解任务. GoCrack 是由 FireEye’s Innovation and Custom Engineering ...
- POJ 1017 Packets(积累)
[题意简述]:这个是别人的博客,有清晰的题意描写叙述.和解题思路,借助他的想法,能够非常好的解决问题! [分析]:贪心?模拟?见代码 //216K 16Ms #include<iostream& ...
- 深度探究apk安装过程
一.先验知识 0.PcakageaManagerService版本号变化 1.概述 2.PackageManagerService服务启动流程 3. PackageManagerService入口 二 ...
- 第十六周 项目三-max带来的冲突
分析以下程序出现的编译错误,给出解决的方案. #include<iostream> using namespace std; //定义函数模板 template<class T> ...
- C#除法精度
string.empty()NULL 首先要安装虚拟机工具VMWare Tool这样鼠标进出使用也方便. 1.虚拟机和主机之间在安装了VMWare Tool之后可以实现剪贴板的共享,即可以复制粘贴.但 ...
- 基于multiprocessing和threading实现非阻塞的GUI界面显示
========================================================= 环境:python2.7.pyqt4.eric16.11 热点:multiproce ...
- 在Fedora25上轻松安装Cuda8
http://blog.csdn.net/u010158659/article/details/53592891 Cuda 8对于Pacal架构的英伟达新一代显卡(GTX 1070/1080/Tita ...
- vue directive demo
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> ...
- 从前端看JavaWeb软件工程中的解耦合
以下为作者备忘,详情请看 http://www.cnblogs.com/feichengwulai/articles/3412946.html http://blog.csdn.net/piantou ...