Or maybe print a whole "brick" of them as the example, driving home the
point even deeper, using something like
$ perl -e 'for ($i = 0.05; $i < 10; $i += 0.10) { printf "%.1f ", $i; print
"\n" unless ($c++ + 1) % 10}'
0.1 0.2 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9
1.0 1.1 1.2 1.4 1.5 1.6 1.7 1.8 1.9 2.0
P.S., also perhaps eliminate the boring steps from the example, using instead
$ perl -we 'for ($i = 0.05; $i < 1.05; $i += 0.10) { printf "%.1f ",$i}'
0.1 0.2 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1.0
--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe
2 matches
Mail list logo