I'm new with PERL and I first looked at the FAQ with ACTIVEPERL.
I've been trying for than one hour to figure out to call ADMIN.EXE from my
PERL.
How to do that ?
Regards.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
as you could see, i'm a beginner
how is it possible to write sub routines in a perl file and to call them
from an other one
thanks
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
I wrote a perl script to make a FTP connection to a remote machine like this
#
#!/usr/local/bin/perl
open (FTP, " | ftp -v -n remote.comp.fr");
print FTP, "user username passwd\n";
print FTP, "bin\n";
print FTP, "prompt\n";
print FTP