mirror of
https://github.com/uutils/coreutils.git
synced 2026-06-10 15:48:22 -07:00
4fbe2b2b5e
Add support for the `-f FORMAT` option to `seq`. This option instructs
the program to render each value in the generated sequence using a
given `printf`-style floating point format. For example,
$ seq -f %.2f 0.0 0.1 0.5
0.00
0.10
0.20
0.30
0.40
0.50
Fixes issue #2616.