macOS 버전 10.15 인 ‘카탈리나’부터 기본 쉘 (Shell) 이 bash에서 zsh (Z shell)로 변경 되었습니다. 현재 맥에 설치된 쉘 확인하기 $ cat /etc/shells # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/bash /bin/csh /bin/dash /bin/ksh /bin/sh /bin/tcsh /bin/zsh 기본 쉘 zsh로 변경하기 $ chsh -s /bin/zsh 현재 기본 쉘 확인 $ echo $0 or $ echo $SHELL zsh 위치 확인 which zsh oh-my-zsh ..
[Mac] Zsh 관련 세팅 및 Oh-my-zsh plugins
macOS 버전 10.15 인 ‘카탈리나’부터 기본 쉘 (Shell) 이 bash에서 zsh (Z shell)로 변경 되었습니다. 현재 맥에 설치된 쉘 확인하기 $ cat /etc/shells # List of acceptable shells for chpass(1). # Ftpd will not allow users to connect who are not using # one of these shells. /bin/bash /bin/csh /bin/dash /bin/ksh /bin/sh /bin/tcsh /bin/zsh 기본 쉘 zsh로 변경하기 $ chsh -s /bin/zsh 현재 기본 쉘 확인 $ echo $0 or $ echo $SHELL zsh 위치 확인 which zsh oh-my-zsh ..
2022.08.27