mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-18 01:49:53 +01:00
25 lines
375 B
Perl
Executable File
25 lines
375 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
# Quick and dirty by :pragma
|
|
|
|
use strict;
|
|
|
|
my ($arguments, $response);
|
|
|
|
if ($#ARGV < 0)
|
|
{
|
|
print "Dumbass.\n";
|
|
die;
|
|
}
|
|
|
|
$arguments = join(" ", @ARGV);
|
|
|
|
if($arguments =~ m/[\$a-z]/i)
|
|
{
|
|
print("Illegal characters, please only use numbers and valid operators (+, -, /, *, etc).");
|
|
die();
|
|
}
|
|
|
|
$response = eval($arguments);
|
|
print "$arguments = $response";
|