I want to call the perl script through the another perl script. I have used,
system('/home/arun/title_verifier.pl');
but it throws,
sh: 1: /home/arun/title_verifier.pl: Permission denied
So how can i make it...
|
I want to call the perl script through the another perl script. I have used,
but it throws,
So how can i make it... |
|||
|
Make sure the Perl script has execute permission
or invoke the script with
|
|||
|
|
|
Also you may run it not with environment perl, but with perl your script was run system($^X, "/home/arun/title_verifier.pl") == 0 or die "$!"; |
|||
|
|
ls -alto see them). The basic ones are +rwx, meaning "read permission", "write permission", "execute permission". If a file has +x, you can execute it (call it using its filename, /home/arun/title_verifier.pl. If it does not have +x, you cannot execute it as a program, but you can have another program use it as input for executing, in this example withperl /home/arun/title_verifier.pl– Konerak Nov 22 '12 at 7:47