in reply to Re^4: Parallel downloading under Win32?
in thread Parallel downloading under Win32?
As an alternative, you may find that the code that works on linux also works on windows if run under Cygwin. Is using Cygwin an option ?if($^O =~ /mswin32/i) { require Win32::Process; # do the task using Win32::Process } else { # do the task using whatever it is that works on linux }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Parallel downloading under Win32?
by Xenofur (Monk) on Apr 29, 2009 at 13:26 UTC |