본문 바로가기
IT/Server

command line prompt too long / 커멘드라인이 너무 길 경우 줄이는 방법

by Jang HyunWoong 2018. 2. 23.
jhwskorg@ubuntu-instance:~/workscpace/test/data/controller$

위와 같이 너무 prompt가 길 경우 줄일 수 있다. 


1. Edit .bashrc / .bashrc 수정

1-1. ls -al 로 list를 본다.

1-2. vi .bashrc



2. remove @\h, change \w -> \W @\h 제거, \w -> \W 변경한다.


 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\$ '



Restart!

반응형

'IT > Server' 카테고리의 다른 글

Docker rm all exited containers  (0) 2018.10.30
image is being used by stopped container  (0) 2018.10.30
change putty color (theme) / putty 테마 색 변경  (0) 2018.02.23
vi editor options 옵션 명령어  (0) 2016.05.10