Forum Moderators: bakedjake
rm *_yyy.htm
Obviously this only works if the files are all in the local directory.
To do this machine-wide (as root) :
rm `locate _yyy.htm`
Or use find instead of locate.
There's better (regex based) ways to handle the _yy.htm but odds are that string would only be found at the end of a filename.