Hi.
I'm running Perl 5.8.2 under Windows. I'm calling
the "psftp" command from Perl using the backquotes
to collect the command output in a variable to keep
the output from going to a command prompt screen.
The following line of code I'm using puts most of the output into the variable:
$output = `psftp $user -pw $server -b $ftpCommands`;
However, the text:
Using username "ftpuser".
is still displayed on the screen.
Does anyone have any suggestions as to why that
particular message isn't redirected to the variable?