mac 终端常用命令

101 阅读1分钟
  • 可用的shell列表

cat /etc/shells

结果如下

image.png

  • 查看当前使用的是哪个shell

echo $SHELL
  • To change the default shell to Bash, enter:

chsh -s /bin/bash

如果没有改变

image.png

更高权限 执行

sudo chsh -s /bin/bash

image.png

  • To change the default shell to Zsh, enter

chsh -s /bin/zsh