blake in
<[EMAIL PROTECTED]>:
> I am new to perl and attempting to write a script that will do a reverse dns
> lookup on an ip [snip]
Just looking that far, I don't think your script will work as you
intend. Here's a ptr lookup using dig ...
| dig -x 217.151.101.100
| 100.101.151.217.in-addr.ar
On Mon Dec 01 2008 @ 7:13, blake askew wrote:
> Thanks for the help John. I have made the changes you suggested and managed
> to get everything working properly. One more question though that is
> completely different, how do I allow users to specify switches on the
> command line in any order to
Thanks for the help John. I have made the changes you suggested and managed
to get everything working properly. One more question though that is
completely different, how do I allow users to specify switches on the
command line in any order to be used in my program. For example, I want the
syntax t
blake askew wrote:
I am new to perl and attempting to write a script that will do a reverse dns
lookup on an ip, store this result into a file, then read the file in order
to do a whois lookup. The whois lookup answer should also be written to a
seperate file. I have the reverse dns lookup workin