Linux

[Ubuntu]Ubuntu 터미널 프롬프트 짧게하기

5_Clock 2021. 4. 21. 21:07
반응형

우분투를 사용하다보면 파일을 타고타고 들어가다 보면 경로가 길어지게 되는 현상이 아래처럼 일어난다.

 

ubuntu@ubuntu:~/test1/test2/test3/test4$
ubuntu@ubuntu:~/test1/test2/test3/test4$
ubuntu@ubuntu:~/test1/test2/test3/test4$
ubuntu@ubuntu:~/test1/test2/test3/test4$
ubuntu@ubuntu:~/test1/test2/test3/test4$

 

별거 아니지만 굉장히 거슬린다.

 

해결방법

# 경로: /home/계정이름(위의 예시: ubuntu)
$ vim .bashrc


#=========================================
# 아래 내용을 추가해준다.

if [ "$color_prompt" = yes ]; then
    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\W\[\033[00m\]\$ '
else
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi

 

728x90
반응형