From 0de70665f4355da9588684501416bdb8110e386a Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Sat, 7 Sep 2019 15:41:57 +0200 Subject: [PATCH] human-readable (-H) option to abbreviate numbers Retain 2-3 significant digits and letter n-T for size. Similar to -h in ls, du, df, free, rsync, sort; except forgoing byte-specific powers of 1024 in favour of actually _human_ SI powers of 1000. Common option shorthand -h conflicts with help, but capital -H has a precedent in df --si so may be more appropriate. --- barcat | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/barcat b/barcat index a69bbe5..db630ab 100755 --- a/barcat +++ b/barcat @@ -18,6 +18,7 @@ GetOptions(\%opt, 'color|c!', 'C' => sub { $opt{color} = 0 }, 'field|f=s', + 'human-readable|H!', 'interval|t:i', 'trim|length|l=s' => sub { my ($optname, $optval) = @_; @@ -50,6 +51,7 @@ GetOptions(\%opt, $opt{width} ||= $ENV{COLUMNS} || 80; $opt{color} //= -t *STDOUT; # enable on tty $opt{trim} *= $opt{width} / 100 if $opt{trimpct}; +$opt{units} = $opt{'human-readable'} && ['', qw( k M G T <> n μ m )]; if (defined $opt{interval}) { $opt{interval} ||= 1; @@ -131,6 +133,8 @@ while ($nr <= $#lines) { $val == $order[0] ? 32 : # max $val == $order[-1] ? 31 : # min 90; + $val = sprintf "%3.1f%1s", $val / 1000**$_, $opt{units}->[$_] + for $opt{units} ? int(log($val) / log(1000)) : (); $val = sprintf "%*s", $lenval, $val; $val = "\e[${color}m$val\e[0m" if $color; } @@ -183,6 +187,11 @@ A string can indicate the starting position of a value or capture the numbers itself, for example I<-f'(\d+)'> for the first digits anywhere. +=item -H, --human-readable + +Format values using SI unit prefixes, +turning long numbers like I<12356789> into I<12.4M>. + =item -t, --interval[=] Interval time to output partial progress. @@ -291,7 +300,7 @@ Total population history from the World Bank dataset (XML): curl http://api.worldbank.org/v2/country/1W/indicator/SP.POP.TOTL | xmllint --xpath '//*[local-name()="date" or local-name()="value"]' - | - sed -r 's,,\n,g; s,(<[^>]+>)+, ,g' | barcat -f1 + sed -r 's,,\n,g; s,(<[^>]+>)+, ,g' | barcat -f1 -H Movies per year from prepared JSON data: -- 2.30.0