#!/usr/bin/perluse IO::Socket;my $server = "localhost";my $fh = IO::Socket::INET->new($server);my $line = <$fh>;print $line;