Find command usage in Linux with excellent examples--reference
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
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
7. Find all the files whose permissions are 777
8. Find all the files without permission 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
11. Find all SUID set Files
# find / -perm -4000
12. Find all SGID set files
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
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 ".*"
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"
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
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的更多相关文章
- Linux/Unix 指令使用说明的格式介绍(the Bash Command 'Usage' Syntax)
Linux/Unix 指令使用说明的格式介绍(the Bash Command 'Usage' Syntax) 摘自 金马的Blog 原文 http://www.lijinma.com/blo ...
- 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 ...
- the usage of linux command "expect"
#! /usr/bin/expect -f# this script is used to practise the command "expect" #when "li ...
- 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 ...
- linux systemctl service examples
一.脚本服务化目的 1.python 在 文本处理中有着广泛的应用,为了满足文本数据的获取,会每天运行一些爬虫抓取数据.但是网上买的服务器会不定时进行维护,服务器会被重启.这样我们的爬虫服务就无法运行 ...
- Linux: 20 Iptables Examples For New SysAdmins
Linux comes with a host based firewall called Netfilter. According to the official project site: net ...
- SHELL:Find Memory Usage In Linux (统计每个程序内存使用情况)
转载一个shell统计linux系统中每个程序的内存使用情况,因为内存结构非常复杂,不一定100%精确,此shell可以在Ghub上下载. [root@db231 ~]# ./memstat.sh P ...
- 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 ...
- bash: telnet: command not found (Linux安装telnet)
问题描述: centos 系统没有 telnet 命令 bash: telnet: command not found 1.安装telnet服务 (3个) yum install xinetd tel ...
随机推荐
- 《C#多线程编程实战》1.10 lock关键字
lock关键字是锁定资源用的. 书上的代码解释很好. /// <summary> /// 抽象类 加减法 /// </summary> abstract class Count ...
- 老程序员解Bug的通用套路
千万不要当程序员面说有bug 对于新手程序员而言,在复杂代码中找BUG是一个难点.下面我们总结下老从程序员解Bug的通用套路,希望对大家有帮助. 1.IDE调试 根据项目特点和语言特点选择一个最合适的 ...
- 洛谷P3122 [USACO15FEB]圈住牛Fencing the Herd(计算几何+CDQ分治)
题面 传送门 题解 题目转化一下就是所有点都在直线\(Ax+By-C=0\)的同一侧,也就可以看做所有点代入\(Ax+By-C\)之后的值符号相同,我们只要维护每一个点代入直线之后的最大值和最小值,看 ...
- Win通过端口号结束进程
准备: 01在cmd中查看命令使用 格式:命令名称 /? 02netstat 03findstr C:\Users\Good>findstr /? 在文件中寻找字符串. ...... strin ...
- 获取当前按钮或者html的ID名称
今天做的上传图片,点击图片删除. 随机给图片id,获取图片id,然后删除图片. 由于图片id是随机的,用点击img或者点击class,获取id都不行,最后用onclick事件获取. js代码如下: $ ...
- flex 实例Demo
Flex 页面布局 很方便 快捷 <!DOCTYPE html> <html lang="en"> <head> <meta charse ...
- 【转】LAMBDAFICATOR: Crossing the gap from imperative to functional programming through refactorings
Link:http://refactoring.info/tools/LambdaFicator/ Problem Description Java 8 will support lambda exp ...
- C++_类和动态内存分配1—动态内存和类
静态类成员 num_strings成员声明为静态存储类.静态类成员有一个特点:无论创建了多少对象,程序都只创建一个静态类变量副本.也就是说,类的所有对象共享一个静态成员.num_strings成员可以 ...
- SQL 随手记
SQL 学习片段: 建立一个简单的联系数据表, mobile_number char(11).mobile_province nvarchar(50).mobile_area nvarchar(200 ...
- UVALive - 5963 ad-hoc
注意到合法条件是对称的,那很有可能与2有关, 小于2表示没有这一页,大于2表示冲突了 我也不知道这样做对不对的(输入范围很迷),试一下就A了... #include<bits/stdc++.h& ...