diff options
Diffstat (limited to 'apps/plugins/credits.pl')
-rw-r--r-- | apps/plugins/credits.pl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/plugins/credits.pl b/apps/plugins/credits.pl new file mode 100644 index 0000000000..942a96b99f --- /dev/null +++ b/apps/plugins/credits.pl @@ -0,0 +1,13 @@ +# __________ __ ___. +# Open \______ \ ____ ____ | | _\_ |__ _______ ___ +# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / +# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < +# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ +# \/ \/ \/ \/ \/ +# $Id$ +# +while (<STDIN>) { + if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) { + print "\"$1\",\n"; + } +} |