Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
$retcode = system("/pathname/progname.pl");
$retcode /= 256;
@results = `/pathname/progname.pl`;
[code]
Same caveat about the #! line, but this way you can return more than just a return code, you can return a string, or even multiple lines.
However, probably the easiest way to do it is to use the [b]do[/b] command:
[code]
do "/pathname/progname.pl";