Help for this page

Select Code to Download


  1. or download this
    my $sock = IO::Socket::INET->new("$remote_server:43") || die $!;
         print $sock "$data\r\n";
         while ( <$sock> )
    {print}
    
  2. or download this
    print $sock "$data\r\n";
    my @output = <$sock>;
    ...
    
    sub true {
    open(tmpl, "email.txt") || print $!;