Re: Regarding automation of file transfer

2009-02-07 Thread Chas. Owens
On Fri, Feb 6, 2009 at 13:27, jk wrote: > i m a beginner to perl . i want to write a perl program to Connect to > an FTP server and get or put files and also to Automate the one-time > transfer of many files to download the file everyday, which have > changed since yesterday. i have written the fi

Regarding automation of file transfer

2009-02-07 Thread jk
i m a beginner to perl . i want to write a perl program to Connect to an FTP server and get or put files and also to Automate the one-time transfer of many files to download the file everyday, which have changed since yesterday. i have written the first part of the program i.e.connect,get and put f

RE: File transfer over socket connection

2006-07-19 Thread Jerry DuVal
Perfect, exactly what I was looking for! Thanks Jerry >-Original Message- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On >Behalf Of zentara >Sent: Wednesday, July 19, 2006 8:48 AM >To: beginners@perl.org >Subject: Re: File transfer over socket connection > &g

Re: File transfer over socket connection

2006-07-19 Thread Peter Cornelius
On Jul 18, 2006, at 9:08 AM, Jerry DuVal wrote: I can talk btwn the client and server with no problem, but I want to send a file over the TCP socket connection. Does any one have any examples? The file is just data, which I'm assuming you can open and read. Since you can also write to th

RE: File transfer over socket connection

2006-07-18 Thread Jeff Peng
I can talk btwn the client and server with no problem, but I want to send a file over the TCP socket connection. Does any one have any examples? Maybe you would take a look at CPAN's some modules like Rsync,Scp,etc. If you just want to transmit a text file from client to server,it's easy to

File transfer over socket connection

2006-07-18 Thread Jerry DuVal
I have a socket connection running on listener - Server A port 50 client - Server B I can talk btwn the client and server with no problem, but I want to send a file over the TCP socket connection. Does any one have any examples?

RE: help : file transfer

2003-07-07 Thread Dan Muey
> hi all Howdy Not usr eif you know this but this email keeps getting sent over and over. If you can't get SSH to work since not every system has ssh enabled and not every user is allowed ot ssh in you may want to look at Net::FTP. Of course the user their must also have the ability to ftp in

Re: help : file transfer

2003-07-04 Thread zentara
On 4 Jul 2003 03:38:50 -, [EMAIL PROTECTED] (Vemulakonda Uday Bhaskar) wrote: >i have got a code for file transger between two linux systems >through ssh >here is the code You should use Net::Sftp or Net::Scp to transfer files. I see what you are trying to do. You probably should try to ope

help : file transfer

2003-07-03 Thread vemulakonda uday bhaskar
hi all i have got a code for file transger between two linux systems through ssh here is the code #!usr/bin/perl use Net::SSH qw(sshopen2); my $user="username"; my $host="hostname"; my $cmd="commanad"; sshopen2("[EMAIL PROTECTED]",*REAEDR,*WRITER,"$cmd") or die "ssh :$!"; while() { chom

help : file transfer

2003-07-03 Thread vemulakonda uday bhaskar
hi all i have got a code for file transger between two linux systems through ssh here is the code #!usr/bin/perl use Net::SSH qw(sshopen2); my $user="username"; my $host="hostname"; my $cmd="commanad"; sshopen2("[EMAIL PROTECTED]",*REAEDR,*WRITER,"$cmd") or die "ssh :$!"; while() { chom

help : file transfer

2003-07-03 Thread vemulakonda uday bhaskar
hi all i have got a code for file transger between two linux systems through ssh here is the code #!usr/bin/perl use Net::SSH qw(sshopen2); my $user="username"; my $host="hostname"; my $cmd="commanad"; sshopen2("[EMAIL PROTECTED]",*REAEDR,*WRITER,"$cmd") or die "ssh :$!"; while() { chom

help : file transfer

2003-07-03 Thread vemulakonda uday bhaskar
hi all i have got a code for file transger between two linux systems through ssh here is the code #!usr/bin/perl use Net::SSH qw(sshopen2); my $user="username"; my $host="hostname"; my $cmd="commanad"; sshopen2("[EMAIL PROTECTED]",*REAEDR,*WRITER,"$cmd") or die "ssh :$!"; while() { chom

Re: File Transfer

2003-03-13 Thread Rob Dixon
Luinrandir Hernsen wrote: > Is there a way in Perl to make a directory and transfer files to it? > Lou Sure. You can create a directory with the mkdir() function. Take a look at the documentation: perldoc -f mkdir and there are many ways of populating that directory - it depends where the fi

RE: File Transfer

2003-03-13 Thread David Olbersen
IL PROTECTED] > Subject: File Transfer > > > Is there a way in Perl to make a directory and transfer files to it? > Lou > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- To unsubscribe, e-mail: [EMA

File Transfer

2003-03-13 Thread Luinrandir Hernsen
Is there a way in Perl to make a directory and transfer files to it? Lou -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: MIME Base64 encoding and file transfer

2002-10-21 Thread zentara
On Sun, 20 Oct 2002 08:17:01 -0400, [EMAIL PROTECTED] (Zentara) wrote: >Can someone please point out where my reasoning is flawed >concerning base64 encoding. > >A question recently came up in the Tk newsgroup on how to >display a jpg image with Tk, directly from a url. > >I could easily do it if

MIME Base64 encoding and file transfer

2002-10-20 Thread zentara
Hi, Can someone please point out where my reasoning is flawed concerning base64 encoding. A question recently came up in the Tk newsgroup on how to display a jpg image with Tk, directly from a url. I could easily do it if I mirrored a temporary jpg file on the local harddrive, then displayed it;