freebsd-dev/usr.bin/tput/tput.1

180 lines
4.3 KiB
Groff
Raw Normal View History

1994-05-27 12:33:43 +00:00
.\" Copyright (c) 1989, 1990, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. Neither the name of the University nor the names of its contributors
1994-05-27 12:33:43 +00:00
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)tput.1 8.2 (Berkeley) 3/19/94
1999-08-28 01:08:13 +00:00
.\" $FreeBSD$
1994-05-27 12:33:43 +00:00
.\"
.Dd June 15, 2002
1994-05-27 12:33:43 +00:00
.Dt TPUT 1
.Os
1994-05-27 12:33:43 +00:00
.Sh NAME
.Nm tput ,
.Nm clear
1994-05-27 12:33:43 +00:00
.Nd terminal capability interface
.Sh SYNOPSIS
.Nm
1994-05-27 12:33:43 +00:00
.Op Fl T Ar term
.Op Ar attribute ...
.Nm clear
1994-05-27 12:33:43 +00:00
.Sh DESCRIPTION
The
.Nm
utility makes terminal-dependent information available to users or shell
applications.
.Pp
The
.Nm clear
utility executes the
.Dl tput clear
command, ignoring any arguments.
.Pp
The only option to
.Nm
is:
.Bl -tag -width 2n
1994-05-27 12:33:43 +00:00
.It Fl T
The terminal name as specified in the
.Xr termcap 5
database, for example,
.Dq vt100
or
.Dq xterm .
1994-05-27 12:33:43 +00:00
If not specified,
.Nm
1994-05-27 12:33:43 +00:00
retrieves the
.Dq Ev TERM
variable from the environment unless that too is not specified,
in which case an error message will be sent to standard error and
the error status will be 2.
1994-05-27 12:33:43 +00:00
.El
.Pp
The
.Nm
utility outputs a string for each
1994-05-27 12:33:43 +00:00
.Ar attribute
that is of type string; a number for each of type integer.
1994-05-27 12:33:43 +00:00
Otherwise,
.Nm
1994-05-27 12:33:43 +00:00
exits 0 if the terminal has the capability and 1 if it does not,
without further action.
.Pp
If an
1994-05-27 12:33:43 +00:00
.Ar attribute
is of type string, and takes arguments (e.g.\& cursor movement,
1994-05-27 12:33:43 +00:00
the termcap
.Dq cm
capability) the arguments are taken from the command line immediately
1994-05-27 12:33:43 +00:00
following the attribute.
.Pp
The following special attributes are available.
The first three use the capabilities of the specified terminal,
and only work if compatible with the utility's terminal.
1994-05-27 12:33:43 +00:00
.Bl -tag -width Ar
.It Cm clear
1994-05-27 12:33:43 +00:00
Clear the screen (the
.Xr termcap 5
.Dq cl
capability).
.It Cm init
1994-05-27 12:33:43 +00:00
Initialize the terminal (the
.Xr termcap 5
.Dq is
capability).
.It Cm reset
1994-05-27 12:33:43 +00:00
Reset the terminal (the
.Xr termcap 5
.Dq rs
capability).
.It Cm longname
Print the descriptive name of the user's terminal type.
.El
.Sh ENVIRONMENT
.Bl -tag -width ".Ev TERM"
.It Ev TERM
The terminal name, if set and
.Fl T
is not used.
2000-12-19 16:00:12 +00:00
.El
.Sh EXIT STATUS
The exit status of
.Nm
is as follows:
.Bl -tag -width indent
.It 0
If the last
.Ar attribute
is of type string or integer, its value was successfully written
to standard output.
If the
.Ar attribute
is of type boolean, the terminal does have the
.Ar attribute .
Otherwise, no
.Ar attribute
was specified.
.It 1
If the last
.Ar attribute
is of type boolean,
this terminal does not have the
.Ar attribute .
.It 2
Usage error.
For example, see
.Fl T
description.
.It 3
No information is available about the specified terminal type.
.El
1994-05-27 12:33:43 +00:00
.Sh SEE ALSO
2001-08-07 13:41:38 +00:00
.Xr termcap 5 ,
.Xr terminfo 5
2002-06-15 08:41:12 +00:00
.Sh STANDARDS
The
.Nm
utility conforms to
.St -p1003.1-2001 .
.Sh HISTORY
The
.Nm
utility appeared in
2002-06-15 08:41:12 +00:00
.Bx 4.4 .
1994-05-27 12:33:43 +00:00
.Sh BUGS
The
.Nm
2005-02-13 22:25:33 +00:00
utility cannot really distinguish between different types of attributes.
.Pp
Some termcap entries depend upon having a
.Sq %
in them that is just a
.Sq %
and nothing more.
2005-02-13 22:25:33 +00:00
Right now we just warn about them if they do not
have a valid type declaration.
These warnings are sent to
stderr.