1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 18:22:08 +02:00
tldr/pages/common/tput.md
2022-12-06 07:48:59 +01:00

28 lines
489 B
Markdown

# tput
> View and modify terminal settings and capabilities.
> More information: <https://manned.org/tput>.
- Move the cursor to a screen location:
`tput cup {{row}} {{column}}`
- Set foreground (af) or background (ab) color:
`tput {{setaf|setab}} {{ansi_color_code}}`
- Show number of columns, lines, or colors:
`tput {{cols|lines|colors}}`
- Ring the terminal bell:
`tput bel`
- Reset all terminal attributes:
`tput sgr0`
- Enable or disable word wrap:
`tput {{smam|rmam}}`