stty
stty [-F DISPOSITIVO | --file=DISPOSITIVO] [CONFIGURACIÓN]...
o: stty [-F DISPOSITIVO | --file=DISPOSITIVO] [-a|--all]
o: stty [-F DISPOSITIVO | --file=DISPOSITIVO] [-g|--save]"
Declarar o cambiar características del terminal.
Options
--all,-a-
stty-option-all
--save,-g-
stty-option-save
--file=<DEVICE>,-F <DEVICE>-
stty-option-file
-
stty-option-settings
Examples
Muestra el tamaño actual del terminal:
stty size
Muestra todos los ajustes del terminal actual:
stty {{[-a|--all]}}
Establece el número de filas o columnas:
stty {{rows|cols}} {{cuenta}}
Obtiene la velocidad de transferencia real de un dispositivo:
stty {{[-F|--file]}} {{ruta/al/archivo_del_dispositivo}} speed
Restablece todos los modos a valores razonables para la terminal actual:
stty sane
Cambia entre el modo sin procesar y el modo normal:
stty {{raw|cooked}}
Activa o desactiva el eco de caracteres:
stty {{-echo|echo}}
Muestra la ayuda:
stty --help
The examples are provided by the tldr-pages project under the CC BY 4.0 License.
Please note that, as uutils is a work in progress, some examples might fail.