Lines Matching +full:many +full:- +full:to +full:- +full:one
13 .\" may be used to endorse or promote products derived from this software
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
45 utility is used to print out increasing, decreasing, random,
46 or redundant data, usually numbers, one per line.
49 .Bl -tag -width indent
59 with the generated data appended to it.
63 and right-adjusted representations
77 Do not print the final newline normally appended to the output.
79 Print only as many digits or characters of the data
99 While at least one of them must appear,
108 If one or two are specified, defaults are assigned
111 which assumes a default of 1 (or -1 if
116 Then the default values are assigned to the leftmost omitted arguments until
126 argument is expected to be an unsigned integer,
127 and if given as zero is taken to be infinite.
145 is asked to generate random integers or characters with begin
147 and no format is specified with one of the
154 will arrange for all the values in the range to appear in the output
156 In all other cases be careful to ensure that the output format's
200 the value is converted to an integer value by truncation.
203 .Bd -literal -offset indent
217 .Bd -literal -offset indent
218 $ jot -p 1 6 1 10 0.5
229 .Bd -literal -offset indent
230 $ jot -p 0 6 .9999999999 10 0.5
239 Another way of achieving the same result is to force truncation by
241 .Bd -literal -offset indent
242 $ jot -w %d 6 1 10 0.5
245 .Ex -std
248 .Dl jot - 1 10
250 prints the integers from 1 to 10,
252 .Dl jot 21 -1 1.00
254 prints 21 evenly spaced numbers increasing from -1 to 1.
258 .Dl jot -c 128 0
261 .Dl jot -w xa%c 26 a
263 while 20 random 8-letter strings are produced with
264 .Dl "jot -r -c 160 a z | rs -g 0 8"
266 Infinitely many
269 .Dl jot -b yes 0
273 substitution commands applying to lines 2, 7, 12, etc.\& is
275 .Dl jot -w %ds/old/new/ 30 2 - 5
280 .Dl jot -w %d - 9.5 0 -.5
283 .Dl jot -b x 512 > block
285 Finally, to set tabs four spaces apart starting
287 .Dl expand -`jot -s, - 10 132 4`
289 and to print all lines 80 characters or longer,
290 .Dl grep `jot -s \&"\&" -b \&. 80`
293 .Bl -diag
298 .Dl %[#][ ][{+,-}][0-9]*[.[0-9]*]?
301 must be one of
306 A value to be printed fell outside the range of the data type
308 .It "too many conversions"
309 More than one conversion format specifier has been supplied,
310 but only one is allowed.