====== Bash Color Prompt ======
* http://kldp.org/node/28453
* http://networking.ringofsaturn.com/Unix/Bash-prompts.php
* https://wiki.archlinux.org/index.php/Color_Bash_Prompt
* [[http://www.geekgumbo.com/2011/09/25/changing-your-shell-prompt/|Changing Your Shell Prompt]]
===== PS1, PS2 =====
* ''PS1''은 프롬프트 앞부분
* ''PS2''는 멀티 명령행에서 두 번째 명령부터 나오는 프롬프트
* [[http://knight76.tistory.com/3072|김용환 블로그(2004-2017) :: 프롬프팅(prompting) PS1, PS2]]
===== 녹색 프롬프트 =====
{{:linux:bash:green.png|녹색 프롬프트}}
PS1='
\[\033[32;40m\]\u\[\033[32m\]@\h \[\033[33;40m\w\033[0m\]
\$ '
===== 컬러풀 프롬프트 =====
{{:linux:bash:colorful.png|컬러풀 프롬프트}}
PS1="\[\033[01;32m\][\[\033[01;33m\]\u\[\033[01;36m\]@\[\033[01;31m\]\h\[\033[01;37m\]:\[\033[01;34m\]\w\[\033[01;32m\]]\[\033[01;35m\]\\$\[\033[00m\] "
===== 일반 사용자용 프롬프트 =====
{{:linux:bash:for_users.png|일반 사용자용 프롬프트}}
#일반 사용자용
PS1='\[\e[1;32m\][\u@\h \W]\$\[\e[0m\] '
# or 다른데 접속시 티나게
PS1='\[\e[1;32m\][◈ \u@\h \W]\$\[\e[0m\] '
===== root 사용자용 프롬프트 =====
{{:linux:bash:for_root.png|root 사용자용 프롬프트}}
#root 사용자용
PS1='\[\e[1;31m\][\u@\h \W]\$\[\e[0m\] '
===== VCS(SVN,GIT,Mercurial,CVS 등)의 정보를 프롬프트에서 보여주기 =====
* [[:git|git]] Git Bash prompt
* [[http://blog.outsider.ne.kr/737|Outsider's Dev Story :: vcprompt를 이용해서 bash 프롬프트에 VCS 정보 표시하기]]
* http://vcprompt.com/