extract the names better from the CREDITS file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3274 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4be0983fe5
commit
8cc69d8080
1 changed files with 10 additions and 7 deletions
|
@ -1,10 +1,13 @@
|
|||
# __________ __ ___.
|
||||
# Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
||||
# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
||||
# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
||||
# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
||||
# \/ \/ \/ \/ \/
|
||||
# $Id$
|
||||
#
|
||||
while (<STDIN>) {
|
||||
chomp; # strip record separator
|
||||
my @Fld = split(' ', $_, 9999);
|
||||
if ($a && length($Fld[1])) {
|
||||
print "\"$_\",\n";
|
||||
}
|
||||
if (/Friend/) {
|
||||
$a++;
|
||||
if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
|
||||
print "\"$1\",\n";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue