passwords in Perl

2015-10-26 Thread Paul.G
Hello Just wondering, what are peoples thoughts on using password authentication in perl. What tools do people use to secure the password or do you just restrict access to the script file so the password cannot be viewed etc. cheers Paul -- To unsubscribe, e-mail: beginners-unsubscr...@perl.o

Re: Installation of Perl 5.18.2 on hpux 11.23

2014-04-07 Thread Paul.G
Hi Larissa   Where did you get your copy of perl 5.18.2 ?   I found this link below if it helps.    http://mirrors.develooper.com/hpux/   We have HP-UX 11.31, which should be similar to HP-UX 11.23.   11.23 ran on both PA-Risc and Itanium.   Are you running a PA-Risc or Itanium processor?   Haven't

Re: check processes accessing file system

2013-01-10 Thread Paul.G
thanks From: David Precious To: beginners@perl.org Sent: Friday, 11 January 2013 12:07 AM Subject: Re: check processes accessing file system On Thu, 10 Jan 2013 05:01:38 -0800 (PST) "Paul.G" wrote: > Linux/Unix you would use. > > eg: &

Re: check processes accessing file system

2013-01-10 Thread Paul.G
Linux/Unix you would use. eg: fuser -c /tmp or lsof could also be used. I was wondering if there was a perl module that does the same thing. From: David Precious To: beginners@perl.org Cc: Paul.G Sent: Thursday, 10 January 2013 8:22 PM Subject: Re: check

check processes accessing file system

2013-01-09 Thread Paul.G
Hi Is there a quck way to test if processes are accessing file system in perl? cheers Paul

Received ezmlm warning

2012-08-24 Thread Paul.G
Sending this as a test message, I received a warning saying that messages to me have been bouncing. Hopefully, I am still on the mailing list and this is just a glitch. Paul

Re: case statement in perl

2012-08-02 Thread Paul.G
don't they get rid of it? On Wed, Aug 1, 2012 at 2:33 PM, Chris Nehren wrote: > On Wed, Aug 01, 2012 at 12:02:04 -0400 , Uri Guttman wrote: >> On 08/01/2012 03:08 AM, Paul.G wrote: >> >The example below is just a test, I need to be able to insert >> >multiple value

Re: case statement in perl

2012-08-01 Thread Paul.G
I have removed the switch funtion from the script. From: Uri Guttman To: beginners@perl.org Sent: Thursday, 2 August 2012 2:02 AM Subject: Re: case statement in perl On 08/01/2012 03:08 AM, Paul.G wrote: > The example below is just a test, I need to be a

Re: case statement in perl

2012-08-01 Thread Paul.G
t\t synced"; } else {    cleanexit (10, "FAIL \t\t No Free PV's Available"); } return 0; } From: John W. Krahn To: Perl Beginners Sent: Wednesday, 1 August 2012 4:58 PM Subject: Re: case statement in perl Paul.G wrote: > Below is an extract from the perl

Re: case statement in perl

2012-07-31 Thread Paul.G
__ From: Chris Nehren To: beginners@perl.org Sent: Wednesday, 1 August 2012 2:54 PM Subject: Re: case statement in perl On Tue, Jul 31, 2012 at 23:47:45 -0500 , Hal Wigoda wrote: > Use the switch/case combination. > > On Tue, Jul 31, 2012 at 11:41 PM, Paul.G wrot

case statement in perl

2012-07-31 Thread Paul.G
Hi All Does perl have a case statement or an equivalent? Cheers Paul

Re: & and subroutine

2012-04-19 Thread Paul.G
Thanks for everyone's assistance, I think I have my answer. I will be looking closer at the comments. cheers From: Michael Rasmussen To: beginners@perl.org Sent: Tuesday, 17 April 2012 11:01 PM Subject: Re: & and subroutine And for what it's worth. 113. Ca

& and subroutine

2012-04-16 Thread Paul.G
Hi All Have a question, is it good coding practice to use a & when calling a subroutine, or it is not required, or it doesn't matter? eg: sub name { some code here, returning a single value return 0; } &name(); cheers

Re: Array of Hashes

2012-04-13 Thread Paul.G
Thanks for your help, I will look carefully at both of your comments. cheers From: John W. Krahn To: Perl Beginners Sent: Friday, 13 April 2012 6:08 AM Subject: Re: Array of Hashes Rob Dixon wrote: > > Hi Paul and welcome to the list. > > I can see a few t

Re: Array of Hashes - problem solved

2012-04-12 Thread Paul.G
print " \n"; push @vggroup, $rec; }   } }  for $href (@vggroup) { print "{ "; for $extent ( keys %$href ) { print "$extent=$href->{$extent} ";   }   print "}\n";  } close(EXT); close(CMD) ___

Array of Hashes

2012-04-12 Thread Paul.G
Hi All New to this group, so hello to everybody. I am currently working on creating a Array of Hashes, note it is a work in progress. I appear to be getting some corruption when inputting data with the pvdisplay, I can't see why this is the case. I have put some print statements to see where I