coreutils/src/uu/seq
Jeffrey Finkelstein 4fbe2b2b5e seq: implement -f FORMAT option
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.
2022-01-25 20:48:26 -05:00
..
src seq: implement -f FORMAT option 2022-01-25 20:48:26 -05:00
BENCHMARKING.md seq: use BigDecimal to represent floats (#2698) 2021-11-06 15:44:42 +01:00
Cargo.toml seq: implement -f FORMAT option 2022-01-25 20:48:26 -05:00