1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/stty.md

21 lines
426 B
Markdown
Raw Normal View History

2018-10-03 13:48:54 +03:00
# stty
> Set options for a terminal device interface.
> More information: <https://www.gnu.org/software/coreutils/stty>.
2018-10-03 13:48:54 +03:00
- Display all settings for the current terminal:
2022-11-08 06:57:53 +03:00
`stty --all`
2018-10-03 13:48:54 +03:00
2022-12-06 16:48:59 +10:00
- Set the number of rows or columns:
2018-10-03 13:48:54 +03:00
2022-12-06 16:48:59 +10:00
`stty {{rows|cols}} {{count}}`
2018-10-03 13:48:54 +03:00
- Get the actual transfer speed of a device:
2022-11-08 06:57:53 +03:00
`stty --file {{path/to/device_file}} speed`
2018-10-03 13:48:54 +03:00
- Reset all modes to reasonable values for the current terminal:
`stty sane`