On Friday 11 July 2003 12:12, Klaus D. Neumann wrote:
> Hi,
>
> Is there a way to emerge an entire directory with a single command, e.g.,
> something like:
> emerge gnome-base/* ?

That's fairly easy. How about the following?
for i in `ls /usr/portage/gnome-base`; do emerge $i; done

Of course, that will re-emerge anything that's already installed. To only
emerge new stuff, you can do this:

for i in `ls /usr/portage/gnome-base`; do [ -a /var/db/pkg/$i ] || emerge
$i; done

Regards,
Jason


--
[EMAIL PROTECTED] mailing list

Reply via email to