Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to Dealing with .rpmnew and .rpmsave files
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
Dealing with .rpmnew and .rpmsave files
Posted by: Anonymous [ip: 122.167.65.219] on November 26, 2007 03:27 PMfor 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
#