tput - initialize a terminal or query terminfo database
tput [-Ttype] capname [parms ... ]
tput [-Ttype] init
tput [-Ttype] reset
tput [-Ttype] longname
tput -S <<
The tput(1) utility uses the terminfo database to make the values of terminal-dependent capabilities and information available to the shell (see sh(1)), to initialize or reset the terminal, or return the long name of the requested terminal type. The tput(1) utility outputs a string if the attribute capname (capability name) is of type string, or it outputs an integer if the attribute is of type integer. If the attribute is of type boolean, tput(1) simply sets the exit code (0 for TRUE if the terminal has the capability, 1 for FALSE if it does not), and produces no output. Before using a value returned on standard output, the user should test the exit code ($?; see sh(1)) to be sure it is 0. (See the DIAGNOSTICS and DIAGNOSTICS sections.) For a complete list of capabilities and the capname associated with each, see terminfo(1). The tput(1) utility accepts the following options:
Initialize the terminal according to the type of terminal in the environment variable TERM. This command should be included in everyone's $HOME/.profile after the environment variable TERM has been exported.
tput init
Reset an AT&T 5620 terminal, overriding the type of terminal in the environment variable TERM.
tput -T5620 reset
Send the sequence to move the cursor to row 0, column 0 (the upper left corner of the screen, usually known as the "home" cursor position).
tput cup 0 0
Echo the clear-screen sequence for the current terminal.
tput clear
Print the number of columns for the current terminal.
tput cols
Print the number of columns for the 450 terminal.
tput -T450 cols
Set the shell variables bold to begin stand-out mode sequence, and offbold, to end standout mode sequence, for the current terminal. This might be followed by a prompt: echo "${bold}Please type in your name: ${offbold}\c"
bold='tput smso' offbold='tput rmso'
Set exit code to indicate whether the current terminal is a hardcopy terminal.
tput hc
Send the sequence to move the cursor to row 23, column 4.
tput cup 23 4
Print the long name from the terminfo database for the type of terminal specified in the environmental variable TERM.
tput longname
This example shows tput(1) processing several capabilities in one invocation. This example clears the screen, moves the cursor to position 10, 10, and turns on bold (extra bright) mode. The list is terminated by an exclamation mark (!) on a line by itself.
tput -S <<!
> clear
> cup 10 10
> bold
> !
The tput(1) utility makes use of the following files:
The exit code depends upon the type of the capability, here given as capname.
If capname is of type boolean, a value of 0 is set for TRUE and 1 for FALSE unless the -S option is used.
If capname is of type string, a value of 0 is set if the capname is defined for this terminal type (the value of capname is returned on standard output); a value of 1 is set if capname is not defined for this terminal type (a null value is returned on standard output).
If capname is of type boolean or string and the -S option is used, a value of 0 is returned to indicate that all lines were successful. No indication of which line failed can be given, so exit code 1 will never appear. Exit codes 2, 3, and 4 retain their usual interpretation.
If capname is of type integer, a value of 0 is always set, whether or not capname is defined for this terminal type. To determine whether capname is defined for this terminal type, the user must test the value of standard output. A value of -1 means that capname is not defined for this terminal type.
Any other exit code indicates an error.
The tput(1) utility prints the following error messages and sets the corresponding exit codes.
Exit Code | Error Message |
---|---|
0 | Capname is a numeric variable that is not specified in
the terminfo(5) database for this terminal type (such as tput
|
1 | No error message is printed; see the EXIT CODES section. |
2 | Usage error. |
3 | Unknown terminal type or no terminfo database. |
4 | Unknown terminfo capability capname. |
The longname and -S options, and the parameter-substitution features used in the cup example, are not supported in Berkeley Software Distribution (BSD) curses or in AT&T/USL curses before SVr4.
clear(1)
stty(1)
terminfo(5)