今天研究一下find的一些常用的命令。

find格式:find filepath [-option] [-print|-exec|-ok...]

其中常用的option主要有

  1. -type d|f|s|b|c|p
  2. -perm
  3. -user
  4. -group
  5. -mtime
  6. -depth
  7. -newer
  8. -name
  9. -regex

下面我们通过例子来研究,事先准备了这样的一个目录结构

  1. [root@test tmp]# find ./
  2. ./
  3. ./root2
  4. ./root2/sub1
  5. ./root2/sub1/sub2
  6. ./root
  7. ./root/sub1
  8. ./root/sub1/sub2
  9. ./root/sub1/sub2/sub3
  10. ./test.txt

他们的仔细信息如下:

  1. [root@test tmp]# ll -R
  2. .:
  3. total
  4. drwxr-xr-x root root Jul : root
  5. drwxr-xr-x www root Jul : root2
  6. -rw-r--r-- root root Jul : test.txt
  7.  
  8. ./root:
  9. total
  10. drwxrwxrwx root root Jul : sub1
  11.  
  12. ./root/sub1:
  13. total
  14. drwxr-xr-x root root Jul : sub2
  15.  
  16. ./root/sub1/sub2:
  17. total
  18. drwxr-xr-x root root Jul : sub3
  19.  
  20. ./root/sub1/sub2/sub3:
  21. total
  22.  
  23. ./root2:
  24. total
  25. drwxr-xr-x root root Jul : sub1
  26.  
  27. ./root2/sub1:
  28. total
  29. drwxr-xr-x root root Jul : sub2
  30.  
  31. ./root2/sub1/sub2:
  32. total

-type: type后面可以接上面说的六种参数,表示查找的类型,其中f d是最常用的,分别表示查找文件和目录。

  1. [root@test tmp]# find ./ -type d
  2. ./
  3. ./root2
  4. ./root2/sub1
  5. ./root2/sub1/sub2
  6. ./root
  7. ./root/sub1
  8. ./root/sub1/sub2
  9. ./root/sub1/sub2/sub3
  1. [root@test tmp]# find ./ -type f
  2. ./test.txt

-perm 权限: perm用于查找某个权限的文件。

  1. [root@test tmp]# find ./ -perm
  2. ./root/sub1
  1. [root@test tmp]# find ./ -perm
  2. ./
  3. ./root2
  4. ./root2/sub1
  5. ./root2/sub1/sub2
  6. ./root
  7. ./root/sub1/sub2
  8. ./root/sub1/sub2/sub3

-user 用户名: 用于查找特定所有者的文件。

  1. [root@test tmp]# find ./ -user www
  2. ./root2
  3. [root@test tmp]# find ./ -user root
  4. ./root2/sub1
  5. ./root2/sub1/sub2
  6. ./root
  7. ./root/sub1
  8. ./root/sub1/sub2
  9. ./root/sub1/sub2/sub3
  10. ./test.txt

-group 用户名: 用于查找特定用户组的文件。用法与-user一样。

-mtime -n|+n:-n表示查找n天之内修改过的文件,+n表示查找n天之前修改过的文件。时间轴都以现在的时候为起点。

  1. [root@test tmp]# find ./ -mtime -
  2. .
  3. ./root2
  4. ./root2/sub1
  5. ./root2/sub1/sub2
  6. ./root
  7. ./root/sub1
  8. ./root/sub1/sub2
  9. ./root/sub1/sub2/sub3
  10. ./test.txt
  11. [root@test tmp]# find ./ -mtime +1
    [root@test tmp]#

-newer filepath: 查找比filepath更新的文件

  1. [root@test tmp]# find ./ -newer root2/sub1
  2. ./
  3. ./test.txt

-depth: 先查找处理目录里的内容,然后再处理目录。

上面的解释可能不太明了,我们来比较下面两个例子:

  1. [root@test tmp]# find root/
  2. root/
  3. root/sub1
  4. root/sub1/sub2
  5. root/sub1/sub2/sub3
  6.  
  7. [root@test tmp]# find root/ -depth
  8. root/sub1/sub2/sub3
  9. root/sub1/sub2
  10. root/sub1
  11. root/

现在是否明白了,不加-depth时,find先处理当前目录,然后接着处理目录下面的文件/目录。反之,先处理目录下面的内容,再反过来处理目录。

我们再来看上面的例子,加-depth以后,先读取root里的sub1,因为它是目录,于是又先处理了sub1里的sub2,一步一步往下推。等到了sub3以后,因为里面已经没有东西了,所以处理sub3,然后回朔处理sub2,一步一步向上。

-name 文件名: 根据文件名查找。可以使用?代替一个字符,*代替一字串,[]选择一个列表里的字符。

  1. [root@test tmp]# find ./ -name "root?"
  2. ./root2
  3. [root@test tmp]# find ./ -name "root*"
  4. ./root2
  5. ./root
  6. [root@test tmp]# find ./ -name "[rs]*"
  7. ./root2
  8. ./root2/sub1
  9. ./root2/sub1/sub2
  10. ./root
  11. ./root/sub1
  12. ./root/sub1/sub2
  13. ./root/sub1/sub2/sub3
  14. [root@test tmp]# find ./ -name "[rst]*"
  15. ./root2
  16. ./root2/sub1
  17. ./root2/sub1/sub2
  18. ./root
  19. ./root/sub1
  20. ./root/sub1/sub2
  21. ./root/sub1/sub2/sub3
  22. ./test.txt

