해결하고자 하는 것
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
반응형
'Software활용' 카테고리의 다른 글
linux에서 json Pretty Print 하기 (jq 명령어) (0) | 2022.08.11 |
---|---|
Slack backup 파일 Discord로 이동하기 (Slackord 사용법) (0) | 2022.08.01 |
Bit Operation 모음 (계속) (0) | 2021.08.09 |
MongoDB Windows CMD에서 Background 실행하기 (0) | 2021.06.22 |
MongoDB local install on windows (0) | 2021.06.14 |