NOTE - This answer involves removing files. This is dangerous. Please test, test and test some more. These lines work for me but you should test and check them with your technical support before using them on a real production system. If you loose files.... its not my fault.
This is useful (but not really what you are after) :
find /usr/local/bin/cms/backup* -ctime 30 -print | xargs /bin/rm -f
This deletes files that have not been touched for more than 30 days (change the number if needed)
This is probably closer :
ls -t1 /usr/local/bin/cms/backup* | tail +5 | while read file ; do echo removing - $file; done
This lists all the files and then tails it knocking off the first 4 (it does one less than the number specified). This is then passed into a loop which tells you each file name it will remove.
Test this and if you are happy with results then add the remove bit :
ls -t1 /usr/local/bin/cms/backup* | tail +5 | while read file ; do echo removing - $file; rm $file; done
I hope that helps