Yes David, it had been answered. Thanks a lot :)
On Sun, Jul 14, 2013 at 9:01 PM, David Christensen <
dpchr...@holgerdanske.com> wrote:
> On 07/12/13 21:50, David Christensen wrote:
>
> I was half asleep when I wrote that -- it looks like three people answered
> two different questions:
>
> 1.
Thanks Shawn.
-Vino
On Fri, Jul 12, 2013 at 12:44 PM, shawn wilson wrote:
> Easiest:
> my $file = "/etc/resolv.conf";
> open(my $fh, "<", $file) or die "Can not open $file: " . $!;
> my @dns;
> while (<$fh>) {
> next unless /nameserver +([0-9\.]+)/;
> push @dns, $1;
> }
>
> On Fri, Jul 12,
Thanks Shawn
-Frank
On Wed, Dec 5, 2012 at 10:34 AM, shawn wilson wrote:
> also, since the op was on a free kick, i'll point this out (maybe i've
> done so before in this forum) - http://hackershelf.com/browse/
>
> On Tue, Dec 4, 2012 at 11:20 PM, Franklin Lawerence
>
Thanks a lot. :)
-Frank
On Wed, Dec 5, 2012 at 9:23 AM, Chankey Pathak wrote:
> Ovid has written a nice book, which is available online, you may refer it:
> ofps.oreilly.com/titles/9781118013847/
>
>
> On Wed, Dec 5, 2012 at 4:26 AM, Asad wrote:
>
> > Hi All ,
> >
> > Would you guida