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 ...
随机推荐
- java的多线程安全,ReentrantLock与synchronized锁
前言 多线程总的来说是一个很大的模块,所以虽然之前就想写但一直感觉有地方没有理解透,在经过了一段时间学习后,终于有点感觉了,在此写下随笔. 多线程安全问题##: 首先和大家讨论一下多线程为什么会不安全 ...
- .NET架构转Java开发必须了解的历史
终于不在职守在.NET领域 .NET的winform和webform项目也开发了很多了 尤其是WEB领域 从ASP -> ASP.NET 2.0 -> ASP.NET MVC 4.0 - ...
- 家用wifi信号覆盖增强扩展实用指南
家用wifi信号覆盖增强扩展实用指南 现在网上很多号称穿墙王的无线路由器,但是一般用起来效果都不理想,其实最主要的原因还是家里面一般每个房间不大,但是墙比较多.并且一般也没有一个所谓的中心点放置路由器 ...
- ubuntu 安装 删除 卸载 Deb 包文件
图形界面: 安装deb 直接双击图标,输入密码后就可自动安装. 卸载deb 1. 菜单-系统->系统管理->新立得软件包管理器 或 Alt+F2(运行窗口)输入 sudo synaptic ...
- ES更改参数max_result_window
今天开发那边说翻页超过10000报错.早上来查阅官网手册,说from/size默认是10000.通过参数index.max_result_window进行控制.那么直接改这个参数即可. 1.先看看默认 ...
- Redhat7无法启动mysql
是这样的,7的这个环境安装了叫MariaDB了 安装MariaDB之后必须先启动MariaDB [root@redhatx ~]# yum -y install mysql [root@redhatx ...
- 洛谷P2754 [CTSC1999]家园(最大流)
传送门 这题思路太强了……大佬们怎么想到的……我这菜鸡根本想不出来…… 先判断是否能到达,对每一艘飞船能到的地方用并查集合并一下,最后判断一下是否连通 然后考虑几天怎么判断,我们可以枚举. 每一个点表 ...
- Windows下Python第三方.whl的安装
1.改成.zip 2.解压 3.然后把解压出来的文件放到C:\Python27\Lib\site-packages下即可.
- django中给ajax提交加上csrf
代码来自djangoproject网站 在html中的script标签下插入下面代码 在html文档加载时候运行下面代码,并且使用$.ajaxSetup设置ajax每次调用时候传入的数据,$.ajax ...
- springcloud整合bus
bus的使用主要是配合springcloud config部分来一起使用,并没有单独使用 首先建立服务端: <dependency> <groupId>org.springfr ...