The system Function
The simplest way to launch a child process in Perl to run a program is the system
function. For example, to invoke the Unix date
command from within Perl, it looks like:
system "date";
The child process … Read the rest
The simplest way to launch a child process in Perl to run a program is the system
function. For example, to invoke the Unix date
command from within Perl, it looks like:
system "date";
The child process … Read the rest