Running a perl script on linux using CaptureOutput::capture_exec_combined. It doesn't seem to want to execute "source"
#!/usr/bin/env perl
use IO::CaptureOutput qw/capture_exec_combined/;
$cmd = "source test_capout.csh";
my ($stdouterr, $success, $exit_code) = capture_exec_combined($cmd);
print "${stdouterr}\n";
(test_capout.csh just echoes a message)
I get...
Can't exec "source": No such file or directory at /tool/pandora64/.package/perl-5.18.2-gcc481/lib/site_perl/5.18.2/IO/CaptureOutput.pm line 84.
source
causes the named script to be executed by the shell given thesource
command. It makes no sense to usesource
outside of a shell, which is why it's not a program but a built-in shell command. You'll need to spawn a shell and have the shell execute the command.Of course, since the shell exits afterwards, that can be simplified to