Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git] / usr.bin / seq / seq.1
blob55cffc54eecddee394c0ef7c150eb77a24d611e4
1 .\"     $NetBSD: seq.1,v 1.5 2008/04/30 14:22:14 ginsbach Exp $
2 .\"
3 .\" Copyright (c) 2005 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
5 .\"
6 .\" This code is derived from software contributed to The NetBSD Foundation
7 .\" by Brian Ginsbach.
8 .\"
9 .\" Redistribution and use in source and binary forms, with or without
10 .\" modification, are permitted provided that the following conditions
11 .\" are met:
12 .\" 1. Redistributions of source code must retain the above copyright
13 .\"    notice, this list of conditions and the following disclaimer.
14 .\" 2. Redistributions in binary form must reproduce the above copyright
15 .\"    notice, this list of conditions and the following disclaimer in the
16 .\"    documentation and/or other materials provided with the distribution.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
19 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
22 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 .\" POSSIBILITY OF SUCH DAMAGE.
29 .\"
30 .\"
31 .Dd January 17, 2005
32 .Dt SEQ 1
33 .Os
34 .Sh NAME
35 .Nm seq
36 .Nd print sequences of numbers
37 .Sh SYNOPSIS
38 .Nm
39 .Op Fl w
40 .Op Fl f Ar format
41 .Op Fl s Ar string
42 .Op Fl t Ar string
43 .Op Ar first Op Ar incr
44 .Ar last
45 .Sh DESCRIPTION
46 The
47 .Nm
48 utility prints a sequence of numbers, one per line
49 .Pq default ,
50 from
51 .Ar first
52 .Pq default 1 ,
53 to near
54 .Ar last
55 as possible, in increments of
56 .Ar incr
57 .Pq default 1 .
58 When
59 .Ar first
60 is larger than
61 .Ar last
62 the default
63 .Ar incr
64 is -1.
65 .Pp
66 All numbers are interpreted as floating point.
67 .Pp
68 Normally integer values are printed as decimal integers.
69 .Pp
70 The
71 .Nm
72 utility accepts the following options:
73 .Bl -tag -width Ar
74 .It Fl f Ar format
75 Use a
76 .Xr printf 3
77 style
78 .Ar format
79 to print each number.
80 Only the
81 .Cm E ,
82 .Cm e ,
83 .Cm f ,
84 .Cm G ,
85 .Cm g ,
86 and
87 .Cm %
88 conversion characters are valid, along with any optional
89 flags and an optional numeric mimimum field width or precision.
90 The
91 .Ar format
92 can contain character escape sequences in backslash notation as
93 defined in
94 .St -ansiC .
95 The default is
96 .Cm %g .
97 .It Fl s Ar string
98 Use
99 .Ar string
100 to separate numbers.
102 .Ar string
103 can contain character escape sequences in backslash notation as
104 defined in
105 .St -ansiC .
106 The default is
107 .Cm \en .
108 .It Fl t Ar string
110 .Ar string
111 to terminate sequence of numbers.
113 .Ar string
114 can contain character escape sequences in backslash notation as
115 defined in
116 .St -ansiC .
117 This option is useful when the default separator
118 does not contain a
119 .Cm \en .
120 .It Fl w
121 Equalize the widths of all numbers by padding with zeros as necessary.
122 This option has no effect with the
123 .Fl f
124 option.
125 If any sequence numbers will be printed in exponential notation,
126 the default conversion is changed to
127 .Cm %e .
132 utility exits 0 on success and non-zero if an error occurs.
133 .Sh EXAMPLES
134 .Bd -literal -offset indent
135 # seq 1 3
140 # seq 3 1
145 # seq -w 0 .05 .1
146 0.00
147 0.05
148 0.10
150 .Sh SEE ALSO
151 .Xr jot 1 ,
152 .Xr printf 1 ,
153 .Xr printf 3
154 .Sh HISTORY
157 command first appeared in
158 .Tn "Plan 9 from Bell Labs" .
161 command appeared in
162 .Nx 3.0 .
163 This command was based on the command of the same name in
164 .Tn "Plan 9 from Bell Labs"
165 and the
166 .Tn GNU
167 core utilities.
169 .Tn GNU
171 command first appeared in the 1.13 shell utilities release.
172 .Sh BUGS
174 .Fl w
175 option does not handle the transition from pure floating point
176 to exponent representation very well.
179 command is not bug for bug compatible with the
180 .Tn "Plan 9 from Bell Labs"
182 .Tn GNU
183 versions of
184 .Nm .