find searches the directory tree rooted at each given file name by evaluating  the given expression from left to right, according to the rules of precedence, until the outcome is known (the left hand side is false for and operations, true for or), at which point find moves on to the next file name.
The syntax of find command is:
 
find where-to-look criteria what-to-do
 
I have tried to explain the find command usage with all possible examples:
 
 
 
 
Part I – Find Files Based on their types
 
1. Find Files Using Name in Current Directory

Find all the files whose name is codeon.txt in a current working directory.

# find . -name codeon.txt

2. Find Files Under Home Directory
  
Find all the files under /home directory with name codeon .txt.

# find /home -name codeon.txt

 
3. Find Files Using Name and Ignoring Case

Find all the files whose name is codeon .txt and contains both capital and small letters in /home directory.

# find /home -iname codeon.txt

4. Find Directories Using Name

Find all directories whose name is Codeon in /directory.

# find / -type d -name Codeon

5. Find PHP Files Using Name

Find all php files whose name is codeon .php in a current working directory.

# find . -type f -name codeon.php

6. Find all PHP Files in Directory
 

# find . -type f -name "*.php"

 

Part II – Find Files Based on their Permissions

7.  Find all the files whose permissions are 777

 
# find . -type f -perm -0777
 
8. Find all the files without permission 777
 
# find / -type f   !  -perm -777
  
9. Find all the SGID bit set files whose permissions set to 644
 
 # find / -perm -2644
  
10. Find all the Sticky Bit set files whose permission are 551
 
# find / -perm -1551
  
11. Find all SUID set Files

# find / -perm -4000
  
12. Find all SGID set files

 
  # find / -perm -2000
  
13. Find all Sticky bit set files
  
  # find / -perm -1000

14. Find all Read Only files

# find / -perm /u=r
  
15. Find all Executable Files
 

   # find / -perm /a=x
  
16. Find all 777 permission files and use chmod command to set permissions to 644

# find / -type f -perm 0777 -print -exec chmod 644 {} \;
  
17. Find all 777 permission directories and use chmod command to set permissions to 755

# find / -type d -perm 777 -print -exec chmod 755 {}  \;
  
18. Find and remove single File

To find a single file called codeon .txt and remove it.

# find . -type f -name "codeon.txt" -exec rm -f {} \;
  
19. Find and remove Multiple File

To find and remove multiple files such as .mp3 or .txt, then use.

# find . -type f -name "*.txt" -exec rm -f {}  \;

OR

# find . -type f -name "*.mp3" -exec rm -f {}  \;
  
20. Find all Empty Files

To find all empty files under certain path.

# find /tmp -type f -empty
  
21. Find all Empty Directories

To find all empty directories under certain path.

# find /tmp -type d -empty
  
22. File all Hidden Files

To find all hidden files, use below command

# find /tmp -type f -name ".*"
  
Note: always put -name before ".*"
  

Part III - Search files based on owners and groups
23. Find Single File Based on User

To find all or single file called codeon .txt under /root directory of owner root.

# find / -user root -name codeon.txt
  
24. Find all Files Based on User

To find all files that belongs to user Codeon under /home directory.

# find /home -user codeon
  
25. Find all Files Based on Group

To find all files that belongs to group Developer under /home directory.

# find /home -group Developer
  
26. Find Particular Files of User

To find all .txt files of user codeon under /home directory.

# find /home -user codeon -iname "*.txt"
 

Part IV – Find Files and Directories Based on Date and Time
27. Find Last 50 Days Modified Files

To find all the files which are modified 50 days back.

# find / -mtime 50
  
28. Find Last 50 Days Accessed Files

To find all the files which are accessed 50 days back.

# find / -atime 50
  
29. Find Last 50-100 Days Modified Files

To find all the files which are modified more than 50 days back and less than 100 days.

# find / -mtime +50 –mtime -100
  
30. Find Changed Files in Last 1 Hour

To find all the files which are changed in last 1 hour.

# find / -cmin -60
  
31. Find Modified Files in Last 1 Hour

To find all the files which are modified in last 1 hour.

# find / -mmin -60
  
32. Find Accessed Files in Last 1 Hour

To find all the files which are accessed in last 1 hour.

# find / -amin -60
 

Part V - Find files and directories based on size

33. Find 50MB Files

To find all 50MB files, use

# find / -size 50M
  
34. Find Size between 50MB – 100MB

To find all the files which are greater than 50MB and less than 100MB.

# find / -size +50M -size -100M
  
35. Find and Delete 100MB Files

To find all 100MB files and delete them using one single command.

# find / -size +100M -exec rm -rf {}  \;
  
36. Find Specific Files and Delete

Find all .mp3 files with more than 10MB and delete them using one single command.

