8bafa1000e466c5655b4bd7f0bb8c99374108018
[rsync/rsync.git] / support / mapto
1 #!/usr/bin/perl
2 while (<>) {
3     push @_, "$1:$2" if /^(\w+):[^:]+:(\d+)/;
4 }
5 print join(',', @_), "\n";