Recursively look for files with a specific extension

后端 未结 10 1410
抹茶落季
抹茶落季 2020-11-29 14:38

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

10条回答
  •  [愿得一人]
    2020-11-29 15:12

    To find all the pom.xml files in your current directory and print them, you can use:

    find . -name 'pom.xml' -print
    

提交回复
热议问题