how to remove all files with a certain file type in terminal code example
Example 1: ubuntu delete all files with extension
cd <dir>
find . -type f -iname \*.jpg -delete
Example 2: how to remove all files with a certain file type in terminal
rm -rf ./*.tmp
Example 3: how to remove all files with a certain file type in terminal
find /path -name '*.orig' -delete