Re: Get .exe or .zip file from the server via perl script

2004-08-04 Thread Nicolay A. Vasiliev
Hello, Gunnar! Thanmk you and sorry for delay! Gunnar Hjalmarsson wrote: Nicolay A. Vasiliev wrote: I don't know anything how to download the file via perl script. This code, which I copied from a program of mine, may get you started: open FILE, $dir/$file or die Can't open ... $!;

Get .exe or .zip file from the server via perl script

2004-07-25 Thread Nicolay A. Vasiliev
Hello, there! I need to implement the thing in the subject described. Conceptually there are two steps: 1) logging into the system at some web-server; 2) getting some binary (zip or exe) and putthing this at my web-server. I imagine approximately how can I implement the first step. But I don't

Re: Get .exe or .zip file from the server via perl script

2004-07-25 Thread Gunnar Hjalmarsson
Nicolay A. Vasiliev wrote: I don't know anything how to download the file via perl script. This code, which I copied from a program of mine, may get you started: open FILE, $dir/$file or die Can't open ... $!; binmode FILE; binmode STDOUT; print Content-Type: application/zip\n,