in reply to How can I access a file on a remote server?
Your available options are determined by the ways the server allows you to connect. The only method I've seen you mention in the thread is by using Telnet, which is definitely not the way to go... Though you could have your client script login thru telnet and have it start another (server)script that allows the two to communicate...
I recall reading a chapter on RPC (Remote Procedure Call) in O'Reilly's Advanced Perl Programming Book. This method would require you to run a 'homemade' server-script on the server which would allow a client-script to perform any perl command transparantly on the server.
CPAN's RPC::Simple seems to provide something like this.
I think the way to go for you though is asking your sysadmin to allow access using NFS or Samba if you're using a windows workstation...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: How does perl's file I/O work?
by Anonymous Monk on Jan 21, 2003 at 15:17 UTC | |
|
Re: Re: How does perl's file I/O work?
by Anonymous Monk on Jan 21, 2003 at 15:19 UTC | |
by Gilimanjaro (Hermit) on Jan 21, 2003 at 20:52 UTC |