In my perl script, I create a shell script (something to post-process the results of a long simulation). I'd like to mark this file as executable.
$fileName = 'postProcess.tcsh';
Clearly, I could do the following:
system("chmod +x $fileName");
But I'm curious if there is a solution which avoids the system call. In other words, would there be a method within the File module perhaps? What say you monks?