X-Git-Url: http://git.shiar.nl/barcat.git/blobdiff_plain/32b26c5ce133c3d3d28260f7593390bcd5692e84..3de553c8b0f2b2f8776c94ac0bc31231ad2402d3:/barcat diff --git a/barcat b/barcat index c029225..5181143 100755 --- a/barcat +++ b/barcat @@ -19,7 +19,9 @@ GetOptions(\%opt, 'field|f=s' => sub { eval { local $_ = $_[1]; - $opt{anchor} = /\A[0-9]+\z/ ? qr/(?:\S*\h+){$_}\K/ : qr/$_/; + s/\A[0-9]+\z/(?:\\S*\\h+){$_}\\K/; + s/\A[+]([0-9]*)\z/(?:\\d+\\D+\\b){$1}\\K \\s* (?=\\d)/; + $opt{anchor} = qr/$_/; } or die $@ =~ s/(?:\ at\ \N+)?\Z/ for option $_[0]/r; }, 'human-readable|H!', @@ -370,7 +372,8 @@ Usage: /\_/\ Options: -a, --[no-]ascii Restrict user interface to ASCII characters -C, --[no-]color Force colored output of values and bar markers - -f, --field=(N|REGEXP) Compare values after a given number of whitespace + -f, --field=([+]N|REGEXP) + Compare values after a given number of whitespace separators --header Prepend a chart axis with minimum and maximum values labeled @@ -438,7 +441,7 @@ disabled otherwise such as when piped or redirected. Can also be disabled by setting I<-M> or the I environment variable. -=item -f, --field=( | ) +=item -f, --field=([+] | ) Compare values after a given number of whitespace separators, or matching a regular expression. @@ -449,6 +452,7 @@ A string can indicate the starting position of a value (such as I<-f:> if preceded by colons), or capture the numbers itself, for example I<-f'(\d+)'> for the first digits anywhere. +A shorthand for this is I<+0>, or I<+N> to find the Nth number. =item --header @@ -599,6 +603,10 @@ Compare file sizes (with human-readable numbers): du -d0 -b * | barcat -H +Same from formatted results, selecting the first numeric value: + + tree -s --noreport | barcat -H -f+0 + Memory usage of user processes with long names truncated: ps xo rss,pid,cmd | barcat -l40 @@ -657,6 +665,11 @@ Total population history in XML from the World Bank: xmlstarlet sel -t -m '*/*' -v wb:date -o ' ' -v wb:value -n | barcat -f1 -H +Population and other information for all countries: + + curl http://download.geonames.org/export/dump/countryInfo.txt | + grep -v '^#\s' | column -tns$'\t' | barcat -f+2 -u -l150 -s + And of course various Git statistics, such commit count by year: git log --pretty=%ci | cut -b-4 | uniq -c | barcat