Thread Code printen
(17 answers)
Opened by bianca at 2015-03-10 10:54
Hallo bianca,
das klingt ziemlich abenteuerlich, finde ich. Das hier geht, ist aber vermutlich nicht, was Du willst: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/perl use strict; use warnings; my $test = <<'ENDCODE'; print "ja, klappt!\n"; ENDCODE eval $test; open (my $FH,'>','test.pl'); print $FH $test; system('perl test.pl'); HTH Grüße payx |