From owner-freebsd-questions@FreeBSD.ORG Sun May 20 11:00:29 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95F0E106564A for ; Sun, 20 May 2012 11:00:29 +0000 (UTC) (envelope-from mail@ozzmosis.com) Received: from outbound.icp-qv1-irony-out6.iinet.net.au (outbound.icp-qv1-irony-out6.iinet.net.au [203.59.1.109]) by mx1.freebsd.org (Postfix) with ESMTP id 9C2D48FC08 for ; Sun, 20 May 2012 11:00:05 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgwKAKLNuE98lICU/2dsb2JhbABFsm4DgR2BB4IVAQEEATo/BQsLDTkUGDETiAkEvEiLXoQSYgOVGoU9NYl/gns X-IronPort-AV: E=Sophos;i="4.75,625,1330876800"; d="scan'208";a="326231224" Received: from unknown (HELO smtp.phoenix) ([124.148.128.148]) by outbound.icp-qv1-irony-out6.iinet.net.au with ESMTP; 20 May 2012 18:59:50 +0800 Received: by smtp.phoenix (Postfix, from userid 1001) id CE7563534; Sun, 20 May 2012 20:59:50 +1000 (EST) Date: Sun, 20 May 2012 20:59:50 +1000 From: andrew clarke To: Polytropon Message-ID: <20120520105950.GA64196@ozzmosis.com> References: <4FB4DEC1.8020704@bananmonarki.se> <20120517145437.03dd4cdf.freebsd@edvax.de> <20120517151713.2503552d.freebsd@edvax.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120517151713.2503552d.freebsd@edvax.de> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-questions@freebsd.org, fake fake Subject: Re: ls-F tcsh built-in command X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 May 2012 11:00:29 -0000 On Thu 2012-05-17 15:17:13 UTC+0200, Polytropon (freebsd@edvax.de) wrote: > Search for "LS_COLORS" in the environment variables section > of "man csh". However, I've always been satisfied with using > $LSCOLORS as "ExGxdxdxCxDxDxBxBxegeg". :-) Before I discovered $LSCOLORS I used gls from /usr/ports/sysutils/coreutils and had an alias in .tcshrc: alias ls "gls --time-style=long-iso --color=auto" I still use this in Linux. In FreeBSD I use /bin/ls: setenv LSCOLORS "ExGxFxdxCxDxDxhbadExEx" alias ls 'ls -D "%Y-%m-%d %H:%M:%S"' The -D stuff is to display ISO 8601 style timestamps like GNU ls's --time-style=long-iso format, eg: -r-xr-xr-x 1 root wheel 12612347 2011-09-28 19:13:57 /boot/GENERIC/kernel I don't know if this helps the OP. :-)