mirror of https://github.com/CrimsonTome/tldr.git
21 lines
436 B
Markdown
21 lines
436 B
Markdown
# chsh
|
|
|
|
> Cambia el intérprete de comandos de inicio de sesión.
|
|
> Más información: <https://manned.org/chsh>.
|
|
|
|
- Cambia interactivamente el intérprete del usuario actual:
|
|
|
|
`chsh`
|
|
|
|
- Cambia el intérprete del usuario actual por otro específico:
|
|
|
|
`chsh -s {{ruta/al/intérprete}}`
|
|
|
|
- Cambia el intérprete de otro usuario:
|
|
|
|
`chsh -s {{ruta/al/intérprete}} {{nombre_de_usuario}}`
|
|
|
|
- [l]ista los intérpretes disponibles:
|
|
|
|
`chsh -l`
|