> You can automate it with a pretty simple command, something like (I'm > useless at scripting-type things so this *will* be wrong and you'll > have to fix it :>): > > for i in 'urpmq --auto-select' do urpmi $i; print $i
for i in `urpmq --auto-select`; do urpmi $i ; echo $i; done; -- Micha�l Scherer
