You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

544 B

chsh

说明

chsh命令 用来更换登录系统时使用的shell。若不指定任何参数与用户名称则chsh会以应答的方式进行设置

选项

-s, --shell <shell>  更改指定登录 shell
-l, --list-shells    打印 shell 列表并退出

实例

chsh -s /bin/zsh    # 把我的shell改成zshchsh -s其实修改的是/etc/passwd文件里和你的用户名相对应的那一行

# 查看系统安装了哪些shell的两种方法
chsh -l # 第一种
cat /etc/shells # 第二种