1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 00:42:08 +02:00

stty: add Spanish translation (#15698)

This commit is contained in:
Darío Hereñú 2025-02-06 23:24:37 -03:00 committed by GitHub
parent e4787ebb39
commit 04b089ce47
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

28
pages.es/common/stty.md Normal file
View file

@ -0,0 +1,28 @@
# stty
> Establece opciones para una interfaz del dispositivo terminal.
> Más información: <https://www.gnu.org/software/coreutils/manual/html_node/stty-invocation.html>.
- Muestra todas las opciones de la terminal actual:
`stty --all`
- Establece el número de filas o columnas:
`stty {{filas|columnas}} {{cuenta}}`
- Obtiene la velocidad de transferencia real de un dispositivo:
`stty --file {{ruta/al/archivo_del_dispositivo}} speed`
- Restablece todos los modos a valores razonables para el terminal actual:
`stty sane`
- Cambia entre modo raw y cooked:
`stty {{raw|cooked}}`
- Desactiva o activa el eco de caracteres:
`stty {{-echo|echo}}`