I once saw a colleague uses a tool which allows to use ** to represent any directories. For example: if a file called myfile.java
sits deep inside:
src/main/com/mycompany/product/store/myfile.java
A command in the parent of src
directory:
ls **/myfile.java
can list the file.
Can anyone tell me what tool it is? What package I need to use on Ubuntu
to achieve this?