look for extension file in linux code example
Example 1: how can I find perticular extension in ubuntu?
find . -type f -name "*.txt"
Example 2: terminal find file by extension recursive
find /directory/path -type f -name "*.in"
find . -type f -name "*.txt"
find /directory/path -type f -name "*.in"