I'm a Centos user and have just started my first Debian install. In Centos the ls command lists output in color to indicate whether an item is a file, directory, symlink and if a file/directory is world-writable.

Here's an example...

Centos directory listing in color

How can I enable this color display in Debian? Thanks

link|improve this question

73% accept rate
feedback

1 Answer

up vote 9 down vote accepted
alias ls='ls --color=auto'

Put it in your .bashrc

Or if you prefer create a file in your profile named .bash_aliases and put there your alias (by default in debian's .bashrc that gets sourced)

link|improve this answer
Thanks - that worked! – Xoundboy Sep 24 '11 at 18:08
1  
@Xoundboy If it worked, mark it as an answer – WesleyDavid Sep 24 '11 at 18:56
I tried before but it said I couldn't mark it as an answer for another 8 minutes! I only just got chance to come back – Xoundboy Sep 24 '11 at 20:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.