35 Practical Examples of Linux Find Command
The Linux Find Command is one of the most important and frequently used command command-line utility in Unix-like operating systems. Find command is used to search and locate the list of files and directories based on conditions you specify for files that match the arguments.
Find can be used in a variety of conditions like you can find files by permissions, users, groups, file type, date, size, and other possible criteria.
Through this article, we are sharing our day-to-day Linux find command experience and its usage in the form of examples.
In this article, we will show you the most used 35 Find Commands examples in Linux. We have divided the section into Five parts from basic to advance usage of the find command.
- Part I: Basic Find Commands for Finding Files with Names
- Part II: Find Files Based on their Permissions
- Part III: Search Files Based On Owners and Groups
- Part IV: Find Files and Directories Based on Date and Time
- Part V: Find Files and Directories Based on Size
- Part VI: Find Multiple Filenames in Linux
1. Find Files Using Name in Current Directory
Find all the files whose name is tecmint.txt in a current working directory.
2. Find Files Under Home Directory
Find all the files under /home directory with name 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.
4. Find Directories Using Name
Find all directories whose name is Tecmint in / directory.
5. Find PHP Files Using Name
Find all php files whose name is tecmint.php in a current working directory.
6. Find all PHP Files in Directory
Find all php files in a directory.
7. Find Files With 777 Permissions
Find all the files whose permissions are 777.
8. Find Files Without 777 Permissions
Find all the files without permission 777.
9. Find SGID Files with 644 Permissions
Find all the SGID bit files whose permissions set to 644.
10. Find Sticky Bit Files with 551 Permissions
Find all the Sticky Bit set files whose permission are 551.
11. Find SUID Files
Find all SUID set files.
12. Find SGID Files
Find all SGID set files.
13. Find Read Only Files
Find all Read Only files.
14. Find Executable Files
Find all Executable files.
15. Find Files with 777 Permissions and Chmod to 644
Find all 777 permission files and use chmod command to set permissions to 644.
16. Find Directories with 777 Permissions and Chmod to 755
Find all 777 permission directories and use chmod command to set permissions to 755.
17. Find and remove single File
To find a single file called tecmint.txt and remove it.
18. Find and remove Multiple File
To find and remove multiple files such as .mp3 or .txt, then use.
19. Find all Empty Files
To find all empty files under a certain path.
20. Find all Empty Directories
To file all empty directories under a certain path.
21. File all Hidden Files
To find all hidden files, use the below command.
22. Find Single File Based on User
To find all or single file called tecmint.txt under / root directory of owner root.
23. Find all Files Based on User
To find all files that belong to user Tecmint under /home directory.
24. Find all Files Based on Group
To find all files that belong to the group Developer under /home directory.
25. Find Particular Files of User
To find all .txt files of user Tecmint under /home directory.
26. Find Last 50 Days Modified Files
To find all the files which are modified 50 days back.
27. Find Last 50 Days Accessed Files
To find all the files which are accessed 50 days back.
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.
29. Find Changed Files in Last 1 Hour
To find all the files which are changed in the last 1 hour.
30. Find Modified Files in Last 1 Hour
To find all the files which are modified in the last 1 hour.
31. Find Accessed Files in Last 1 Hour
To find all the files which are accessed in the last 1 hour.
32. Find 50MB Files
To find all 50MB files, use.
33. Find Size between 50MB – 100MB
To find all the files which are greater than 50MB and less than 100MB.
34. Find and Delete 100MB Files
To find all 100MB files and delete them using one single command.
35. Find Specific Files and Delete
Find all .mp3 files with more than 10MB and delete them using one single command.
That’s it, We are ending this post here, In our next article, we will discuss more about other Linux commands in-depth with practical examples. Let us know your opinions on this article using our comment section.
If You Appreciate What We Do Here On TecMint, You Should Consider:
TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
We are thankful for your never ending support.
25 примеров использования команды find для начинающих знакомство с Linux
Joshua Kormik
Read more posts by this author.
Joshua Kormik
Команда find — это одна из самых полезных и важных команд на Linux.
Она по умолчанию установлена и доступна практически на всех версиях Linux. В Linux все хранится в виде файлов, и очевидно стоит знать, как эти файлы искать.
С помощью команды find можно искать интересующие файлы по ряду поисковых критериев. Критерии можно указывать как вместе, так и по отдельности, а затем уже совершать действия с полученном результатом. В этом руководстве мы собираемся описать команду find с помощью примеров использования.
1)Выведите списки всех файлов текущей директории и ее подкаталогов
Для того чтобы вывести списки всех файлов текущей директории и ее подкаталогов, мы можем использовать:
В качестве альтернативы, мы можем также использовать ‘find . ’ , которая выдаст вам тот же результат.
2)Найдите все файлы и директории в вашей текущей рабочей директории
Если нужно найти только директории, то можно использовать:
Чтобы найти только файлы, а не директории:
3)Выведите список всех файлов определенной директории
Для того чтобы найти файлы из определенной директории надо ввести:
This command will look for all the files in /root directory.
4)Найдите файл по имени в директории
Для поиска файла по имени в определенной директории введите:
Эта команда будет искать файл linuxtechi.txt в директории /root. Так же мы найти все файлы с расширением .txt:
5)Найдите файл во множестве директорий
Для поиска файлов во множестве директорий введите:
With this command, we can look for linuxtechi.txt file in /root & /etc directories.
С помощью этой команды мы можем найти файл linuxtechi.txt в директориях /root и /etc .
6)Найдите файл по имени без учета регистра
Ищите файлы без учета регистра с помощью -iname:
В результате вы получите все файлы с названием linuxtechi.txt. При этом файлов может быть несколько, так как linuxtechi.txt будет равняться LINUXTECHI.txt .
7)Найдите все типы файлов отличные от упомянутого
Давайте предположим, что нам необходимо найти все файлы отличные от определенного типа файлов. Чтобы этого добиться вводим:
8)Найдите файлы по множеству признаков
Мы можем совмещать более чем одно условие при поиске файлов. Предположим, что нам нужны файлы с расширениями .txt и .html :
9)Найдите файлы с использованием условия OR
Так же мы можем совмещать несколько поисковых критериев, что приведет к поиску файлов на основе удовлетворения одному из условий. Делается это с помощью оператора OR:
10)Поиск файлов на основе разрешений
Чтобы найти файлы с определенным доступом используйте -perm :
11)Найдите все скрытые файлы
Для поиска скрытых файлов в директории введите:
12)Найдите все файлы со SGID
Для поиска файлов с битами SGID исполните команду:
13) Найдите все файлы со SUID
Для поиска файлов с битами SUID используем:
14)Найдите все исполняемые файлы
Для поиска только исполняемых файлов введите:
15)Найдите файлы с доступом только для чтения
К тому же, с помощью команды find можно найти файлы, доступные только для чтения:
16)Найдите все файлы пользователя
Для поиска файлов определенного пользователя надо использовать следующую команду:
17)Найдите все файлы группы
Для поиска файлов определенной группы используем:
18)Найдите все файлы определенного размера
Если мы хотим искать, размер которого нам известен, тогда можно использовать -size :
19)Найдите все файлы в диапазоне размеров
Если мы ищем файл, размер которого нам не известен, но зато мы знаем примерный его размер, или нам просто сделать выборку файлов в определенном диапазоне размеров, то можно ввести:
Можно использовать команд find при поиске файлов тяжелее, чем, например, 50 mb:
20)Найдите файлы, измененные N дней назад
For example, we want to locate all the files that have been modified 8 days ago. We can accomplish that using ‘-mtime‘ option in find command
Например, мы можем обнаружить найти все файлы отредактированные 8 дней назад. Делается это с помощью команды -mtime:
21)Найдите файлы, в которые заходили N дней назад
Можно найти файлы, в которые входили 8 дней назад с помощью -atime:
22)Найдите все пустые файлы и директории
Для нахождения всех пустых файлов в системе введем:
А чтобы вывести их директории:
23)Найдите самый большой и самый маленький файлы
Для вывода списка самых больших или самых маленьких файлов используем find в связке с sort , и, если нам понадобится вывести 3 «самых-самых», то используем еще head .
Для вывода трех файлов из текущей директории введем:
Схожим образом мы можем вывести самые маленькие файлы текущей директории:
24)Найдите все файлы с определенным доступом и сменить его на 644 (или еще на что-нибудь)
Команда find может предложить продвинутые варианты использования. К примеру, мы может изменить все разрешения 644 определенных файлов на 777. Для этого исполняем:
25)Найдите все файлы, подходящие по определенным критериям, и удалите их
Рано или поздно может понадобиться удалить те или иные файлы. Если так произошло, то вводим:
Вышеуказанные примеры отлично демонстрируют возможности команды find , которая способна существенно упростить задачу поиска файлов.