“Trouver un fichier Linux” Réponses codées

Trouver le fichier par nom 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

Rechercher des fichiers dans le terminal Linux

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

Trouver un fichier Linux

find . -print | grep -i filename/part_of_file_name

will print with the path
Hutch Polecat

trouver dans le fichier Linux

grep -rnw '/path/to/somewhere/' -e 'pattern'
Breakable Bug

Trouver le fichier par nom Linux

find /path -name *.txt
Lucky Lyrebird

Réponses similaires à “Trouver un fichier Linux”

Questions similaires à “Trouver un fichier Linux”

Plus de réponses similaires à “Trouver un fichier Linux” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code