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 ll='ls -l'; alias dir='ls --color=auto --format=vertical'; alias vdir='ls --color=auto --format=long'; alias ols='/bin/ls'; ........ This is using the latest debian 'fileutils_3.13-4.deb' packages. The 'color-ls' appears to have been replaced by the 'ls' command in the new package. Hope this helps Rowan > > On Sun, 16 Feb 1997 20:48:37 EST Stan Brown ([EMAIL PROTECTED]) wrote: > > > How can I get these back? > > Well, maybe reading the manpage for ls ? :-) > Before (buzz, aka 1.1), the color ls what a separate package. > Since rex, aka 1.2, the color stuff has been moved into the GNU fileutils. > What you need to do is basically: > > .bashrc and/or .profile (or .cshrc or .zshrc, whatever): > eval `dircolors` > alias ls 'ls --color=auto' > > Phil. > > > > -- > TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to > [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] > > -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED]