본문 바로가기
Technical/System

Linux 에서 bash-3.2$ 로 나오는경우..

by 알 수 없는 사용자 2021. 4. 21.

/etc/profile 에 아래 내용 추가

if [ -x /usr/libexec/path_helper ]; then
eval `/usr/libexec/path_helper -s`
fi

if [ "${BASH-no}" != "no" ]; then
[ -r /etc/bashrc ] && . /etc/bashrc
fi

source /etc/profile
명령어로 실행 하여 적용
터미널 끄고 재 접 하면 정상적인 모습 확인 가능

댓글