command for remove a file in linux instance code example
Example 1: how to delete particular type file recursively in linux
find . -type f -name '*.o' -delete
Example 2: shell remove file
rm <file_name>
find . -type f -name '*.o' -delete
rm <file_name>