Re: ls colors gone after upgrade

1997-02-19 Thread Richard Jones
e wonderful if > it worked, etc. etc." when the person replied with the correct answer to > the question. You should've asked the right question, which is "ls color > appears to work when I am in regular console mode, but not in my xterm," > or even better "when

Re: ls colors gone after upgrade

1997-02-19 Thread William Chow
On Tue, 18 Feb 1997, Robert D. Hilliard wrote: > Version 3.13 of ls has the default dircolors compiled in, so the > "eval `dircolors`" line in the profile is redundant as far as 'ls' is > concerned. However, a few other programs (I can't remember which at > the moment) depend on the LS-COL

Re: ls colors gone after upgrade

1997-02-19 Thread William Chow
On Wed, 19 Feb 1997, Richard Jones wrote: > > William Chow <[EMAIL PROTECTED]> wrote: > > > > > > On 17 Feb 1997, Michael Harnois wrote: > > > > > > > > > >.bashrc and/or .profile (or .cshrc or .zshrc, whatever): > > > > eval `dircolors` > > > > alias ls 'ls --color=auto

Re: ls colors gone after upgrade

1997-02-18 Thread Robert D. Hilliard
Version 3.13 of ls has the default dircolors compiled in, so the "eval `dircolors`" line in the profile is redundant as far as 'ls' is concerned. However, a few other programs (I can't remember which at the moment) depend on the LS-COLORS variable that dircolors sets and exports, so it is des

Re: ls colors gone after upgrade

1997-02-18 Thread Syrus Nemat-Nasser
Folks, please hold your tone. You are both right. With XFREE 3.2, the colorization of xterm is not active by default. One would not notice this unless one has removed the previously released (and now obsolete) xterm-color package. So, if the problem was "I do get color in ls on the console

Re: ls colors gone after upgrade

1997-02-18 Thread Richard Jones
William Chow <[EMAIL PROTECTED]> wrote: > > > On 17 Feb 1997, Michael Harnois wrote: > > > > > > >.bashrc and/or .profile (or .cshrc or .zshrc, whatever): > > > eval `dircolors` > > > alias ls 'ls --color=auto' > > > > This would be wonderful if it were the correct answer. However, as

Re: ls colors gone after upgrade

1997-02-18 Thread William Chow
On 17 Feb 1997, Michael Harnois wrote: > > > >.bashrc and/or .profile (or .cshrc or .zshrc, whatever): > > eval `dircolors` > > alias ls 'ls --color=auto' > > This would be wonderful if it were the correct answer. However, as we This IS the correct answer, WTF are you talking abou

Re: ls colors gone after upgrade

1997-02-18 Thread Rowan Deppeler
These are the commands I use in my /etc/profile .. # set up color-ls environment variables if [ "$SHELL" = "/bin/zsh" ]; then eval `dircolors -z` elif [ "$SHELL" = "/bin/ash" ]; then eval `dircolors -s` else eval `dircolors -b` fi # set color-ls alias's alias ls='ls --color=auto '; alias