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 1QALAk-0006Gd-T9 for garchives@archives.gentoo.org; Thu, 14 Apr 2011 11:57:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 93A061C01A; Thu, 14 Apr 2011 11:55:37 +0000 (UTC) Received: from mail-ew0-f53.google.com (mail-ew0-f53.google.com [209.85.215.53]) by pigeon.gentoo.org (Postfix) with ESMTP id 454231C01A for ; Thu, 14 Apr 2011 11:55:36 +0000 (UTC) Received: by ewy8 with SMTP id 8so518107ewy.40 for ; Thu, 14 Apr 2011 04:55:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=4BJPlu2ZIfcyAsZCd5jBl6pjE0g/iqDgGWWE0MNlx6c=; b=eqgEmMzRjsv7wrIa+AE9NCkkJ3cLaAsOOmzYyLoM28Z2EjJ/8RN6xX3u11HDAb7cNP tY3IhWhVvszJTPU8Hyq1504eaj25pGYM96UbO8toiYxtkr8FiMrKs0RXM6vw4pECCIDl oXfy7E3ckQ8B69i8utR0C//QNYPumtEmwLTno= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=lSh194RZ6Kb613kwnl600zomqfUyGWejgDANaVQwGOq0WvuOZVbSpI2qy/oXYuPvMi MHhGgWAi0pIthYsCTctQext6Uprc2pWat4vJIXYriv3O90yfGnHV62rpvXXYY7PBROyW hUrmQeG9zxm7TMkr8uVx5b5hKFHkMVKPg87mI= 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.213.104.133 with SMTP id p5mr2478471ebo.109.1302782136281; Thu, 14 Apr 2011 04:55:36 -0700 (PDT) Received: by 10.213.36.14 with HTTP; Thu, 14 Apr 2011 04:55:36 -0700 (PDT) In-Reply-To: <201104140100.27106.peter@humphrey.ukfsn.org> References: <20110407161923.GA3437@muc.de> <201104140045.01816.wonko@wonkology.org> <201104140100.27106.peter@humphrey.ukfsn.org> Date: Thu, 14 Apr 2011 04:55:36 -0700 Message-ID: Subject: Re: [gentoo-user] Why can't I emerge telnet? From: Bill Longman To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 7c895f40f292f78e1f23b8ea2738919d > I just have a little script: > > $ cat /usr/local/sbin/up-x > #!/bin/bash > # > # /usr/local/sbin/up-x > # > # Recompile X drivers etc. after kernel upgrade: > # > emerge =C2=A0-1 --jobs=3D5 --keep-going `qlist -IC x11-drivers` &&\ > =C2=A0 =C2=A0 =C2=A0 =C2=A0echo &&\ > =C2=A0 =C2=A0 =C2=A0 =C2=A0sh /usr/local/src/VirtualBox*run &&\ > =C2=A0 =C2=A0 =C2=A0 =C2=A0echo > > Makes life really simple, with hardly any typing. Very nice. BTW, you do not need to escape newlines after "&&". echo Try && echo This && echo At && echo Home || echo Or Not