It seems to me all you need is a perl script that slurps something from STDIN (or a file?), and then uses eval() to execute that something. Then use pp to wrap that tiny script up with the modules you know you'll be needing and that's it. Sort of a custom flavored portable perl. Here's the concept code, untested:
#!perl use strict; use warnings; local $/; my $script = <STDIN>; eval($script);
Or maybe I missed something :-)
Time flies when you don't know what you're doing
In reply to Re: Making a standalone executable
by FloydATC
in thread Making a standalone executable
by Uggles
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |