Originally posted by: SystemAdmin
> We
are using bash on our AIX 5L servers and would like to
> get [] color output for the ls command. The
> /etc/bashrc file does not have
any references to color.
> How do we get the color
enabled for ls in bash on
> [] AIX?
A few concepts should help.
bash is a shell.
A shell is an executable that interprets commands from a
file (such as an interactive console) and accordingly
passes executable files, parameters, and environment
to system calls for execution.
As such bash understands nothing about the color, font, ...
of any other executable.
(Shells merely record and convey information which
often includes the configuration data for other executables.)
ls(1) support color terminal output,
with the --color option.
See ls(1) for details.
#AIX-Forum