find / -print | egrep "rpmnew$|rpmsave$" | while read rpm; do diff -q -s $rpm $( echo $rpm | sed -e 's/.rpmsave$//' -e 's/.rpmnew//' ) ; if [[ $? -eq 0 ]] ; then rm -f $rpm ; fi ; done