find /tmp -name "*.py"
Code language: Bash (bash)

The example above uses the find command to search files in the tmp folder for Python files that have the extension .py.

To get a list of all the files with the same extension inside the current directory, look for all the Python extension files for this example.

find . -type f -name "*.py"
Code language: Bash (bash)

In the above example, the. Denotes the current directory. find Searches recursively in all the directories below the given path

I compiled a list of software and services that I use to improve my workflow, here is the link to the list.

Darryl Dias

I’m Darryl. I’m a 3D Artist, Programmer and Linux enthusiast. On this site I share my insights, tips and tricks, tutorials, methods and best practices.