Re: Reading a value from a hash using a variable for the key

2011-01-20 Thread Erez Schatz
On 20 January 2011 15:38, Eyal B. wrote: > I'm writing a scripts that check the TTL of the ping and found the OS. > According the TTL - the script should let me know which OS it is : > Linux/ Windows or Unix (Hash table) > > I'm getting an error on the line where I should use the TTL variable - >

RE: Perl modules and epic perl

2011-01-20 Thread DiGregorio, Dave
Thanks for the help, both of you! And I was initially using the h2xs but tried the Module-Starter instead and it works well. I just imported it into Eclipse and all is good. Thanks again!! DRD -Original Message- From: Hilco Wijbenga [mailto:hilco.wijbe...@gmail.com] Sent: Thursday, J

RE: Lines per page $= varible

2011-01-20 Thread Chris Stinemetz
That worked perfectly! Thank you very much! Chris Stinemetz -Original Message- From: C.DeRykus [mailto:dery...@gmail.com] Sent: Thursday, January 20, 2011 1:40 PM To: beginners@perl.org Subject: Re: Lines per page $= varible On Jan 20, 9:40 am, cstinem...@cricketcommunications.com (Chr

Re: Lines per page $= varible

2011-01-20 Thread C.DeRykus
On Jan 20, 9:40 am, cstinem...@cricketcommunications.com (Chris Stinemetz) wrote: > I am having difficulty using $= correctly to change the number of lines per > page. I would like to set it to 600 but can't seem to get $= =600 to work > correctly. > > Any insight is greatly appreciated. > > Than

Re: Perl modules and epic perl

2011-01-20 Thread Hilco Wijbenga
On 20 January 2011 08:45, Shlomi Fish wrote: > I don't know a lot about EPIC, but I know it's been unmaintained since 2007 or > so. While I didn't see much happening in CVS, the maintainer is still active on the forums. His last post was 4 days ago. EPIC seems to be working fine (but I haven't us

Lines per page $= varible

2011-01-20 Thread Chris Stinemetz
I am having difficulty using $= correctly to change the number of lines per page. I would like to set it to 600 but can't seem to get $= =600 to work correctly. Any insight is greatly appreciated. Thank you, Chris Stinemetz 1 #!/usr/bin/perl 2 3 Smart Phone Perl Script for pa

Re: Reading a value from a hash using a variable for the key

2011-01-20 Thread Shlomi Fish
Hi Eyal, On Thursday 20 Jan 2011 15:38:00 Eyal B. wrote: > I'm writing a scripts that check the TTL of the ping and found the OS. > According the TTL - the script should let me know which OS it is : > Linux/ Windows or Unix (Hash table) > > I'm getting an error on the line where I should use the

Re: Perl modules and epic perl

2011-01-20 Thread Shlomi Fish
Hi Dave, On Thursday 20 Jan 2011 15:16:53 DiGregorio, Dave wrote: > So my initial search has shown not too much information. However I am > curious how others do this. I want to use my Eclipse IDE to create Perl > Modules. Is there a way to do this? Or do I simply have to use the h2xs > command th

Reading a value from a hash using a variable for the key

2011-01-20 Thread Eyal B.
I'm writing a scripts that check the TTL of the ping and found the OS. According the TTL - the script should let me know which OS it is : Linux/ Windows or Unix (Hash table) I'm getting an error on the line where I should use the TTL variable - and take the right value from the hash (%list) :Use o

Perl modules and epic perl

2011-01-20 Thread DiGregorio, Dave
So my initial search has shown not too much information. However I am curious how others do this. I want to use my Eclipse IDE to create Perl Modules. Is there a way to do this? Or do I simply have to use the h2xs command then import the files to Eclipse afterwards? Thanks -Dave