Re: parallel file copy
Separate your script into two and run them in parallel.
Same was implemented. Thanks for the quick reply :)
Before posting, please read how to report bug or request support effectively.
Bug reports without an attached log file are usually useless.
Separate your script into two and run them in parallel.
option batch abort
option confirm off
open sftp://user:password@mysite1 -hostkey="xxx-xxx 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"
cd /
cd /xxx/xxx
lcd c:\logs
option transfer binary
get SystemOut.log
close
open sftp://user:password@mysite2 -hostkey="xxx-xxx 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx"
cd /
cd /xxx/xxx
lcd c:\logs
option transfer binary
get SystemOut.log
close
---