File Transfer using Perl
-
Hi everyone, i want to transfer a file from windows to linux system using perl script..please help me. Thanks in Advance.
-
Hi everyone, i want to transfer a file from windows to linux system using perl script..please help me. Thanks in Advance.
-
For two computers to talk both computers need running applications that communicate. So your first step is to determine what applications the source and target machines will have. As an example a FTP server and an FTP client.
Thanks Jschell..yes i'm using FTP Server & FTP Client..i tried some scripts,but it didn't work.Please could you send any working perl script for file transfer. It is very much needed for our project. :)
-
Thanks Jschell..yes i'm using FTP Server & FTP Client..i tried some scripts,but it didn't work.Please could you send any working perl script for file transfer. It is very much needed for our project. :)
-
Hi everyone, i want to transfer a file from windows to linux system using perl script..please help me. Thanks in Advance.
Hi, you can try Net::FTP module. It's a very efficient and simple way to work with ftp in Perl. If you want to just upload some files from a shell script, without using Perl, you can use wput to upload or wget to download. But I think that using Perl with Net::FTP is better. TiGuCo.