In this video, I go over how to find files in Linux terminal. In this Linux Tutorial you will learn everything you ever wanted to know about the find commend and even some stuff you didn’t know you wanted to know.. Basic syntax. -find options starting/path expression. $ find -name media*. Note: -name is CASE SENSITIVE for results. $ find /var/html -name *.html. $ find -type d -iname Downloads. Note: -iname makes it so results are not matched based on CASE.. Advanced syntax. Find Files based on modified in the past 1 day. $ find -mtime -1. Note: cull this down by using | grep partial file name. Or Find Files based on modified in the past 10 minutes. $ find -mmin -10. OR find Files based on modified in the past 10 minutes and greater than 10 megs. $ find -mmin -10 -size +10M. You can also add the -delete command at the end to delete ALL FILES FOUND!!! Use with extreme caution! Bonus easily find where a program is located with «whereis». $ whereis gimp. ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅. Titus Tech Talk ➜ https://www.youtube.com/c/ChrisTitusTechStreams. Recommended Windows Anti-Virus ➜ https://links.christitus.com/antivirus. Recommended VPN Service ➜ https://links.christitus.com/expressvpn. Recommended Web Browser ➜ https://links.christitus.com/brave. Website Recommendations ➜ https://www.christitus.com/recommendations. My Gear ➜ https://www.amazon.com/shop/christitustech. ���� Contact Me ����. YouTube Membership ➜ https://www.youtube.com/channel/UCg6gPGh8HU2U01vaFCAsvmQ/join. ChrisTitus.com Members (Patreon Alternative) ➜ https://christitus.com/members/. Twitter ➜ https://twitter.com/christitustech. ┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅┅. DISCLAIMER: This video and description contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This helps supports the channel and allows us to continue to make videos like this. Thank you for your support! Please note: by clicking any of the above links you are NOT charged extra and in some instances will pay a discounted rate.
В данном видео мы рассмотрим команду find с опцией -name linux. Установка и настройка linux в Бердянске. Обслуживание организаций под ОС linux., ремонт ноутбуков, компьютеров, мониторов, ТВ, телевизоров, планшетов, сборка и настройка. Профи сервис г.Бердянск ул. Смоленская 3
Все дистрибутивы Linux имеют сходное дерево папок и файлов, которое определяется стандартом FHS. Разбираемся со стандартом, а так же учимся искать файлы, команды и информацию о них.
В данном видео мы рассмотрим команду find с опцией -name linux. Установка и настройка linux в Бердянске. Обслуживание организаций под ОС linux., ремонт ноутбуков, компьютеров, мониторов, ТВ, телевизоров, планшетов, сборка и настройка. Профи сервис г.Бердянск ул. Смоленская 3
Linux команда find команда поиска файлов.. Ссылка на видео «Linux/Ubuntu шаблоны подстановки (wildcards).». https://www.youtube.com/watch?v=BxEIYeNRCGE. Ссылка на видео «Linux навигация относительные и абсолютные пути (ссылки).». https://www.youtube.com/watch?v=ShBhgZJ2ADs. #!/bin/bash. # find поиска файла по параметрам. # 0:18 поиск файла по имени в текущей директории. find -name file_name. # 1:05 поиск файла по имени в текущей директории без учёта регистра. find -iname file_name. # 2:06 поиск файла по имени в домашней директории без учёта регистр. find -iname file_name. # 2:21 поиск файла по имени по всей файловой системе без учёта регистра. find / -iname file_name. # 2:51 поиск по имени с помощью шаблонов подстановки. find -iname fi?e_nam? find -iname f*. # 4:20 поиск по размеру (все, что больше). find -size +1000k. # 4:51 поиск по размеру (все, что меньше). find -size -1k. # 5:07 найти пустой файл. find -empty. # 5:44 справка. find -help