mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
16 lines
293 B
Markdown
16 lines
293 B
Markdown
# chsh
|
|
|
|
> Change the user's login shell.
|
|
> More information: <https://manned.org/chsh>.
|
|
|
|
- Change the current user's login shell interactively:
|
|
|
|
`chsh`
|
|
|
|
- Change the login shell for a given user to Zsh:
|
|
|
|
`chsh --shell {{/bin/zsh}} {{username}}`
|
|
|
|
- List available shells:
|
|
|
|
`chsh --list-shells`
|