JOT(1) - General Commands Manual # JOT(1) - General Commands Manual
NAME # jot - print sequential or random data
SYNOPSIS # jot [-cnr] [-b word] [-p precision] [-s string] [-w word] [reps [begin [end [step]]]]
DESCRIPTION # jot is used to print out increasing, decreasing, random, or redundant data, usually numbers, one per line.
The options are as follows:
-b word
Just print word repetitively. Overrides earlier -b, -c, and -w.
...
RS(1) - General Commands Manual # RS(1) - General Commands Manual
NAME # rs - reshape a data array
SYNOPSIS # rs [-CcSs[x]] [-GgKkw N] [-EeHhjmnTtyz] [rows [cols]]
DESCRIPTION # rs reads the standard input, interpreting each line as a row of blank-separated entries in an array, transforms the array according to the options, and writes it on the standard output. With no arguments it transforms stream input into a columnar format convenient for terminal viewing.
...
SEQ(1) - General Commands Manual # SEQ(1) - General Commands Manual
NAME # seq - print sequences of numbers
SYNOPSIS # seq [-w] [-f format] [-s string] [first [incr]] last
DESCRIPTION # The seq utility prints a sequence of numbers, one per line by default, from first (default 1) to as near last as possible, in increments of incr (default 1). When first is larger than last, the default incr is -1.
...