下面这个命令行可以查看电脑上有哪些shell,
cat /etc/shells
在我的电脑中显示如下:
(base) wodeMacBook-Air-2:~ shendinghui$ 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
(base) wodeMacBook-Air-2:~ shendinghui$
先把bash切换成zsh,使用命令行如下:
chsh -s /bin/zsh
执行命令后,会让你输入电脑的密码,输入即可。
完成后,需要完全退出终端,再次进入时,就已经从bash切换到zsh了。
如果又想切换回bash,可使用如下命令:
chsh -s /bin/bash
转载原文链接:https://www.cnblogs.com/kunmomo/p/11206725.html