dear all :
i want to color my console when i use ls command in freebsd 15...
i have read the book .
but it's not work...
1.
alias ls ls -G<br>
it's not work.
2.
.cshrc
Code:
setenv LSCOLORS "gx"<br>setenv CLICOLOR
it's not work too.
thanks.
i want to color my console when i use ls command in freebsd 15...
i have read the book .
Colorize your Csh or Bourne shell. Bourne shells include sh(1), ksh variants (Korn shells), and zsh(1). csh(1) is a different kind of shell which uses a different syntax for commands.
Environment
Environment values can be added to your shell configuration file(s). These variables for Bourne shells can be set in $HOME/.profile. sh, zsh and variant ksh Posix Bourne shells can read from these files. Bash can also use these files, but it has variations in its more specific customization files.
Csh uses many of the same basic variables as Bourne shells, but the...
Environment
Environment values can be added to your shell configuration file(s). These variables for Bourne shells can be set in $HOME/.profile. sh, zsh and variant ksh Posix Bourne shells can read from these files. Bash can also use these files, but it has variations in its more specific customization files.
Csh uses many of the same basic variables as Bourne shells, but the...
- sidetone
- .chsrc .kshrc .mkshrc .shrc .zshrc bourne shell c shell customize terminal korn shell screenshots
- Replies: 20
- Forum: Howtos and FAQs (Moderated)
1.
Enable ls colour output
ls -G can make ls output colourful. If you use csh, you can add following statement in .cshrc:alias ls ls -G<br>
it's not work.
2.
.cshrc
Code:
setenv LSCOLORS "gx"<br>setenv CLICOLOR
it's not work too.
thanks.

