Re: help with something strange

2013-05-28 Thread Luca Ferrari
On Tue, May 28, 2013 at 8:05 PM, Rahim Fakir wrote: > I wanted to do C:\cpan Foo::Bar and something strange happened, the > following lines, pls help: > > C:\Users\Rahim\Documents>cpan Foo::Bar > Base class package "DBIx::Class::Schema" is empty. > (Perhaps you

help with something strange

2013-05-28 Thread Rahim Fakir
I wanted to do C:\cpan Foo::Bar and something strange happened, the following lines, pls help: C:\Users\Rahim\Documents>cpan Foo::Bar Base class package "DBIx::Class::Schema" is empty. (Perhaps you need to 'use' the module which defines that package first, or make t

Re: Something strange ..

2008-08-31 Thread Dr.Ruud
Gunwant Singh schreef: > Rob Dixon: >> Your code is poorly laid out - it is extremely difficult to spot an >> errors with no whitespace and indenting. >> > That was rude! Not at all, it was an observation put to words. Do you really think that your posting was not a mess? Consider perltidy. Lear

Re: Something strange ..

2008-08-31 Thread Gunwant Singh
John W. Krahn wrote: Gunwant Singh wrote: I have written a code to ping remote sites: --- use strict; use warnings; use Socket; use Net::Ping; print 'Enter a hostname/IP '; my $ip,my $host; $ip=; chomp($ip); if ($ip =~ /\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/) {

Re: Something strange ..

2008-08-31 Thread Gunwant Singh
Rob Dixon wrote: Gunwant Singh wrote: I have written a code to ping remote sites: --- use strict; use warnings; use Socket; use Net::Ping; print 'Enter a hostname/IP '; my $ip,my $host; $ip=; chomp($ip); if ($ip =~ /\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/) {

Re: Something strange ..

2008-08-30 Thread Rob Dixon
John W. Krahn wrote: > Gunwant Singh wrote: >> >> I have written a code to ping remote sites: >> --- >> use strict; >> use warnings; >> use Socket; >> use Net::Ping; >> >> print 'Enter a hostname/IP '; >> my $ip,my $host; >> $ip=; >> chomp($ip); >> if ($ip =~ /\b\d{

Re: Something strange ..

2008-08-30 Thread John W. Krahn
Gunwant Singh wrote: I have written a code to ping remote sites: --- use strict; use warnings; use Socket; use Net::Ping; print 'Enter a hostname/IP '; my $ip,my $host; $ip=; chomp($ip); if ($ip =~ /\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/) { my $p = Net::Ping->ne

Re: Something strange ..

2008-08-30 Thread Rob Dixon
Gunwant Singh wrote: > I have written a code to ping remote sites: > --- > use strict; > use warnings; > use Socket; > use Net::Ping; > > print 'Enter a hostname/IP '; > my $ip,my $host; > $ip=; > chomp($ip); > if ($ip =~ /\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/) >

Something strange ..

2008-08-30 Thread Gunwant Singh
I have written a code to ping remote sites: --- use strict; use warnings; use Socket; use Net::Ping; print 'Enter a hostname/IP '; my $ip,my $host; $ip=; chomp($ip); if ($ip =~ /\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b/) { my $p = Net::Ping->new() or die "Can't crea

Re: something strange

2002-05-24 Thread Felix Geerinckx
on Fri, 24 May 2002 18:38:18 GMT, Lance Prais wrote: > If I run the script from the CMD prompt, there are no errors and it > works fine. The issue is if I try to run, it from the windows > scheduler it fails. The reason I am thinking it may be related to my > script is that I have other scripts t

RE: something strange

2002-05-24 Thread Lance Prais
-Original Message- From: Lance Prais [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 1:38 PM To: Perl Subject: something strange I am not sure if this is the right place to ask this but I was hoping someone hashad a similer problem. Here is my issue, I am running perl on NT and

something strange

2002-05-24 Thread Lance Prais
I am not sure if this is the right place to ask this but I was hoping someone hashad a similer problem. Here is my issue, I am running perl on NT and have written a very simple script to read a log file and parse through to find words. If I run the script from the CMD prompt, there are no errors