Re: [gentoo-user] Re: list of emerged programs?
On Sun, 2009-06-28 at 23:23 +0300, Nikos Chantziaras wrote: > On 06/28/2009 11:06 PM, James wrote: > > All, > > > > Is there a simple, quick way to list all of the packages that have > > been emerged in cronological order? > > for f in `ls -rt \`find /var/db/pkg -name "*.ebuild"\``; do basename $f > .ebuild; done > > (The above command is just one line, in case your mail/news client > breaks it into two lines.) $ cd /var/db/pkg/; find * -maxdepth 1 -mindepth 1 $ eix -I --only-names
Re: [gentoo-user] Re: list of emerged programs?
Thanks to you and Justin for the insanely quick answers. -j On Sun, Jun 28, 2009 at 4:23 PM, Nikos Chantziaras wrote: > On 06/28/2009 11:06 PM, James wrote: >> >> All, >> >> Is there a simple, quick way to list all of the packages that have >> been emerged in cronological order? > > for f in `ls -rt \`find /var/db/pkg -name "*.ebuild"\``; do basename $f > .ebuild; done > > (The above command is just one line, in case your mail/news client breaks it > into two lines.) >