SFTP

2014-10-27 Thread Schwartz, Peter W
I'm trying to locate an SFTP install for Windows (32-bit) but I can't seem to find anything in the PPM for some reason. Does anyone have any recommendations on how to get this for Windows? Peter W Schwartz | Vice President | IB Tech Market | Investment Bank |

RE: SFTP

2014-10-27 Thread Ashley Hoff
Not sure if you are going to get much more of a response Peter - this mail list seems pretty dead. As far as I know, it's not an easy task to actually get SFTP client functionality in Perl. I've had plenty of issues over the years, that I gave up trying to find a Perl module that will do what

Re: SFTP

2014-10-27 Thread Mike Malony
I had much the same experience. I've used both PSFTP.exe from Putty and sftp.exe from Cygwin. In both cases I write a batch file and execute the exe via a system call. $RUNSTRING = $main::sftpbin -b $SFTP_BATCH_FILE $SFTPLOGIN $TEMPLOG; ## which translates to ##'c:\cygwin\bin\sftp -b

RE: SFTP

2014-10-27 Thread Schwartz, Peter W
That’s fine. I was looking for a tidy Perl module, but this will work too. Thanks folks. Peter W Schwartz | Vice President | IB Tech Market | Investment Bank | J.P. Morgan | Floor 4, 115 S Jefferson Road, Bldg D, Whippany, NJ | T: +1(973) 793-7407 |

RE: SFTP

2014-10-27 Thread Ashley Hoff
That is pretty much the approach I have taken as well. In my instance, the batch is written dynamically, based on the required process (read from an INI file) and the files found either remotely or locally (based on wildcard searches). The command that we call looks like: $command = echo

Re: SFTP

2014-10-27 Thread Justin Allegakoen
Off on another tangent, but it seems not much has changed over the years: http://code.activestate.com/lists/perl-win32-users/31633/ Math::Pari fails to install with strawberry with 5.20 on x64 - never had the time to find out why. I'm sure if you ask sisyphus nicely he'll try and put it up on

Re: SFTP

2014-10-27 Thread sisyphus1
From: Schwartz, Peter W Sent: Tuesday, October 28, 2014 2:44 AM To: perl-win32-users@listserv.ActiveState.com Subject: SFTP I’m trying to locate an SFTP install for Windows (32-bit) but I can’t seem to find anything in the PPM for some reason. Does anyone have any recommendations on how to