From: Nicholas Clark Date: Thu, 19 Nov 2009 17:05:54 +0000 (+0000) Subject: Convert the shell pipeline for the list of committers to a Perl 1 liner. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=06d5de521cf46bed65c3b4e0e206ae07e82a5bbb;p=p5sagit%2Fp5-mst-13.2.git Convert the shell pipeline for the list of committers to a Perl 1 liner. To me it feels better to promote our own dogfood. --- diff --git a/Porting/how_to_write_a_perldelta.pod b/Porting/how_to_write_a_perldelta.pod index a6e9a29..5627812 100644 --- a/Porting/how_to_write_a_perldelta.pod +++ b/Porting/how_to_write_a_perldelta.pod @@ -335,7 +335,7 @@ The list of people to thank goes here. You can find the list of committers and authors by: - % git log v5.11.1..HEAD |grep Author | cut -d : -f 2 | cut -d \< -f 1 | sort | uniq + % git log v5.11.1..HEAD | perl -nlwe '$seen{$1}++ if /^Author: ([^<]*)/; END { print for sort keys %seen }' And how many files where changed by: