commited working version
[mirrors/libpurple-core-answerscripts.git] / purple / answerscripts.d / menu.pl
... / ...
CommitLineData
1#!/usr/bin/env perl
2#Just for you to see that you can use almost any language :-)
3use strict;
4use warnings;
5use Switch;
6
7switch ($ENV{PURPLE_MSG}) {
8 case /^!help$/ { print "What did you expected? A help?! :-P"; }
9 case /^!ping$/ { print "PONG"; }
10 case /^!whoami$/ { print "You are: $ENV{PURPLE_FROM}"; }
11 case /^!(reboot|reset|restart|halt)$/ { print "Broadcast message: The system is going down for reboot NOW !!"; }
12 case /^!google/ { print "UTFG Yourself: http://google.com/"; }
13 case /^!uptime$/ { print qx{uptime}; }
14 case /^!date$/ { print qx{date}; }
15}
This page took 0.120244 seconds and 4 git commands to generate.