diff --git a/apps/credits.pl b/apps/credits.pl new file mode 100644 index 0000000000..3d3945d2ad --- /dev/null +++ b/apps/credits.pl @@ -0,0 +1,10 @@ +while () { + chomp; # strip record separator + my @Fld = split(' ', $_, 9999); + if ($a && length($Fld[1])) { + print "\"$_\",\n"; + } + if (/Friend/) { + $a++; + } +}