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.
# test1.pl
system ("notepad");
print "system returned, continuing...\n";
print "exit Perl script\n";
exit(0);
# test2.pl
exec ("notepad");
print "exec returned, continuing...\n";
print "exit Perl script\n";
exit(0);
my $dbh = DBI->connect("dbi:Oracle:$dbname", $user, $passwd) or
die "Database connection not made: $DBI::errstr";
my $req ="select * from folders where tmp='SL'";
my $sth=$dbh->prepare($req);
$sth->execute();
while (my ($a,$b,$c,$d) = $sth->fetchrow_array())
{
$times = $d;
my $doss = $a;
my $appli=$c;
system ('nohup perl ./finded.pl -d '.$doss.' -c '.$appli.' -b '.$b.' &');
}
$sth -> finish;
$dbh -> disconnect;