X-Git-Url: http://git.shiar.nl/barcat.git/blobdiff_plain/2c58b0cd69fe769a18dd9282edc1f8fe498d3e7b..b43c5deb53ccc3cfea0ac6ac7aa2f03ce1c7a186:/graph diff --git a/graph b/graph index b53ac6a..16af69a 100755 --- a/graph +++ b/graph @@ -3,15 +3,21 @@ use 5.014; use warnings; use List::Util qw( max sum ); -my $width = $ENV{COLUMNS} || 80; +our $VERSION = '1.00'; -my @lines = readline; +use Getopt::Long '2.33'; +GetOptions(\my %opt, + 'width|w=i', +) or exit 64; # EX_USAGE +$opt{width} ||= $ENV{COLUMNS} || 80; + +my @lines = readline or exit; chomp for @lines; my @values = map { s/^\h*([0-9]*)// and $1 } @lines; my @order = sort { $b <=> $a } @values; my $lenval = 1 + int log($order[0]) / log 10; # max string length my $len = 1 + max map { length } @lines; # left padding -my $size = ($width - $lenval - $len) / $order[0]; # bar multiplication +my $size = ($opt{width} - $lenval - $len) / $order[0]; # bar multiplication sub orderpos { ($order[$_[0]] + $order[$_[0] + .5]) / 2 * $size } my @barmark; @@ -32,3 +38,38 @@ for my $nr (0 .. $#lines) { print $barmark[$_] // '-' for 1 .. $val * $size; say ''; } + +__END__ + +=head1 NAME + +graph - append bar chart to input numbers + +=head1 SYNOPSIS + +B [] [] + +cat ... | uniq -c | graph + +=head1 DESCRIPTION + +Each line starting with a number is given a bar to visualise relative sizes. + +=head1 OPTIONS + +=over + +=item -w, --width= + +Override the maximum number of columns to use. +Appended graphics will extend to fill up the entire screen. + +=back + +=head1 AUTHOR + +Mischa POSLAWSKY + +=head1 LICENSE + +GPL3+.