Apr 12, 2001 #1 haux Programmer Apr 11, 2001 79 DZ find file inside RPMs when i want to find an rpm who contain the string 'ppp', i have to tape rpm -qa | grep ppp but how to search a file 'yyy' inside all my RPMs ? i have redhat6.2 +kernel 2.2.14-5.0 + bash
find file inside RPMs when i want to find an rpm who contain the string 'ppp', i have to tape rpm -qa | grep ppp but how to search a file 'yyy' inside all my RPMs ? i have redhat6.2 +kernel 2.2.14-5.0 + bash
Apr 17, 2001 #2 Tardigrade Programmer Aug 17, 2000 53 GB The following will list all files within all rpms if the filename contains 'yyy'.... # rpm qal|grep yyy However to find out which rpm a result file belongs to you'd have to do... # rpm -qf <filename> Good Luck -- Scott Upvote 0 Downvote
The following will list all files within all rpms if the filename contains 'yyy'.... # rpm qal|grep yyy However to find out which rpm a result file belongs to you'd have to do... # rpm -qf <filename> Good Luck -- Scott