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 1LluiZ-00075Z-GL for garchives@archives.gentoo.org; Tue, 24 Mar 2009 00:42:11 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 823F1E047B; Tue, 24 Mar 2009 00:42:10 +0000 (UTC) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.172]) by pigeon.gentoo.org (Postfix) with ESMTP id 4B3B5E047B for ; Tue, 24 Mar 2009 00:42:10 +0000 (UTC) Received: by wf-out-1314.google.com with SMTP id 28so2952958wfc.10 for ; Mon, 23 Mar 2009 17:42:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=anrtw2YL7bq4sr/leWYa2QghjdHgp4CG9HNTLZfApvc=; b=mCJa8HNKdBqm7M93935So6fO0AClijftFjDIDBv2YmrIPDn6lggLyVo6GvRapXtVrM 9g/e171CojnObAGf8YWFZMU8vPKEIVC+62PFLPlCFPNhoD79wwDbkz+oQ1K8CccV69xy rYW4IAYJbGIJRj2ECPx5DGAT0C2RBmIvGz0Ag= 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=S0NYxCrj6afvQ6ihWLFYcdp5MUVY8DkzIfj7TwwrHacUJ6bpjNGerljRqE8hB/9KB/ txc3n5i0xPS3VqtFCtBrMkMLrIDT9vnFlmzSV/10Ihz03iluXvjpTQVJUDUQuejo87eh jaGGLZVPKwAbPxst8dyL0w3RyPzrLV/vDWIEw= 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.142.144.16 with SMTP id r16mr3100524wfd.349.1237855329760; Mon, 23 Mar 2009 17:42:09 -0700 (PDT) In-Reply-To: <49C82224.7000502@gmail.com> References: <200903211917.56523.mdiehl@diehlnet.com> <5bdc1c8b0903221323o47e10137l9c6db04802cce4bd@mail.gmail.com> <20090322204520.0911c480@krikkit.digimed.co.uk> <5bdc1c8b0903221502w13c6a31chfe638acfd4588044@mail.gmail.com> <20090322230221.20380328@krikkit.digimed.co.uk> <49C6D740.504@gmail.com> <20090323005312.49bd7dd5@krikkit.digimed.co.uk> <49C6FF71.3010309@gmail.com> <1237779541.4874.1.camel@blackwidow.nbk> <49C82224.7000502@gmail.com> Date: Mon, 23 Mar 2009 17:42:09 -0700 Message-ID: Subject: Re: [gentoo-user] Time to move on? From: Hilco Wijbenga To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: dca54a94-8d9a-4960-a43c-4a8bb245875e X-Archives-Hash: 04900f25511ed8f9c67b5845dad1abd2 2009/3/23 Dale : > Oh, OK. =C2=A0 =C2=A0If it is set up to add t= hat > option, how do you tell it not to use it? alias ls=3D'/bin/ls --color' alias l=3D'ls -l' With these aliases in your .bashrc (or whatever is appropriate in your environment), you can now use 'ls' and 'l'. Of course, you already had 'ls' (namely /bin/ls). If you simply type 'ls' then you are using the alias and you get colour output. If you don't want colour output you use '/bin/ls' (the actual binary). Typing 'l' basically runs '/bin/ls --color -l'. If you don't want that then you don't use 'l'.