mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
20 lines
436 B
Markdown
20 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`
|