国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Table of Contents
Part I – Basic Find Commands for Finding Files with Names
1. Find Files Using Name in Current Directory
2. Find Files Under Home Directory
3. Find Files Using Name and Ignoring Case
4. Find Directories Using Name
5. Find PHP Files Using Name
6. Find all PHP Files in the Directory
Part II – Find Files Based on their Permissions
7. Find Files With 777 Permissions
8. Find Files Without 777 Permissions
9. Find SGID Files with 644 Permissions
10. Find Sticky Bit Files with 551 Permissions
11. Find SUID Files
12. Find SGID Files
13. Find Read-Only Files
14. Find Executable Files
15. Find Files with 777 Permissions and Chmod to 644
16. Find Directories with 777 Permissions and Chmod to 755
17. Find and Remove Single File
18. Find and remove Multiple File
19. Find all Empty Files
20. Find all Empty Directories
21. File all Hidden Files
Part III – Search Files Based On Owners and Groups
22. Find Single File Based on User
23. Find all Files Based on User
24. Find all Files Based on Group
25. Find Particular Files of User
Part IV – Find Files and Directories Based on Date and Time
28. Find Last 50-100 Days Modified Files
27. Find Last 50 Days Accessed Files
29. Find Changed Files in Last 1 Hour
30. Find Modified Files in Last 1 Hour
31. Find Accessed Files in Last 1 Hour
Part V – Find Files and Directories Based on Size
32. Find 50MB Files
33. Find Size between 50MB – 100MB
34. Find and Delete 100MB Files
35. Find Specific Files and Delete
Home System Tutorial LINUX 35 Practical Examples of Linux Find Command

35 Practical Examples of Linux Find Command

Jun 13, 2025 am 09:37 AM

35 Practical Examples of Linux Find Command

The Linux find command is one of the most important and frequently used command-line utilities in Unix-like operating systems. The find command is used to search for and locate a list of files and directories based on the conditions you specify, matching the arguments.

The find command provides a wide array of options, allowing users to leverage it in diverse conditions. It empowers individuals to search for files based on a multitude of criteria, including permissions, users, groups, file types, dates, sizes, and various other parameters.

In this article, we will present you with 35 of the most commonly used examples of Find Commands in Linux. We have divided this section into five parts, covering the usage of the find command from basic to advanced levels.

Part I – Basic Find Commands for Finding Files with Names

When it comes to finding files with specific names, the find command offers a range of options to streamline the process. Here are some basic find commands for locating files based on their names.

1. Find Files Using Name in Current Directory

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

<strong># find . -name tecmint.txt</strong>

./tecmint.txt

2. Find Files Under Home Directory

Find all the files under /home directory with the name tecmint.txt.

<strong># find /home -name tecmint.txt</strong>

/home/tecmint.txt

3. Find Files Using Name and Ignoring Case

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

<strong># find /home -iname tecmint.txt</strong>

./tecmint.txt
./Tecmint.txt

4. Find Directories Using Name

Find all directories whose name is Tecmint in / directory.

<strong># find / -type d -name Tecmint</strong>

/Tecmint

5. Find PHP Files Using Name

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

<strong># find . -type f -name tecmint.php</strong>

./tecmint.php

6. Find all PHP Files in the Directory

Find all php files in a directory.

<strong># find . -type f -name "*.php"</strong>

./tecmint.php
./login.php
./index.php

Part II – Find Files Based on their Permissions

Here are some examples of find commands for finding files based on their permissions.

7. Find Files With 777 Permissions

Find all the files whose permissions are 777.

<strong># find . -type f -perm 0777 -print</strong>

8. Find Files Without 777 Permissions

Find all the files without permission 777.

<strong># find / -type f ! -perm 777</strong>

9. Find SGID Files with 644 Permissions

Find all the SGID bit files whose permissions are set to 644.

# find / -perm 2644

10. Find Sticky Bit Files with 551 Permissions

Find all the Sticky Bit set files whose permission is 551.

<strong># find / -perm 1551</strong>

11. Find SUID Files

Find all SUID set files.

<strong># find / -perm /u=s</strong>

12. Find SGID Files

Find all SGID set files.

<strong># find / -perm /g=s</strong>

13. Find Read-Only Files

Find all Read-Only files.

<strong># find / -perm /u=r</strong>

14. Find Executable Files

Find all Executable files.

<strong># find / -perm /a=x</strong>

15. Find Files with 777 Permissions and Chmod to 644

Find all 777 permission files and use the chmod command to set permissions to 644.

<strong># find / -type f -perm 0777 -print -exec chmod 644 {} \;</strong>

16. Find Directories with 777 Permissions and Chmod to 755

Find all 777 permission directories and use the chmod command to set permissions to 755.

<strong># find / -type d -perm 777 -print -exec chmod 755 {} \;</strong>

17. Find and Remove Single File

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

<strong># find . -type f -name "tecmint.txt" -exec rm -f {} \;</strong>

18. Find and remove Multiple File

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

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

OR

<strong># find . -type f -name "*.mp3" -exec rm -f {} \;</strong>

[ You might also like: 4 Useful Tools to Find and Delete Duplicate Files in Linux ]

19. Find all Empty Files

To find all empty files under a certain path.

<strong># find /tmp -type f -empty</strong>

