Help for this page

Select Code to Download


  1. or download this
    CONSTRUCTOR
           new (HOST [,OPTIONS])
    ...
               Debug - debug level (see the debug method in the
               Net::Cmd manpage)
               ...
    
  2. or download this
        my $ftp = Net::FTP->new( $myhost, Timeout => 10, Debug => 1 );
        ...
        $ftp->get($myfile) or warn("Can't get file $myfile");
        $ftp->quit();