in reply to
Re: Redirect output of the system() command
in thread Redirect output of the system() command
Thank you for the hint with bash -c!
I have fixed issues with this (really ugly) code:
my @options = qw(
--orientation Landscape
--load-error-handling ignore
--page-size A3
--quiet
);
$config->{wkhtmltopdf_path} =~ s{ }{\\ }g;
$config->{result_filename} =~ s{ }{\\ }g;
my $command = "(" . join(" ", $config->{wkhtmltopdf_path}, @options, $
+source_file, $config->{result_filename}) . ")";
system( "/bin/bash -c \"$command\" >/dev/null 2>&1" );