]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/factor/factor.6
This commit was generated by cvs2svn to compensate for changes in r55289,
[FreeBSD/FreeBSD.git] / games / factor / factor.6
1 .\" Copyright (c) 1989, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" This code is derived from software contributed to Berkeley by
5 .\" Landon Curt Noll.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\" 2. Redistributions in binary form must reproduce the above copyright
13 .\"    notice, this list of conditions and the following disclaimer in the
14 .\"    documentation and/or other materials provided with the distribution.
15 .\" 3. All advertising materials mentioning features or use of this software
16 .\"    must display the following acknowledgement:
17 .\"     This product includes software developed by the University of
18 .\"     California, Berkeley and its contributors.
19 .\" 4. Neither the name of the University nor the names of its contributors
20 .\"    may be used to endorse or promote products derived from this software
21 .\"    without specific prior written permission.
22 .\"
23 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 .\" SUCH DAMAGE.
34 .\"
35 .\"     @(#)factor.6    8.1 (Berkeley) 5/31/93
36 .\"
37 .\" $FreeBSD$
38 .\"
39 .\" By: Landon Curt Noll   chongo@toad.com,   ...!{sun,tolsoft}!hoptoad!chongo
40 .\"
41 .\"   chongo <for a good prime call: 391581 * 2^216193 - 1> /\oo/\
42 .\"
43 .TH FACTOR 6 "Jan 7, 1999"
44 .UC 7
45 .SH NAME
46 factor, primes \- factor a number, generate primes
47 .SH SYNOPSIS
48 .B factor
49 -[h] [ number ] ...
50 .PP
51 .B primes
52 -[h] [ start [ stop ]]
53 .SH DESCRIPTION
54 The
55 .I factor
56 utility will factor integers between 0 and ULONG_MAX (4294967295 on 32
57 bit architectures, 18446744073709551615 on 64 bit ones), inclusive.
58 When a number is factored, it is printed, followed by a ``:'',
59 and the list of factors on a single line.
60 Factors are listed in ascending order, and are preceded by a space.
61 If a factor divides a value more than once, it will be printed
62 more than once.
63 .PP
64 When
65 .I factor
66 is invoked with one or more arguments,
67 each argument will be factored.
68 .PP
69 When
70 .I factor
71 is invoked with no arguments,
72 .I factor
73 reads numbers, one per line, from standard input, until end of file or error.
74 Leading white-space and empty lines are ignored.
75 Numbers may be preceded by a single - or +.
76 Numbers are terminated by a non-digit character (such as a newline).
77 After a number is read, it is factored.
78 Input lines must not be longer than 255 characters.
79 .PP
80 The
81 .I primes
82 utility prints primes in ascending order, one per line, starting at or above
83 .B start
84 and continuing until, but not including
85 .B stop.
86 The
87 .B start 
88 value must be at least 0 and not greater than
89 .B stop.\&
90 The
91 .B stop
92 value must not be greater than 4294967295.
93 The default value of
94 .B stop
95 is 4294967295.
96 .PP
97 When the
98 .I primes
99 utility is invoked with no arguments,
100 .B start
101 is read from standard input.
102 .B Stop
103 is taken to be 4294967295.
104 The
105 .B start
106 value may be preceded by a single +.
107 The
108 .B start
109 value is terminated by a non-digit character (such as a newline).
110 The input line must not be longer than 255 characters.
111 .SH OPTIONS
112 .LP
113 .TP 8
114 .B \-h
115 Print the results in hexadecimal rather than decimal.
116 .SH DIAGNOSTICS
117 Out of range or invalid input results in `ouch' being 
118 written to standard error.
119 .SH BUGS
120 .I Factor
121 cannot handle the ``10 most wanted'' factor list,
122 .I primes
123 won't get you a world record.