1
0
Fork 0
coreutils/thanks-gen
Daniel Baumann c08a8f7410
Adding upstream version 9.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 07:57:52 +02:00

16 lines
441 B
Perl
Executable file

#!/usr/bin/perl -nl
# Use Perl's multi-byte alignment code, via sprintf, while
# performing a rudimentary check for duplicate names and
# removing duplicate name,email pairs.
use Encode;
BEGIN { my (%seen, %name) }
chomp;
my ($name, $email) = split '\0', decode ('UTF-8', $_);
$seen{$name}++
and warn "$0: THANKS.in: duplicate name: $name\n";
print encode ('UTF-8', sprintf ('%-36s', $name)), $email
unless $seen{"$name\0$email"}++;