본문 바로가기
컴퓨터 & IT (Computer & IT)/Linux

[Linux] 프롬프트의 경로 위치 변경

by UltraLowTemp-Physics 2020. 7. 9.

일반적으로 프롬프트의 경로는 아래와 같이 홈 디렉토리로부터의 경로로 나타낸다.

cmtcluster@master:~$ cd dir_1/dir_2/dir_3 
cmtcluster@master:~/dir_1/dir_2/dir_3$  

현재 터미널의 위치를 현재 위치한 디렉토리의 이름으로만 표기하기 위해선, .bashrc파일을 아래와 같이 편집한다. 

cmtcluster@master:~/$ 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\$ '
    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\W\$ '
fi
... 

6번째 행의 소문자 w를 대문자 W로 변경한다. 

댓글