in reply to Re: Executing / Retrieving Output from Command
in thread Executing / Retrieving Output from Command
eval("results = `gunzip -cf <C:/temp/decrypt/out-3908.gz`");
will likely be an error, because the backticks get interpolated in your double quotes. So unless gunzip -cf <C:/temp/decrypt/out-3908.gz returns Perl code, that won't work.
|
|---|