[컴][리눅스] bash 에 색 넣기

linux console / linux cmd / linux command window / linux bash color / 배쉬에 색깔 넣기 / colorful / 컬러풀 / ls 색 바꾸기



bash 에 색깔 넣기

.bashrc 수정

.bashrc 에 color 를 위한 변수를 setting 해주면 된다. .bashrc 가 없다면 home directory 에 만들자.
$> vi ~/.bashrc


ls 에 색이 나오게 하기 위해서는 ls command 를 ls --color=auto 로 변경해 줘야 한다. 그리고 LS_COLORS option 을 넣어주면 된다. LS_COLOR 에 대한 자세한 사항은 ref. 1 을 참고하자.

alias "ls=ls --color=auto"

export TERM=xterm-color
export GREP_OPTIONS='--color=auto' GREP_COLOR='1;32'
export CLICOLOR=1
export LS_COLORS='rs=0:di=01;34:ln=01;36:mh=00:pi=40;33'




적용

새롭게 변경한 .bashrc 를 적용하려면 아래처럼 하면 된다.
$> . .bashrc



References

  1. Configuring LS_COLORS
  2. Colorizing your terminal and shell environment?, Stack Overflow

댓글 없음:

댓글 쓰기