]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - usr.bin/tput/tput.1
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / usr.bin / tput / tput.1
1 .\" Copyright (c) 1989, 1990, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)tput.1      8.2 (Berkeley) 3/19/94
29 .\" $FreeBSD$
30 .\"
31 .Dd June 15, 2002
32 .Dt TPUT 1
33 .Os
34 .Sh NAME
35 .Nm tput ,
36 .Nm clear
37 .Nd terminal capability interface
38 .Sh SYNOPSIS
39 .Nm
40 .Op Fl T Ar term
41 .Ar attribute ...
42 .Nm clear
43 .Sh DESCRIPTION
44 The
45 .Nm
46 utility makes terminal-dependent information available to users or shell
47 applications.
48 When invoked as the
49 .Nm clear
50 utility, the screen will be cleared as if
51 .Dl tput clear
52 had been executed.
53 The options to
54 .Nm
55 are as follows:
56 .Bl -tag -width Ds
57 .It Fl T
58 The terminal name as specified in the
59 .Xr termcap 5
60 database, for example,
61 .Dq vt100
62 or
63 .Dq xterm .
64 If not specified,
65 .Nm
66 retrieves the
67 .Dq Ev TERM
68 variable from the environment.
69 .El
70 .Pp
71 The
72 .Nm
73 utility outputs a string for each
74 .Ar attribute
75 that is of type string; a number for each of type integer.
76 Otherwise,
77 .Nm
78 exits 0 if the terminal has the capability and 1 if it does not,
79 without further action.
80 .Pp
81 If an
82 .Ar attribute
83 is of type string, and takes arguments (e.g.\& cursor movement,
84 the termcap
85 .Dq cm
86 sequence) the arguments are taken from the command line immediately
87 following the attribute.
88 .Pp
89 The following special attributes are available:
90 .Bl -tag -width Ar
91 .It Cm clear
92 Clear the screen (the
93 .Xr termcap 5
94 .Dq cl
95 sequence).
96 .It Cm init
97 Initialize the terminal (the
98 .Xr termcap 5
99 .Dq is
100 sequence).
101 .It Cm longname
102 Print the descriptive name of the user's terminal type.
103 .It Cm reset
104 Reset the terminal (the
105 .Xr termcap 5
106 .Dq rs
107 sequence).
108 .El
109 .Sh EXIT STATUS
110 The exit status of
111 .Nm
112 is as follows:
113 .Bl -tag -width indent
114 .It 0
115 If the last attribute
116 .Ar attribute
117 argument is of type string or integer, its value was successfully written
118 to standard output.
119 If the argument is of type boolean, the terminal has this attribute.
120 .It 1
121 This terminal does not have the specified boolean
122 .Ar attribute .
123 .It 2
124 Usage error.
125 .It 3
126 No information is available about the specified terminal type.
127 .El
128 .Sh SEE ALSO
129 .Xr termcap 5 ,
130 .Xr terminfo 5
131 .Sh STANDARDS
132 The
133 .Nm
134 utility conforms to
135 .St -p1003.1-2001 .
136 .Sh HISTORY
137 The
138 .Nm
139 utility appeared in
140 .Bx 4.4 .
141 .Sh BUGS
142 The
143 .Nm
144 utility cannot really distinguish between different types of attributes.
145 .Pp
146 Some termcap entries depend upon having a
147 .Sq %
148 in them that is just a
149 .Sq %
150 and nothing more.
151 Right now we just warn about them if they do not
152 have a valid type declaration.
153 These warnings are sent to
154 stderr.