bash (bashrc)
Este arquivo mostra como mudar a cor das letras configurando o bashrc
#.bashrc # editar o arquivo .bashrc para cada usuario # User specific aliases and functions # Source global definitions if [ -f /etc/bashrc ]; then . /etc/bashrc fi Normal="\[\\033[0m\]" Vermelho="\[\\033[1;31m\]" Verde="\[\\033[1;32m\]" Amarelo="\[\\033[1;33m\]" Azul="\[\\033[1;34m\]" Roxo="\[\\033[1;35m\]" Ciano="\[\\033[1;36m\]" Branco="\[\\033[1;37m\]" PS1="$Branco[$Vermelho\u$Branco@$Verde\h$Azul\W$Branco]$Ciano\\$ $Normal" export PS1