summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-02-15 17:37:23 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-02-15 17:37:23 +0000
commit8cc69d8080ac707b6b204282bb62f9351b213dbb (patch)
treefd0d02049a039182dd80bc441841769d88c82c86 /apps
parent4be0983fe52258669b3d2a76d5e6a717e278fb95 (diff)
downloadrockbox-8cc69d8080ac707b6b204282bb62f9351b213dbb.tar.gz
rockbox-8cc69d8080ac707b6b204282bb62f9351b213dbb.zip
extract the names better from the CREDITS file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3274 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/credits.pl17
1 files changed, 10 insertions, 7 deletions
diff --git a/apps/credits.pl b/apps/credits.pl
index 3d3945d2ad..942a96b99f 100644
--- a/apps/credits.pl
+++ b/apps/credits.pl
@@ -1,10 +1,13 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
1while (<STDIN>) { 9while (<STDIN>) {
2 chomp; # strip record separator 10 if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
3 my @Fld = split(' ', $_, 9999); 11 print "\"$1\",\n";
4 if ($a && length($Fld[1])) {
5 print "\"$_\",\n";
6 }
7 if (/Friend/) {
8 $a++;
9 } 12 }
10} 13}