Use the find command to search for particular files and then delete.
Very useful for removing log archives
Do a test search first to view the results.
find . -name "*.bak" -type f
If happy with the results then perform a delete.
find . -name "*.bak" -type f -delete