2002-09-26 20:12:39 +04:00
|
|
|
.\" $NetBSD: hangman.6,v 1.10 2002/09/26 16:12:40 wiz Exp $
|
1995-03-23 11:28:00 +03:00
|
|
|
.\"
|
|
|
|
.\" Copyright (c) 1983, 1993
|
|
|
|
.\" The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
.\"
|
|
|
|
.\" 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 the University of
|
|
|
|
.\" California, Berkeley and its contributors.
|
|
|
|
.\" 4. Neither the name of the University nor the names of its contributors
|
|
|
|
.\" 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.
|
|
|
|
.\"
|
1995-03-23 11:28:00 +03:00
|
|
|
.\" @(#)hangman.6 8.1 (Berkeley) 5/31/93
|
1993-03-21 12:45:37 +03:00
|
|
|
.\"
|
1995-03-23 11:28:00 +03:00
|
|
|
.Dd May 31, 1993
|
1993-08-05 05:46:15 +04:00
|
|
|
.Dt HANGMAN 6
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm hangman
|
2002-01-20 03:52:22 +03:00
|
|
|
.Nd computer version of the game hangman
|
1993-08-05 05:46:15 +04:00
|
|
|
.Sh SYNOPSIS
|
1997-10-11 05:16:26 +04:00
|
|
|
.Nm
|
1999-09-18 00:45:48 +04:00
|
|
|
.Op Fl d Ar wordlist
|
2002-01-20 03:42:51 +03:00
|
|
|
.Op Fl m Ar minlen
|
1993-08-05 05:46:15 +04:00
|
|
|
.Sh DESCRIPTION
|
1993-03-21 12:45:37 +03:00
|
|
|
In
|
1997-10-11 05:16:26 +04:00
|
|
|
.Nm "" ,
|
1993-03-21 12:45:37 +03:00
|
|
|
the computer picks a word from the on-line word list
|
|
|
|
and you must try to guess it.
|
|
|
|
The computer keeps track of which letters have been guessed
|
|
|
|
and how many wrong guesses you have made on the screen in a graphic fashion.
|
1999-09-18 00:45:48 +04:00
|
|
|
.Sh OPTIONS
|
|
|
|
.Bl -tag -width flag
|
|
|
|
.It Fl d
|
|
|
|
Use the specified
|
|
|
|
.Ar wordlist
|
|
|
|
instead of the default one named below.
|
2002-01-20 03:42:51 +03:00
|
|
|
.It Fl m
|
2002-09-26 20:12:39 +04:00
|
|
|
Set the minimum word length to use.
|
|
|
|
The default is 6 letters.
|
1999-09-18 00:45:48 +04:00
|
|
|
.El
|
1993-08-05 05:46:15 +04:00
|
|
|
.Sh FILES
|
1993-09-16 21:02:51 +04:00
|
|
|
.Bl -tag -width /usr/share/dict/words -compact
|
|
|
|
.It Pa /usr/share/dict/words
|
1993-08-05 05:46:15 +04:00
|
|
|
On-line word list
|
|
|
|
.El
|
2002-01-20 03:52:22 +03:00
|
|
|
.Sh AUTHORS
|
|
|
|
.An Ken Arnold
|