I have an existing Perl script that uses the FTP object to send a couple of files to an AIX box. I just discovered that our Linux box does not support FTP. It does support SFTP. What steps should I go through to convert my script to use SFTP?
|
|
Your current script is probably using the Net::FTP module. You'll need the Net::SFTP module and its dependencies from CPAN. You may just even start a new script using the existing one as a guide. The logic is the same, though. Connect, send, and disconnect. |
|||
|
|
|
|
I've actually done something similar. But it was to prepare any current FTP script to be run via SFTP when needed. I made a wrapper object around I went from this:
to
And just implemented all the methods I was using from |
|||
|
|
