Files
rsync/support/mapfrom
2008-11-15 18:13:00 -08:00

6 lines
104 B
Perl

#!/usr/bin/perl
while (<>) {
push @_, "$2:$1" if /^(\w+):[^:]+:(\d+)/;
}
print join(',', @_), "\n";