CShell Trouver le fichier par nom

find <path> - name "*filename*"
<path> -> to find in this folder type '.'
the '*' in the filename means each wildcard, any string

 <<< examples >>>:
find . -name "*.txt"
find . -name "goku.*"
Awful Armadillo