1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-16 02:01:05 +00:00
uutils-coreutils/src/uucore
Jeffrey Finkelstein cccab35337 seq: improve error handling for invalid -f values
Improve the error message produced by `seq` when given invalid format
specifiers for the `-f` option. Before this commit:

    $ seq -f "%" 1
    seq: %: invalid conversion specification
    $ seq -f "%g%" 1
    seq: %: invalid conversion specification

After this commit:

    $ seq -f "%" 1
    seq: format '%' ends in %
    $ seq -f "%g%" 1
    seq: format '%g%' has too many % directives

This matches the behavior of GNU `seq`.
2024-12-30 12:30:26 -05:00
..
src/lib seq: improve error handling for invalid -f values 2024-12-30 12:30:26 -05:00
Cargo.toml uucore: add common splice-write functionality 2024-12-19 18:32:11 +07:00
LICENSE Include license text in all published crates 2022-03-05 21:21:46 +01:00