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.

26 lines
544 B

5 years ago
# chsh
7 years ago
6 years ago
## 说明
7 years ago
5 years ago
**chsh命令** 用来更换登录系统时使用的shell。若不指定任何参数与用户名称则chsh会以应答的方式进行设置
7 years ago
5 years ago
## 选项
7 years ago
5 years ago
```markdown
-s, --shell <shell> 更改指定登录 shell
-l, --list-shells 打印 shell 列表并退出
7 years ago
```
5 years ago
## 实例
7 years ago
5 years ago
```bash
chsh -s /bin/zsh # 把我的shell改成zshchsh -s其实修改的是/etc/passwd文件里和你的用户名相对应的那一行
7 years ago
5 years ago
# 查看系统安装了哪些shell的两种方法
chsh -l # 第一种
cat /etc/shells # 第二种
7 years ago
```