20. Find all Empty Directories

To file all empty directories under a certain path.

<strong># find /tmp -type d -empty</strong>

21. File all Hidden Files

To find all hidden files, use the below command.

<strong># find /tmp -type f -name ".*"</strong>

Part III – Search Files Based On Owners and Groups

Here are some examples of find commands for finding files based on owners and groups:

22. Find Single File Based on User

To find all or single files called tecmint.txt under / root directory of owner root.

<strong># find / -user root -name tecmint.txt</strong>

23. Find all Files Based on User

To find all files that belong to user Tecmint under /home directory.

<strong># find /home -user tecmint</strong>

24. Find all Files Based on Group

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

<strong># find /home -group developer</strong>

25. Find Particular Files of User

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

<strong># find /home -user tecmint -iname "*.txt"</strong>

Part IV – Find Files and Directories Based on Date and Time

Here are some examples of find commands for locating files and directories based on date and time.

26. Find Last 50 Days Modified Files

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

<strong># find / -mtime 50</strong>

27. Find Last 50 Days Accessed Files

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

<strong># find / -atime 50</strong>

28. 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.

<strong># find / -mtime  50 –mtime -100</strong>

29. Find Changed Files in Last 1 Hour

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

<strong># find / -cmin -60</strong>

30. Find Modified Files in Last 1 Hour

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

<strong># find / -mmin -60</strong>

31. Find Accessed Files in Last 1 Hour

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

<strong># find / -amin -60</strong>

Part V – Find Files and Directories Based on Size

Here are some examples of find commands for locating files and directories based on size.

32. Find 50MB Files

To find all 50MB files, use.

<strong># find / -size 50M</strong>

33. Find Size between 50MB – 100MB

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

<strong># find / -size  50M -size -100M</strong>

34. Find and Delete 100MB Files

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

<strong># find / -type f -size  100M -exec rm -f {} \;</strong>

35. Find Specific Files and Delete

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

<strong># find / -type f -name *.mp3 -size  10M -exec rm {} \;</strong>

That’s it, We are ending this post here, In our next article, we will discuss other Linux commands in-depth with practical examples. Let us know your opinions on this article using our comment section.

The above is the detailed content of 35 Practical Examples of Linux Find Command. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

10 Best File Comparison and Difference (Diff) Tools in Linux 10 Best File Comparison and Difference (Diff) Tools in Linux Jun 11, 2025 am 10:26 AM

While writing program files or normal text files, programmers and writers sometimes want to know the difference between two files or two versions of the same file. When you compare two computer files on Linux, the difference between their contents is

How to create a new, empty file from the command line? How to create a new, empty file from the command line? Jun 14, 2025 am 12:18 AM

There are three ways to create empty files in the command line: First, the simplest and safest use of the touch command, which is suitable for debugging scripts or placeholder files; Second, it is quickly created through > redirection but will clear existing content, which is suitable for initializing log files; Third, use echo"> file name to create a file with an empty string, or use echo-n""> file name to avoid line breaks. These three methods have their own applicable scenarios, and choosing the right method can help you complete the task more efficiently.

5 Best Open Source Mathematical Equation Editors for Linux 5 Best Open Source Mathematical Equation Editors for Linux Jun 18, 2025 am 09:28 AM

Are you looking for good software to write mathematical equations? If so, this article provides the top 5 equation editors that you can easily install on your favorite Linux distribution.In addition to being compatible with different types of mathema

dutree - Analyze File System Disk Usage in Linux dutree - Analyze File System Disk Usage in Linux Jun 11, 2025 am 10:33 AM

dutree is a free, open-source, fast command-line tool for analyzing disk usage, written in the Rust programming language. It was created by combining durep (disk usage reporter) and tree (list directory content in tree-like format) command-line tools

How to Install Eclipse IDE in Debian, Ubuntu, and Linux Mint How to Install Eclipse IDE in Debian, Ubuntu, and Linux Mint Jun 14, 2025 am 10:40 AM

Eclipse is a free integrated development environment (IDE) that programmers around the world use to write software, primarily in Java, but also in other major programming languages using Eclipse plugins.The latest release of Eclipse IDE 2023?06 does

15 Useful 'ifconfig' Commands to Configure Network in Linux 15 Useful 'ifconfig' Commands to Configure Network in Linux Jun 11, 2025 am 10:01 AM

ifconfig in short “interface configuration” utility for system/network administration in Unix/Linux operating systems to configure, manage, and query network interface parameters via command-line interface or in a system configuration scripts

SCP Linux Command – Securely Transfer Files in Linux SCP Linux Command – Securely Transfer Files in Linux Jun 20, 2025 am 09:16 AM

Linux administrators should be familiar with the command-line environment. Since GUI (Graphical User Interface) mode in Linux servers is not commonly installed.SSH may be the most popular protocol to enable Linux administrators to manage the servers

24 Hilarious Linux Commands That Will Make You Laugh 24 Hilarious Linux Commands That Will Make You Laugh Jun 14, 2025 am 10:13 AM

Linux has a rich collection of commands, and while many of them are powerful and useful for various tasks, there are also some funny and whimsical commands that you can try out for amusement. 1. sl Command (Steam Locomotive) You might be aware of the

See all articles