no, just a guy who had the same question a while back and (against usual
behaviour) actually bothered to save his efforts that time.

but thanks anyway
:)

On Thu, 9 Mar 2000, Gustav Schaffter wrote:

> Charles,
> 
> Thanks. That's what I was looking for. You're a source of usefull
> knowledge. :-)
> 
> Regards
> Gustav
> 
> 
> Charles Galpin wrote:
> > 
> > #!/bin/sh
> > # rpmgrind: (greps/finds things in rpms)
> > # usage: cd dir_w_rpms; rpmgrind word
> > 
> > word=$1
> > 
> > for rpm in *.rpm;  do
> >    rpm -qlp ${rpm} | grep -qs ${word}
> >    if [ "$?" != 1 ]; then
> >         echo ${rpm}
> >    fi
> > done


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to