2012-03-04 15:54:06 +04:00
|
|
|
.\" $NetBSD: ypcat.1,v 1.21 2012/03/04 11:54:06 wiz Exp $
|
1994-10-28 19:46:57 +03:00
|
|
|
.\"
|
1993-12-02 21:37:54 +03:00
|
|
|
.\" Copyright (c) 1993 Winning Strategies, Inc.
|
|
|
|
.\" 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. All advertising materials mentioning features or use of this software
|
|
|
|
.\" must display the following acknowledgement:
|
|
|
|
.\" This product includes software developed by Winning Strategies, Inc.
|
|
|
|
.\" 4. The name of the author may not be used to endorse or promote products
|
1994-01-29 04:43:03 +03:00
|
|
|
.\" derived from this software without specific prior written permission
|
1993-12-02 21:37:54 +03:00
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
.\"
|
2012-03-02 21:27:48 +04:00
|
|
|
.Dd March 2, 2012
|
1993-12-02 21:37:54 +03:00
|
|
|
.Dt YPCAT 1
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm ypcat
|
2009-06-21 19:05:59 +04:00
|
|
|
.Nd print the values of all keys in a NIS database
|
1993-12-02 21:37:54 +03:00
|
|
|
.Sh SYNOPSIS
|
1997-10-20 07:42:51 +04:00
|
|
|
.Nm
|
2011-01-12 21:28:19 +03:00
|
|
|
.Op Fl kst
|
2012-03-02 21:27:48 +04:00
|
|
|
.Op Fl b Ar num_retry
|
2011-01-12 22:55:06 +03:00
|
|
|
.Op Fl d Ar domainname
|
1993-12-02 21:37:54 +03:00
|
|
|
.Ar mapname
|
2003-02-25 13:34:36 +03:00
|
|
|
.Nm
|
1993-12-02 21:37:54 +03:00
|
|
|
.Fl x
|
|
|
|
.Sh DESCRIPTION
|
1997-10-20 07:42:51 +04:00
|
|
|
.Nm
|
2001-12-01 19:43:07 +03:00
|
|
|
prints out the values of all keys from the
|
2005-02-26 19:18:19 +03:00
|
|
|
.Tn NIS
|
1993-12-02 21:37:54 +03:00
|
|
|
database specified by
|
2001-12-08 22:28:41 +03:00
|
|
|
.Ar mapname ,
|
1993-12-02 21:37:54 +03:00
|
|
|
which may be a map name or a map nickname.
|
|
|
|
.Pp
|
|
|
|
The options are as follows:
|
|
|
|
.Bl -tag -width indent
|
2012-03-02 21:27:48 +04:00
|
|
|
.It Fl b Ar num_retry
|
2012-03-04 15:54:06 +04:00
|
|
|
Do not wait infinite time for the ypserver to come up.
|
|
|
|
Retry only the specified number of times.
|
|
|
|
See
|
|
|
|
.Xr yp_setbindtries 3
|
|
|
|
for explanation.
|
|
|
|
The valid range is limited from 0 to 65535 by this program.
|
1993-12-02 21:37:54 +03:00
|
|
|
.It Fl d Ar domainname
|
|
|
|
Specify a domain other than the default domain.
|
|
|
|
.It Fl k
|
|
|
|
Display map keys.
|
|
|
|
This option is useful with maps in which the values are null or the key
|
|
|
|
is not part of the value.
|
2011-01-12 21:28:19 +03:00
|
|
|
.It Fl s
|
|
|
|
When printing the value of a key, compress all whitespace characters to
|
|
|
|
a single space.
|
|
|
|
Useful when values contain newlines.
|
1993-12-02 21:37:54 +03:00
|
|
|
.It Fl t
|
|
|
|
Inhibit translation of map nicknames
|
|
|
|
to their corresponding map names.
|
|
|
|
.It Fl x
|
2009-06-21 18:57:33 +04:00
|
|
|
Display the map nickname table, found in
|
|
|
|
.Pa /var/yp/nicknames .
|
|
|
|
A built-in default translation table is used if
|
|
|
|
.Pa /var/yp/nicknames
|
2009-06-20 23:27:26 +04:00
|
|
|
does not exist (see
|
|
|
|
.Xr nicknames 5
|
|
|
|
for details).
|
1993-12-02 21:37:54 +03:00
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
1994-10-28 19:46:57 +03:00
|
|
|
.Xr domainname 1 ,
|
1993-12-02 21:37:54 +03:00
|
|
|
.Xr ypmatch 1 ,
|
1997-11-10 02:03:06 +03:00
|
|
|
.Xr ypwhich 1 ,
|
2012-03-02 21:27:48 +04:00
|
|
|
.Xr yp_setbindtries 3 ,
|
2009-06-20 23:27:26 +04:00
|
|
|
.Xr nicknames 5 ,
|
2005-02-26 19:20:36 +03:00
|
|
|
.Xr nis 8 ,
|
1997-11-10 02:03:06 +03:00
|
|
|
.Xr ypbind 8 ,
|
1994-10-28 19:46:57 +03:00
|
|
|
.Xr yppoll 8 ,
|
2001-12-08 22:28:41 +03:00
|
|
|
.Xr ypset 8
|
|
|
|
.Sh AUTHORS
|
|
|
|
.An Theo De Raadt
|
2009-06-20 23:27:26 +04:00
|
|
|
.An Greywolf
|