run .rm file in linux code example
Example 1: how to delete particular type file recursively in linux
find . -type f -name '*.o' -delete
Example 2: how to delet file comand promt linux
#how to remove Files in Linux
rm filename
find . -type f -name '*.o' -delete
#how to remove Files in Linux
rm filename