From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([69.77.167.62] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1KSWKK-00010J-Rw for garchives@archives.gentoo.org; Mon, 11 Aug 2008 12:16:45 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63986E0E32; Mon, 11 Aug 2008 12:10:53 +0000 (UTC) Received: from rv-out-0708.google.com (rv-out-0708.google.com [209.85.198.240]) by pigeon.gentoo.org (Postfix) with ESMTP id 2F5C5E0E32 for ; Mon, 11 Aug 2008 12:10:53 +0000 (UTC) Received: by rv-out-0708.google.com with SMTP id b17so1798813rvf.46 for ; Mon, 11 Aug 2008 05:10:52 -0700 (PDT) Received: by 10.114.46.6 with SMTP id t6mr3093263wat.39.1218433203052; Sun, 10 Aug 2008 22:40:03 -0700 (PDT) Received: from ?192.168.30.75? ( [60.242.236.13]) by mx.google.com with ESMTPS id z15sm7049784pod.2.2008.08.10.22.40.01 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 10 Aug 2008 22:40:02 -0700 (PDT) Subject: Re: [gentoo-user] Shell problem From: Ivan Alden To: gentoo-user@lists.gentoo.org In-Reply-To: <20080811051232.GA20314@crowfix.com> References: <1218459446.6031.4.camel@alden> <20080811051232.GA20314@crowfix.com> Content-Type: text/plain Date: Mon, 11 Aug 2008 15:36:47 +0000 Message-Id: <1218469007.6031.11.camel@alden> 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 X-Mailer: Evolution 2.12.3 Content-Transfer-Encoding: 7bit X-Archives-Salt: 5c232b8d-5d85-4184-a7ac-a0c370a2bd0c X-Archives-Hash: 9695d3e55419bf1481a74638971ccdad Hi Felix, That what it exactly. I couldn't notice it because there were tons of files in that directory. I appreciate your help, Ivan On Sun, 2008-08-10 at 22:12 -0700, felix@crowfix.com wrote: > On Mon, Aug 11, 2008 at 12:57:26PM +0000, Ivan Alden wrote: > > Hi all, > > > > I was working in a shell with tar and I changed something where now when > > I type "*" it interprets it as --exlucde > > > > i.e > > > > $ * > > bash: --exlucde: command not found > > > > or > > > > $ ls * > > ls: unrecognized option `--exlucde' > > Try `ls --help' for more information. > > Does this happen in every directory, or do you have a file named > "--exlucde" that you created by mistake in the dir where this happens? > That name would tend to sort first ahead of most other names. I can > recreate it like this: > > $ touch ./--exlucde > $ ls * > ls: unrecognized option '--exlucde' > Try `ls --help' for more information. > $ > > and I can fix it like this: > > $ rm ./--exlucde > $ >