-regex partern: 这就是牛叉的工具,可以使用正则来匹配文件名。需要注意的是,它要求匹配的是完全的路径。

  1. [root@test tmp]# find ./ -regex 'root'
  2. [root@test tmp]# find ./ -regex './root'
  3. ./root
  4. [root@test tmp]# find /tmp/ -regex '/tmp/root'
  5. /tmp/root
  6. [root@test tmp]# find ./ -regex './root.*'
  7. ./root2
  8. ./root2/sub1
  9. ./root2/sub1/sub2
  10. ./root
  11. ./root/sub1
  12. ./root/sub1/sub2
  13. ./root/sub1/sub2/sub3

regex使用的正则规则是受-regextype影响的。具体man find看一下吧。

!: 否定前缀。怎么用呢?直接看例子吧

  1. [root@test tmp]# find ./ ! -name sub*
  2. ./
  3. ./root2
  4. ./root
  5. ./test.txt
  6.  
  7. [root@test tmp]# find ./ ! -name sub* ! -type d
  8. ./test.txt

Linux find常用命令的更多相关文章

  1. Linux GDB常用命令一栏

    Linux GDB 常用命令如下: 1.启动和退出gdb (1)启动:gdb ***:显示一段版权说明: (*** 表示可执行程序名) (2)退出:quit.有的时候输入quit后会出现相关提示:类似 ...

  2. Linux 下常用命令

    linux 下常用命令: 1.删除文件命令为 rm 2.创建目录的命令是:mkdir 3.删除目录的命令是rmdir(空目录) 4.切换到root帐号:su 5.查看所有进程:ps -aux 6.杀死 ...

  3. linux 服务器常用命令整理

    linux 服务器常用命令整理 目录 网络分析 - tcpdump \ telnet \ (netstat \ ss \ lsof) \ nload 网络传输 - scp \ rsync \ (rz ...

  4. 计算机硬件基本知识及Linux的常用命令

    ------------------1. 计算机硬件基本知识------------------ CPU - 寄存器 - L1/L2/L3 - 内存 - 硬盘 - 互联网下载/其他存储介质传输 寄存器 ...

  5. 一、Linux概述 二、Linux的安装 三、Linux的常用命令(重点)

    一.Linux概述###<1>操作系统 OS,管理和控制 计算机的 硬件和软件资源的 计算机程序. 最基本的系统软件. 是用户和计算机交互的桥梁,是硬件和软件交互的桥梁. 操作系统:she ...

  6. Linux帮助——常用命令

    Linux帮助——常用命令 摘要:本文主要学习了Linux系统中常用的一些命令. uname命令 uname命令可以显示电脑以及操作系统的相关信息. 基本语法 uname [选项] 选项说明 -a:显 ...

  7. Linux虚拟机常用命令

    参考原文链接:(https://blog.csdn.net/fanyun_01/article/details/51083585) 一.Linux虚拟机常用命令 # virsh list //查看已打 ...

  8. [转帖]Linux systemd 常用命令

    Linux systemd 常用命令 https://www.cnblogs.com/tsdxdx/p/7288490.html systemctl hostnamectl timedatectl l ...

  9. Linux系统管理常用命令

    Linux系统管理常用命令 分类: Linux2011-01-10 18:26 1538人阅读 评论(0) 收藏 举报 linuxcommandservicenginxuserunix 目录(?)[+ ...

  10. Linux + NodeJS 常用命令

    Linux系统常用命令 1.su 由当前用户切换至root用户: 2. su username 切换至某一用户: 3.chmod u+w /etc/sudoers 为/etc/sudoers文件添加写 ...

随机推荐

  1. 434 Number of Segments in a String 字符串中的单词数

    统计字符串中的单词个数,这里的单词指的是连续的非空字符.请注意,你可以假定字符串里不包括任何不可打印的字符.示例:输入: "Hello, my name is John"输出: 5 ...

  2. 219 Contains Duplicate II 存在重复 II

    给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使 nums [i] = nums [j],并且 i 和 j 的绝对差值最大为 k. 详见:https://leetcod ...

  3. js类、原型——学习笔记

    js 内置有很多类,我们用的,都是从这些类实例化出来的. function Object () {} function Array () {} function String () {} functi ...

  4. JAVA高级特性反射和注解

    反射: 枚举反射泛型注解.html34.3 KB 反射, 主要是指通过类加载, 动态的访问, 检测和修改类本身状态或行为的一种能力, 并能根据自身行为的状态和结果, 调整或修改应用所描述行为的状态和相 ...

  5. 特性property

    #property装饰器用于将被装饰的方法伪装成一个数据属性,在使用时可以不用加括号而直接引用# class People:# def __init__(self,name,weight,height ...

  6. JS filters-ul li简单过滤

    功能要求:在input中输入字母,显示ul li中匹配的元素,隐藏不匹配的 <!DOCTYPE html> <html> <head> <meta chars ...

  7. ES6学习笔记(2)----变量的解构和赋值

    参考书<ECMAScript 6入门>http://es6.ruanyifeng.com/ 变量的解构和赋值 本质上:只要模式匹配,左边的变量就能被赋予右边对应的值 原则: 解构赋值的规则 ...

  8. CCF|公共钥匙盒|Java

    import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = ...

  9. iTOP-6818开发板-Android4.4系统下RFID射频模块测试例程

    平台:迅为iTOP-6818开发板 系统:Android4.4版本 例程:RFID射频模块测试例程 rc522 驱动在 Android 系统的内核是默认集成的,用户可以在开发板上使用命令“ls /de ...

  10. 迅为工业级arm开发板i.MX6DL开发板软件硬件全开源

    i.MX6是基于ARM Cortex™-A9架构的高扩展性多核系列应用处理器,促进了如高稳定性工业平板电脑.差异化智能本.前装车载中控系统和超高清电子书阅读器等新一代应用的发展.强劲的3D图形加速引擎 ...