>for i in *.rpm
>do
>  echo $i
>  rpm -qpl $i | grep as86
>done | less


Nice idea, but the output is a little rough .. i modified it a little :)

for i in *.rpm; do
  rpm -qlp $i | grep as86 > /dev/null && echo $i
done

this way it only echo's the package which contains the files ... not all
files and the grep'd output of each.

Warm Regards,
--
Iain Wade - Optus Internet
Email: [EMAIL PROTECTED]


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

Reply via email to