Help for this page

Select Code to Download


  1. or download this
    ### i know this does not work, i am showing the idea
    my $ftp = Net::FTP->new($server,$user,$pass);
    ...
    $ftp->put(\*R,'filename');
    print W "data here\n";
    $ftp->quit;
    
  2. or download this
    pipe(READ,WRITE);
    $pid = fork();
    ...
        print WRITE $data;
        close(WRITE);
    }