Mac에서 zsh 또는 bash shell을 사용하기

해결하고자 하는 것

mac에서 terminal shell은 기본적으로 zsh이다.

이 shell을 bash shell로 변경하고자 한다.

 

zsh을 bash shell로 변경하기

우선 mac에서 터미널을 실행 후 다음과 같이 명령어를 실행해 보자.

% echo $SHELL
/bin/zsh

기본적으로 mac의 터미널 쉘은 zsh을 사용한다.

이제 bash shell로 변경해 보자.

% chsh -s /bin/bash
Changing shell for user.
Password for user: 
%

위와 같이 쉘을 chsh 명령어를 사용해서 default shell을 /bin/bash로 변경한다.

이제 터미널을 종료하고 다시 실행 시켜 보면 다음과 같이 나온다.

The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
For more details, please visit https://support.apple.com/kb/HT208050.
$

쉘이 잘 변경 되었는지 확인해 보자.

$ echo $SHELL
/bin/bash

 

zsh로 돌아가기

다음과 같이 실행하면 zsh로 돌아갈 수 있다.

$ chsh -s /bin/zsh
Changing shell for user.
Password for user: 
$
728x90
반응형