remove a certain file in bash script code example
Example 1: how to delete particular type file recursively in linux
find . -type f -name '*.o' -delete
Example 2: how to delete file using bash
rm
rm something.html
rm ./dist/something.html
find . -type f -name '*.o' -delete
rm
rm something.html
rm ./dist/something.html