[gentoo-user] seq --equal-width not working

2006-12-07 Thread Andres Buehlmann
Hi I found a problem using seq (from coreutils): With version 6.4, I get: seq -w 0 0.25 1 0 0.25 0.5 0.75 1 I.e., zero padding (with decimals) doesn't work. However, with the older version 5.94, I get as expected: seq -w 0 0.25 1 0.00 0.25 0.50 0.75 1.00 Can anybody confirm this? Am I

Re: [gentoo-user] seq --equal-width not working

2006-12-07 Thread Andres Buehlmann
On Thu, 7 Dec 2006 13:33:50 +0100 Etaoin Shrdlu wrote: From the above description, it seems that there are two ways to get the output you want: either use the command seq -w 0.00 0.25 1.00 or use -f: seq -f %0.2f 0 0.25 1 Thanks a lot, that's exactly what I needed. (However, I find