Although the above is all well and good...you can whip something together in perl to do it rather quickly like this -

#! perl

use strict;
use LWP;

my $browser = LWP::UserAgent->new();
my $response = $browser->get("http://www.antionline.com");
print $response->header("Server"), "\n";