I was looking for a way to delete files with the extension LCK from multiple directories. The following command did the trick.

find /home/webs-qa -name *.LCK -exec rm -f {} \;

Plucked this from
http://pro.linuxorbit.com