Hello everyone,

I have a file that contains a few domain names, and their dns servers (kind
of like a zonefile).  Here's the format:
my.com    dns1.blah.com
me.com    dns1.blah.com
we.com    dns1.blah.com
you.com   dns1.blah.com

How can I get ONLY the domain's out of that file, and print each domain to
the screen.  I used this to search through httpd.conf once:
open(APACHE_CONF, "/usr/local/apache/conf/httpd.conf") or die "Could not
open Apache config file:\n$!\n";
        my @servernames;
        while(<APACHE_CONF>) {
                push (@servernames, $1)
                if/ServerName\swww.(.*)/;
        }

Can anyone help me?

Thanks once again,
Tyler


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to