in reply to Re: FTP with no intermediate file, to upload my program output?
in thread FTP with no intermediate file, to upload my program output?
Thanks again!Use Net::FTP; $myfile = "Two lines\n of text"; $ftp = Net::FTP->new("ftp.myhost.com", Debug => 0); $ftp->login('user','pass'); $ftp->cwd("/example"); $ftp->put(MYFILEHANDLE,filename.txt); $ftp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: FTP with no intermediate file, to upload my program output?
by Tanktalus (Canon) on Mar 24, 2005 at 02:24 UTC |