diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-11-19 17:05:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-11-19 17:05:54 +0000 |
commit | 06d5de521cf46bed65c3b4e0e206ae07e82a5bbb (patch) | |
tree | 3c7dfa59db7a7e1228e70878435c94fb9cb15318 | |
parent | 5994acf3cde9809b1858d6b9ffee845608bd5553 (diff) | |
download | perl-06d5de521cf46bed65c3b4e0e206ae07e82a5bbb.tar.gz |
Convert the shell pipeline for the list of committers to a Perl 1 liner.
To me it feels better to promote our own dogfood.
-rw-r--r-- | Porting/how_to_write_a_perldelta.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/how_to_write_a_perldelta.pod b/Porting/how_to_write_a_perldelta.pod index a6e9a29930..5627812aca 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: |