1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 11:15:23 +02:00

tput: add page

This commit is contained in:
Hayden Schiff 2016-02-22 19:31:30 -05:00
parent b566deb4ff
commit 31a65a9348

23
pages/common/tput.md Normal file
View file

@ -0,0 +1,23 @@
# tput
> View and modify terminal settings and capabilities.
- Move the cursor to a screen location:
`tput cup {{y_coordinate}} {{x_coordinate}}`
- 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`