find extensions linux code example
Example 1: find linux with extension
find /home/username/ -name "*.err"
Example 2: find more than one extension file in linux
find . -type f -name "*.txt" -u -name "*.txt"
find /home/username/ -name "*.err"
find . -type f -name "*.txt" -u -name "*.txt"