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 ?
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 ?
When you have ssh you can try Net::SSH::Expect
. Otherwise File::Remote
could be an option as well.