11641c11641 < @command{seq} prints a sequence of numbers to standard output. Synopses: --- > @command{seq} prints a sequence of numbers or charachters to standard output. Synopsis: 11647,11650c11647,11650 < @command{seq} prints the numbers from @var{first} to @var{last} by < @var{increment}. By default, @var{first} and @var{increment} are both 1, < and each number is printed on its own line. All numbers can be reals, < not just integers. --- > @command{seq} prints the numbers or characters from @var{first} to > @var{last} by @var{increment}. By default, @var{first} is 1 or a, and > @var{increment} is 1, and each number is printed on its own line. > When printing nubers, all numbers can be reals, not just integers. 11705a11706,11715 > To use characters instead of numbers, make sure the @var{first} and > @var{last} are both characters. > > @example > $ seq A 3 H > A > D > G > @end example >