Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Perl > Perl Misc > how call whois information?

Reply
Thread Tools

how call whois information?

 
 
PHP2
Guest
Posts: n/a
 
      04-10-2004
how call whois information for set of domains with Perl?


 
Reply With Quote
 
 
 
 
Gregory Toomey
Guest
Posts: n/a
 
      04-10-2004
PHP2 wrote:

> how call whois information for set of domains with Perl?


You should read the documentation.


my $whois = `whois site.com`

for (split '\n', qx(whois site.com)) {
...
}

gtoomey

 
Reply With Quote
 
 
 
 
Matt Garrish
Guest
Posts: n/a
 
      04-10-2004

"Gregory Toomey" <> wrote in message
news:2428969.zH4ZYbU3kk@GMT-hosting-and-pickle-farming...
> PHP2 wrote:
>
> > how call whois information for set of domains with Perl?

>
> You should read the documentation.
>
>
> my $whois = `whois site.com`
>
> for (split '\n', qx(whois site.com)) {
> ...
> }
>


Or better yet, use a module:

http://search.cpan.org/~dhudes/Net-Whois-1.9/Whois.pm

Matt


 
Reply With Quote
 
PHP2
Guest
Posts: n/a
 
      04-11-2004
yes, same way like always )
thanks

"Matt Garrish" <> wrote in message
news:MB%dc.43428$ ...
>
> "Gregory Toomey" <> wrote in message
> news:2428969.zH4ZYbU3kk@GMT-hosting-and-pickle-farming...
> > PHP2 wrote:
> >
> > > how call whois information for set of domains with Perl?

> >
> > You should read the documentation.
> >
> >
> > my $whois = `whois site.com`
> >
> > for (split '\n', qx(whois site.com)) {
> > ...
> > }
> >

>
> Or better yet, use a module:
>
> http://search.cpan.org/~dhudes/Net-Whois-1.9/Whois.pm
>
> Matt
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How include a large array? Edward A. Falk C Programming 1 04-04-2013 08:07 PM
Re: Authors Wanted - WHOIS itc2.org??? Geomancer Microsoft Certification 2 06-24-2003 09:07 PM
Re: Authors Wanted - WHOIS itc2.org??? J Alex MCSE 1 06-24-2003 09:07 PM
Re: Authors Wanted - WHOIS itc2.org??? MK Microsoft Certification 0 06-24-2003 12:55 AM
Re: Authors Wanted - WHOIS itc2.org??? MK MCSE 0 06-24-2003 12:55 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57