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 1OmSve-0007ww-M8 for garchives@archives.gentoo.org; Fri, 20 Aug 2010 14:50:47 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CACB1E07CE; Fri, 20 Aug 2010 14:50:30 +0000 (UTC) Received: from mx.virtyou.com (mx.virtyou.com [94.23.166.77]) by pigeon.gentoo.org (Postfix) with ESMTP id A327CE07CE for ; Fri, 20 Aug 2010 14:50:30 +0000 (UTC) Received: from weird.localnet (p4FF04C40.dip.t-dialin.net [79.240.76.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx.virtyou.com (Postfix) with ESMTPSA id 7007A4A828F for ; Fri, 20 Aug 2010 16:50:26 +0200 (CEST) From: Alex Schuster To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] why emerge --config don't work Date: Fri, 20 Aug 2010 16:50:23 +0200 User-Agent: KMail/1.13.5 (Linux/2.6.34-tuxonice-r1; KDE/4.5.0; x86_64; ; ) References: <4C6E7B67.6030700@yahoo.com.br> In-Reply-To: <4C6E7B67.6030700@yahoo.com.br> 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 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <201008201650.24528.wonko@wonkology.org> X-Archives-Salt: 8564937e-1131-4b07-881d-5dddcecc0685 X-Archives-Hash: 7b67235f8703cab9c62fa7101364669e Zhu Sha Zang writes: > Hi there, why this command don't work in zsh: [...] > [root@sakurazukamori /usr/src/linux]$ emerge --config > =sys-apps/tomoyo-tools-2.2.0_p20090727 > 9:44 > zsh: sys-apps/tomoyo-tools-2.2.0_p20090727 not found Interesting. Looks like zsh treats a '=' character specially. I don't use zsh, so I don't know why this is. Seems like it does something similar to the bash builtin 'type': weird% echo =find /usr/bin/find Your command works, when the = is escaped by a \, or when the stuff is quoted. Wonko