Many will found that this is repeating questions but i have gone through all the questions before asked about this topic but none worked for me.
I want to print full
This prints all files, recursively, from the current directory.
find "$PWD" | awk /.ogg/ # filter .ogg files by regex find "$PWD" | grep .ogg # filter .ogg files by term find "$PWD" | ack .ogg # filter .ogg files by regex/term using https://github.com/petdance/ack2