Comment rechercher tous les sous-dossiers de Linux pour le fichier

find . -name "enter the file name or search pattern here"

example

find . -name "file_name.py"
or
find . -name "*.py"
TheRubberDucky