일반적으로 프롬프트의 경로는 아래와 같이 홈 디렉토리로부터의 경로로 나타낸다.
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로 변경한다.
'컴퓨터 & IT (Computer & IT) > Linux' 카테고리의 다른 글
[Linux] PXE (Preboot Execution Environment) (0) | 2020.11.13 |
---|---|
[Linux] BOOTP (Bootstrap Protocol) (0) | 2020.07.11 |
[Linux] 데이터 압축하기 (tar, gzip, bzip2) (0) | 2020.07.07 |
[Linux] tftp (Trivial File Transfer protocol) (0) | 2020.07.06 |
[Linux] /etc/dhcp/dhcp.conf (/etc/dhcp.conf – redhat 계열) (0) | 2020.07.06 |
댓글