I want to delete all files which have names containing a specific word, e.g. \"car\". So far, I came up with this:
find|grep car
How do I pass
find start_dir -iname \*car\* -exec rm -v {} \;