coreutils icon indicating copy to clipboard operation
coreutils copied to clipboard

`seq` should not accept `-w` and `-f` at the same time

Open drinkcat opened this issue 7 months ago • 0 comments

$ seq -w -f "%f" 1 2
seq: format string may not be specified when printing equal width strings
Try 'seq --help' for more information.
$ cargo run seq -w -f "%f" 1 2
1.000000
2.000000

drinkcat avatar Mar 16 '25 19:03 drinkcat