Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

nowhere(1) [debian man page]

nowhere(1)						      General Commands Manual							nowhere(1)

NAME
nowhere - a tree parser generator for Standard ML SYNOPSIS
nowhere file DESCRIPTION
This manual page documents briefly the nowhere command. This manual page was written for the Debian distribution because the original pro- gram does not have a manual page. The nowhere program is a simple source to source translation tool that expands out case expressions with conditional patterns. Conditional patterns use the "where" keyword. For example: case l of [x,y,z] where x=1 => 1 | _ => 2 means the same as: case l of [1,y,z] => 1 | _ => 2 Currently, the input file must be of the following form: local <definitions> in <body> end <definitions> should include all datatypes definitions that are used inside the body. It is only for the tool's benefit and does not appear in the out- put. Only body appears at the output. You can use the special declaration include "filename" to import extra definitions. The tool translates all case expressions with guards into the appropriate code. SEE ALSO
/usr/share/doc/nowhere/README AUTHOR
This manual page was written by Aaron Read <amread@nyx.net>. for the Debian GNU/Linux system (but may be used by others) July 21, 2004 nowhere(1)

Check Out this Related Man Page

UNIQUE(8)						      System Manager's Manual							 UNIQUE(8)

NAME
unique - removes duplicates from a wordlist SYNOPSIS
unique output-file DESCRIPTION
This manual page documents briefly the unique command, which is part of the john package. This manual page was written for the Debian GNU/Linux distribution because the original program does not have a manual page. john, better known as John the Ripper, is a tool to find weak passwords of users in a server. The unique tool finds and removes duplicate entries from a wordlist (read from stdin), without changing the order. This is important to increase the performance of john when using the wordlist method. SEE ALSO
john(8), mailer(8), unafs(8), unshadow(8). The programs are documented fully by John's documentation, which should be available in /usr/share/doc/john or other location, depending on your system. AUTHOR
This manual page was written by Jordi Mallach <jordi@debian.org>, for the Debian GNU/Linux system (but may be used by others). John the Ripper and mailer were written by Solar Designer <solar@openwall.com>. The complete list of contributors can be found in the CRED- ITS file in the documentation directory. john June 03, 2004 UNIQUE(8)
Man Page