tldr/pages.ru/common/tput.md

29 lines
855 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# tput
> Просмотр и изменение настроек и возможностей терминала.
> Больше информации: <https://manned.org/tput>.
- Переместить курсор в определённое место на экране:
`tput cup {{номер_строки}} {{номер_столбца}}`
- Установить цвет переднего плана (af) или фона (ab):
`tput {{setaf|setab}} {{ansi_код_цвета}}`
- Показать количество столбцов, строк или цветов:
`tput {{cols|lines|colors}}`
- Подать звуковой сигнал терминала:
`tput bel`
- Сбросить все атрибуты терминала:
`tput sgr0`
- Включить или отключить перенос слов:
`tput {{smam|rmam}}`