ubuntu find file by extension 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"
Example 3: find linux with extension
find /home/username/ -name "*.err"