xref: /freebsd/usr.bin/jot/jot.1 (revision ad30f8e79bd1007cc2476e491bd21b4f5e389e0a)
1.\" Copyright (c) 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 4. Neither the name of the University nor the names of its contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\"	@(#)jot.1	8.1 (Berkeley) 6/6/93
29.\" $FreeBSD$
30.\"
31.Dd June 2, 2010
32.Dt JOT 1
33.Os
34.Sh NAME
35.Nm jot
36.Nd print sequential or random data
37.Sh SYNOPSIS
38.Nm
39.Op Fl cnr
40.Op Fl b Ar word
41.Op Fl w Ar word
42.Op Fl s Ar string
43.Op Fl p Ar precision
44.Op Ar reps Op Ar begin Op Ar end Op Ar s
45.Sh DESCRIPTION
46The
47.Nm
48utility is used to print out increasing, decreasing, random,
49or redundant data, usually numbers, one per line.
50.Pp
51The following options are available:
52.Bl -tag -width indent
53.It Fl r
54Generate random data instead of the default sequential data.
55.It Fl b Ar word
56Just print
57.Ar word
58repetitively.
59.It Fl w Ar word
60Print
61.Ar word
62with the generated data appended to it.
63Octal, hexadecimal, exponential,
64.Tn ASCII ,
65zero padded,
66and right-adjusted representations
67are possible by using the appropriate
68.Xr printf 3
69conversion specification inside
70.Ar word ,
71in which case the data are inserted rather than appended.
72.It Fl c
73This is an abbreviation for
74.Fl w Ar %c .
75.It Fl s Ar string
76Print data separated by
77.Ar string .
78Normally, newlines separate data.
79.It Fl n
80Do not print the final newline normally appended to the output.
81.It Fl p Ar precision
82Print only as many digits or characters of the data
83as indicated by the integer
84.Ar precision .
85In the absence of
86.Fl p ,
87the precision is the greater of the precisions of
88.Ar begin
89and
90.Ar end .
91The
92.Fl p
93option is overridden by whatever appears in a
94.Xr printf 3
95conversion following
96.Fl w .
97.El
98.Pp
99The last four arguments indicate, respectively,
100the number of data, the lower bound, the upper bound,
101and the step size or, for random data, the seed.
102While at least one of them must appear,
103any of the other three may be omitted, and
104will be considered as such if given as
105.Fl ""
106or as an empty string.
107Any three of these arguments determines the fourth.
108If four are specified and the given and computed values of
109.Ar reps
110conflict, the lower value is used.
111If fewer than three are specified, defaults are assigned
112left to right, except for
113.Ar s ,
114which assumes a default of 1 or -1 if both
115.Ar begin
116and
117.Ar end
118are given.
119.Pp
120Defaults for the four arguments are, respectively,
121100, 1, 100, and 1, except that when random data are requested,
122the seed,
123.Ar s ,
124is picked randomly.
125The
126.Ar reps
127argument is expected to be an unsigned integer,
128and if given as zero is taken to be infinite.
129The
130.Ar begin
131and
132.Ar end
133arguments may be given as real numbers or as characters
134representing the corresponding value in
135.Tn ASCII .
136The last argument must be a real number.
137.Pp
138Random numbers are obtained through
139.Xr arc4random 3
140when no seed is specified,
141and through
142.Xr random 3
143when a seed is given.
144When
145.Nm
146is asked to generate random integers or characters with begin
147and end values in the range of the random number generator function
148and no format is specified with one of the
149.Fl w ,
150.Fl b ,
151or
152.Fl p
153options,
154.Nm
155will arrange for all the values in the range to appear in the output
156with an equal probability.
157In all other cases be careful to ensure that the output format's
158rounding or truncation will not skew the distribution of output
159values in an unintended way.
160.Pp
161The name
162.Nm
163derives in part from
164.Nm iota ,
165a function in APL.
166.Ss Rounding and truncation
167The
168.Nm
169utility uses double precision floating point arithmetic internally.
170Before printing a number, it is converted depending on the output
171format used.
172.Pp
173If no output format is specified or the output format is a
174floating point format
175.Po
176.Sq E ,
177.Sq G ,
178.Sq e ,
179.Sq f ,
180or
181.Sq g
182.Pc ,
183the value is rounded using the
184.Xr printf 3
185function, taking into account the requested precision.
186.Pp
187If the output format is an integer format
188.Po
189.Sq D ,
190.Sq O ,
191.Sq U ,
192.Sq X ,
193.Sq c ,
194.Sq d ,
195.Sq i ,
196.Sq o ,
197.Sq u ,
198or
199.Sq x
200.Pc ,
201the value is converted to an integer value by truncation.
202.Pp
203As an illustration, consider the following command:
204.Bd -literal -offset indent
205$ jot 6 1 10 0.5
2061
2072
2082
2092
2103
2114
212.Ed
213.Pp
214By requesting an explicit precision of 1, the values generated before rounding
215can be seen.
216The .5 values are rounded down if the integer part is even,
217up otherwise.
218.Bd -literal -offset indent
219$ jot -p 1 6 1 10 0.5
2201.0
2211.5
2222.0
2232.5
2243.0
2253.5
226.Ed
227.Pp
228By offsetting the values slightly, the values generated by the following
229command are always rounded down:
230.Bd -literal -offset indent
231$ jot -p 0 6 .9999999999 10 0.5
2321
2331
2342
2352
2363
2373
238.Ed
239.Pp
240Another way of achieving the same result is to force truncation by
241specifying an integer format:
242.Bd -literal -offset indent
243$ jot -w %d 6 1 10 0.5
244.Ed
245.Pp
246.Sh EXIT STATUS
247.Ex -std
248.Sh EXAMPLES
249The command
250.Dl jot - 1 10
251.Pp
252prints the integers from 1 to 10,
253while the command
254.Dl jot 21 -1 1.00
255.Pp
256prints 21 evenly spaced numbers increasing from -1 to 1.
257The
258.Tn ASCII
259character set is generated with
260.Dl jot -c 128 0
261.Pp
262and the strings xaa through xaz with
263.Dl jot -w xa%c 26 a
264.Pp
265while 20 random 8-letter strings are produced with
266.Dl "jot -r -c 160 a z | rs -g 0 8"
267.Pp
268Infinitely many
269.Em yes Ns 's
270may be obtained through
271.Dl jot -b yes 0
272.Pp
273and thirty
274.Xr ed 1
275substitution commands applying to lines 2, 7, 12, etc.\& is
276the result of
277.Dl jot -w %ds/old/new/ 30 2 - 5
278.Pp
279The stuttering sequence 9, 9, 8, 8, 7, etc.\& can be
280produced by truncating the output precision and a suitable choice of step size,
281as in
282.Dl jot -w %d - 9.5 0 -.5
283.Pp
284and a file containing exactly 1024 bytes is created with
285.Dl jot -b x 512 > block
286.Pp
287Finally, to set tabs four spaces apart starting
288from column 10 and ending in column 132, use
289.Dl expand -`jot -s, - 10 132 4`
290.Pp
291and to print all lines 80 characters or longer,
292.Dl grep `jot -s \&"\&" -b \&. 80`
293.Sh DIAGNOSTICS
294The following diagnostic messages deserve special explanation:
295.Bl -diag
296.It "illegal or unsupported format '%s'"
297The requested conversion format specifier for
298.Xr printf 3
299was not of the form
300.Dl %[#][ ][{+,-}][0-9]*[.[0-9]*]?
301where
302.Dq ?\&
303must be one of
304.Dl [l]{d,i,o,u,x}
305or
306.Dl {c,e,f,g,D,E,G,O,U,X}
307.It "range error in conversion"
308A value to be printed fell outside the range of the data type
309associated with the requested output format.
310.It "too many conversions"
311More than one conversion format specifier has been supplied,
312but only one is allowed.
313.El
314.Sh SEE ALSO
315.Xr ed 1 ,
316.Xr expand 1 ,
317.Xr rs 1 ,
318.Xr seq 1 ,
319.Xr yes 1 ,
320.Xr arc4random 3 ,
321.Xr printf 3 ,
322.Xr random 3
323.Sh HISTORY
324The
325.Nm
326utility first appeared in
327.Bx 4.2 .
328