I'm trying to execute a perl script with
system("sendscript.pl");
I also tried exec("sendscript.pl");
Both of these return Error: No such file or directory The sendscript.pl is in the same directory as the script. What am I doing wrong?
I'm trying to execute a perl script with
system("sendscript.pl");
I also tried exec("sendscript.pl");
Both of these return Error: No such file or directory The sendscript.pl is in the same directory as the script. What am I doing wrong?