Help for this page

Select Code to Download


  1. or download this
    ## executor.pl
    use Safe;
    ...
            print "Unsafe code detected: $@";
        }
    }
    
  2. or download this
        open(FILE,"perl executor.pl '$code' 2>&1 |")
        my @output=<FILE>;
        my $resp = join('',@output);