Hi,

I only find %.0f to print integers. But it is just a float with no
digits after the point. Is there a real integer format in seq? Thanks.

$ seq -f '%.0f minutes' 2563199 2563200
2563199 minutes
2563200 minutes
$ seq -f '%g minutes' 2563199 2563200
2.5632e+06 minutes
2.5632e+06 minutes
2.5632e+06 minutes
$ seq -f '%d minutes' 2563199 2563200
seq: format ‘%d minutes’ has unknown %d directive

-- 
Regards,
Peng

Reply via email to