查看默认shell
echo $SHELL
更换默认shell
chsh -s /bin/zsh
- 重启terminal
有的时候以上方法会失效,比如在ubuntu bash on windows(wsl) in ConEmu中,这时可以尝试以下方法:
vim ~/.bashrc
- 添加如下内容到 #for examples 注释下面,并保存
# Launch Zsh
if [ -t 1 ]; then
exec zsh
fi
- 重启terminal
还可以更换指定用户的shell
vim /etc/passwd
zhou:x:1000:1000:,,,:/home/zhou:/bin/zsh
网友评论