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.
#run, wait, and continue
system("/path/to/perl/script.pl");
#like above, but stores the output
#note: backticks ` not apostrophe '
@lines = `/path/to/perl/script.pl`;
#run and exit
exec("/path/to/perl/script.pl");
#run, continue, and don't wait
fork("/path/to/perl/script.pl");
use LWP::Simple;
$webpage = get("[URL unfurl="true"]http://www.domain.com/cgi-bin/script.cgi");[/URL]