0

I store some files on computer A , and I need computer B use some function like open readline printf to do some operations on the files of computer A .

But it seems I can only do the operation on local computer . So how to do ?

user2131116
  • 2,761
  • 6
  • 26
  • 33
  • 1
    [`File::Remote`](http://search.cpan.org/~nwiger/File-Remote-1.17/Remote.pm); http://stackoverflow.com/q/11135588/139010 – Matt Ball Jul 05 '13 at 05:52

2 Answers2

1

When you have ssh you can try Net::SSH::Expect. Otherwise File::Remote could be an option as well.

1

use Net::SFTP::Foreign. .

salva
  • 9,943
  • 4
  • 29
  • 57