Borsenkow Andrej <[EMAIL PROTECTED]> writes: > Plain parsehdlist works just fine. But getting just (and only) rpm names > (without .i586.rpm) would be even better of course.
parsehdlist is slow (because of parsing headers), it may be faster to use something like this one : gzip -dc /var/lib/urpmi/synthesis.hdlist.* | perl -ne 's/\@info\@([^\@]*)/$1/' and print "$1\n"' Fran�ois.
