반응형

리눅스 shell에 색깔 입히기


bash shell일 경우
~/.bashrc, ~/.bash_profile, ~/.profile 중에서 다음 환경변수를 세팅하시면 됩니다.
PS1='\[\e[1;32m\]'

Korn shell일 경우
다음 환경변수를 세팅하시면 됩니다. bash shell과는 다르게 echo구문이 추가가 됩니다.
PS1="$(echo -e "\033[35mLinux\033[00m")"


반응형

+ Recent posts