$output innehåller "Current time is {{curTime}}!" och det måste sättas i den filen, inte commands.pl.
Här är en bit av koden:
sub k($output) {
open(FILE, "commands.pl");
while(<FILE>){
$commands .= $_;
}
#print "Commands:
" . $commands . "
";
eval($commands);
print $a . " and " . $output . "
";
}
i commands.pl finns:
$output =~ s/{{curTime}}/localtime(time)/;
$a="hello";
när jag kör print $a; fungerar det utmärkt, det står hello.
när jag kör print $output så printas inget :( någon som kan hjälpas med detta?^^(Jag vill då att $output ska vara lokaltiden.
Go ahead, make my day