“Buscar archivo por nombre Linux” Código de respuesta

Bash encontrar archivo por nombre

find . -name 'mystring*'
Wicked Wryneck

Buscar archivo por nombre Linux

find /path -name *.txt
find /path -type f -name test.txt
find /path -name failed*.* -type f
find /path -type f -not -name “*.html”
find / -name “file.txt” -size +4M
find /dev/ -type b -name “sda*”
David Cao

Buscar archivos en Linux Terminal

find /path/to/folder/ -iname *file_name_portion*

#Example
find / -iname *test*

#Output

/downloads/test_2.txt
/downloads/test_1.csv
/home/ubuntu/first_test.txt
Famous Fox

Encuentra un archivo Linux

find . -print | grep -i filename/part_of_file_name

will print with the path
Hutch Polecat

Buscar archivo por nombre Linux

find /path -name *.txt
Lucky Lyrebird

archivo de búsqueda de Linux por nombre

find / -name file.look
Uninterested Unicorn

Respuestas similares a “Buscar archivo por nombre Linux”

Preguntas similares a “Buscar archivo por nombre Linux”

Más respuestas relacionadas con “Buscar archivo por nombre Linux” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código