Como pesquisar todas as subpastas no Linux por arquivo

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

example

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