I\'m trying to find all files with a specific extension in a directory and its subdirectories with my bash (Latest Ubuntu LTS Release).
This is what\'s written in a
To find all the pom.xml files in your current directory and print them, you can use:
pom.xml
find . -name 'pom.xml' -print