“Найдите рекурсивный Linux” Ответ

Поиск всех папок для совпадения файлов linux

find . -name "foo*"
Kayomez

Ubuntu Terminal Найти рекурсивное файл

sudo find . -print | grep -i '.*[.]xml'
Homely Hoopoe

найти рекурсивно

Extremely useful command!!
In Mac and Linux: Define directory where to search as "." for current directory
and then specify the name or regex of file or folder to find.

find . -name "foo*"  

In Windows: Define "/s" for a recursively search and name or regex of file or
folgder to search

dir /s "foo*"
Armandres

Найдите рекурсивный Linux

~$ find . -print | grep -i foo
Tremendous Enceladus

Ответы похожие на “Найдите рекурсивный Linux”

Вопросы похожие на “Найдите рекурсивный Linux”

Больше похожих ответов на “Найдите рекурсивный Linux” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования