From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RtRDm-0005cF-Fs for garchives@archives.gentoo.org; Fri, 03 Feb 2012 22:03:06 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6310BE07DB; Fri, 3 Feb 2012 22:02:43 +0000 (UTC) Received: from mail-gy0-f181.google.com (mail-gy0-f181.google.com [209.85.160.181]) by pigeon.gentoo.org (Postfix) with ESMTP id 161A5E07A2 for ; Fri, 3 Feb 2012 22:01:11 +0000 (UTC) Received: by ghrr17 with SMTP id r17so2306136ghr.40 for ; Fri, 03 Feb 2012 14:01:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=2ny4ogjsQrGXP9GN3s2Tv31ZfKGXG/ZZMXOK9kztFlo=; b=hr5fwzZnS8rKgGFvh/cSU764cRcuup//vu9qkn8VZR3MXwuGvcDEuw1oMs7qBAhrT3 CCHXHZIgOGUXb3XyxDJoMVSz1GWr+pT+j6V+JYB6Idcte/3eGvdcJemBuClJE/Hy1Hm1 Q123UT31PEpwBwROY3L2ABr8TtON1z0AqpK+4= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Received: by 10.101.143.14 with SMTP id v14mr4296015ann.1.1328306471555; Fri, 03 Feb 2012 14:01:11 -0800 (PST) Received: by 10.236.73.130 with HTTP; Fri, 3 Feb 2012 14:01:11 -0800 (PST) In-Reply-To: References: Date: Fri, 3 Feb 2012 14:01:11 -0800 Message-ID: Subject: [gentoo-user] Re: List of recently installed/updated packages in chronological order? From: Hilco Wijbenga To: Gentoo User Content-Type: text/plain; charset=UTF-8 X-Archives-Salt: ba051f62-0f08-4281-99a0-b09b88fc39f5 X-Archives-Hash: 3807a85639a111695076a942adf92527 On 3 February 2012 13:50, Hilco Wijbenga wrote: > My Eclipse (Indigo) has started crashing today. So I wanted to see > which packages I had installed/upgraded recently. > > I can, of course, go through emerge.log manually but I was wondering > if there was a tool that could simply provide me with a > chronologically ordered list of installed/updated packages? Never mind, eix '-I*' --format '' | sort -n | cut -f2-3 (straight from man eix) seems to do the trick just fine.