summaryrefslogtreecommitdiff
path: root/apps/plugins/credits.pl
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/credits.pl')
-rw-r--r--apps/plugins/credits.pl13
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 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9while (<STDIN>) {
10 if(($_ =~ /^([A-Z]+[\S ]+)/) && ($_ !~ /^People/)) {
11 print "\"$1\",\n";
12 }
13}