Calling Python Executable from Perl
- https://stackoverflow.com/questions/58259145/how-to-call-asynchronous-perl-script-from-cgi-file-using-system
system('perl.exe C:/path/to/script/test2.pl');
- https://www.perlmonks.org/bare/?node_id=552276
system("my.exe");
- Perl Documentation | exec()
exec ('./SaveToWord.exe') or print STDERR "couldn't exec foo: $!";
- Perl Documentation | System()
Does exactly the same thing as exec, except that a fork is done first and the parent process waits for the child process to exit.
my @args = ("command", "arg1", "arg2"); system(@args) == 0 or die "system @args failed: $?";
Journal
- 2020.08.14 Created file