in reply to Re: Network Programming With Perl example 1
in thread Network Programming With Perl example 1
Now using
and getting#!/usr/bin/perl #use warnings; #use strict; use IO::Socket; my $server = shift; my $fh = IO::Socket::INET->new($server) or die "Error: $!"; my $line = <$fh>; print $line;
C:\Documents and Settings\admin\Desktop\Scripts>perl network.pl mail.h +otmail.com:smtp Error: Unknown error at network.pl line 8. C:\Documents and Settings\admin\Desktop\Scripts>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Network Programming With Perl example 1
by tlm (Prior) on May 01, 2005 at 02:58 UTC | |
|
Re^3: Network Programming With Perl example 1
by chas (Priest) on May 01, 2005 at 03:01 UTC | |
by Anonymous Monk on May 01, 2005 at 03:10 UTC | |
by chas (Priest) on May 01, 2005 at 03:18 UTC | |
by Anonymous Monk on May 01, 2005 at 03:33 UTC | |
by chas (Priest) on May 01, 2005 at 03:42 UTC | |
|