Linux.com

Dealing with .rpmnew and .rpmsave files

Posted by: Anonymous [ip: 122.167.65.219] on November 26, 2007 03:27 PM
Simple sccript to do all the above:

for i in `find / -print | egrep "rpmnew$|rpmsave$"` ; do echo ; echo; echo ===================================================; echo $i; echo ===================================================; echo; diff -y -u $i `echo $i |se d -e 's/\.rpmsave//g' |sed -e 's/\.rpmnew//g'`; done

#

Return to Dealing with .rpmnew and .rpmsave files