# find / -type f -name *.mp3 -size +10M -exec ls -l {}  \;

- See more at: http://www.coolcoder.in/2014/02/find-command-usage-in-linux-with.html#sthash.vnYfMYA6.dpuf

Find command usage in Linux with excellent examples--reference的更多相关文章

  1. Linux/Unix 指令使用说明的格式介绍(the Bash Command 'Usage' Syntax)

    Linux/Unix 指令使用说明的格式介绍(the Bash Command 'Usage' Syntax) 摘自    金马的Blog 原文  http://www.lijinma.com/blo ...

  2. 5 commands to check memory usage on Linux

    Memory Usage On linux, there are commands for almost everything, because the gui might not be always ...

  3. the usage of linux command "expect"

    #! /usr/bin/expect -f# this script is used to practise the command "expect" #when "li ...

  4. Regular Expressions in Grep Command with 10 Examples --reference

    Regular expressions are used to search and manipulate the text, based on the patterns. Most of the L ...

  5. linux systemctl service examples

    一.脚本服务化目的 1.python 在 文本处理中有着广泛的应用,为了满足文本数据的获取,会每天运行一些爬虫抓取数据.但是网上买的服务器会不定时进行维护,服务器会被重启.这样我们的爬虫服务就无法运行 ...

  6. Linux: 20 Iptables Examples For New SysAdmins

    Linux comes with a host based firewall called Netfilter. According to the official project site: net ...

  7. SHELL:Find Memory Usage In Linux (统计每个程序内存使用情况)

    转载一个shell统计linux系统中每个程序的内存使用情况,因为内存结构非常复杂,不一定100%精确,此shell可以在Ghub上下载. [root@db231 ~]# ./memstat.sh P ...

  8. what codes does sudo command do in Linux?

    sometime, to make your change of configuration file be effective to web application, we have to rest ...

  9. bash: telnet: command not found (Linux安装telnet)

    问题描述: centos 系统没有 telnet 命令 bash: telnet: command not found 1.安装telnet服务 (3个) yum install xinetd tel ...

随机推荐

  1. ECS服务里或者阿里云服务器的二级域名设置方法

    我们要实现的效果是,xuxinshuai.abc.com ,具体怎么实现,看下面的流程 第一步:备案域名要有,假如就是www.abc.com 第二步:网站的服务器是IIS的情况下,在部署网站时,需要设 ...

  2. Sql Server 公用表达式(CTE)

    简介 对于select查询语句来说,通常情况下,为了使T-SQL代码更加简洁和可续,在一个查询中引入另外的结果集都是通过视图而不是子查询来进行分解的,但是,视图是作为系统对象存在数据库中,那对于结果集 ...

  3. Live 直播过程

    采集.处理.编码.封包.推流.传输.转码.分发.拉流.解码.播放,从推流到播放

  4. NSLocale 本地化信息

    前言 NSLocale 类返回本地化信息,主要体现在"语言"和"区域格式"这两个设置项. 1.NSLocale 本地化信息的创建 // 用标示符创建 NSLoc ...

  5. Mysql高性能优化规范建议

    数据库命令规范 所有数据库对象名称必须使用小写字母并用下划线分割 所有数据库对象名称禁止使用mysql保留关键字(如果表名中包含关键字查询时,需要将其用单引号括起来) 数据库对象的命名要能做到见名识意 ...

  6. Kubernetes 集群部署(3) -- Flannel 集群

    1. 下载包 wget https://github.com/coreos/flannel/releases/download/v0.11.0/flannel-v0.11.0-linux-amd64. ...

  7. 2019.3.7考试T2 离线数论??

    $ \color{#0066ff}{ 题目描述 }$ 一天,olinr 在 luogu.org 刷题,一点提交,等了一分钟之后,又蛙又替. olinr 发动了他的绝招,说:"为啥啊???&q ...

  8. Python如何在子类里扩展父类的property?

    <python cookbook>8.8节讨论子类扩展property时,一开始都晕了,思考了半天才勉强弄懂一点,赶快记下来.废话不多说,先上代码: class Person: def _ ...

  9. 【问题记录】Python运行报错:can only concatenate str (not "int") to str

    自己总是写程序时候用 + 拼接的时候忘记变量类型要一致,如下面 frame_num = "1" for i in range(1, frame_num + 1, 1): self. ...

  10. C++_IO与文件4-简单文件的输入与输出

    通过键盘输入和屏幕输出被称为是控制台输入/输出: 更广义上讲控制台的输入/输出也是一种特殊的文件输入/输出: 当使用cin进行输入时,程序将输入视为一系列的字节,其中的每个字节都被解释成字符编码: 不 ...