20 Aug
2010
20 Aug
'10
1:10 a.m.
Am Fri, 20 Aug 2010 02:48:34 +0200 schrieb Phillip Thelen <viirus92@yahoo.de>:
Have you tried adding this to your .bashrc?
alias ls='ls --color=auto'
basically just tells bash to execute "ls --color=auto" instead of just ls.
Drop the "=auto" and you'll get colorized listings with less, too. ls --color=auto | less => usual b/w output ls --color | less => colorized output Heiko