Help for this page

Select Code to Download


  1. or download this
    for my $target (@array) {
        print "Trying to store [$target]\n";
    };
    
  2. or download this
    for my $target (@array) {
        $target =~ s/\s+$//;
        print "Storing [$target]\n";
        $ftp->put( $target );
    };