Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
while (<>) {
for (split(/\W+/)) {
$freq{$_}++;
}
for (sort keys %freq) {
print "$_ -- $freq{$_}\n";