in reply to Re: perl ftp
in thread perl ftp
Save all output in a single fileperl script.pl >output.txt 2>errors.txt
You can also use the UNIX tee command to view output and save it to a file. A windows version is available from http://unxutils.sourceforge.netperl script.pl >output.txt 2>&1
perl script.pl 2>&1 | tee stdout.txt
|
|---|