Re: SOAP::Lite on Leopard

2008-02-08 Thread Tom Phoenix
On Feb 6, 2008 12:18 PM, minky arora <[EMAIL PROTECTED]> wrote: > Can anyone please point me in the right direction to download SOAP::Lite on > Leopard? I am unable to find instructions for the same, What instructions? Instructions on how to download SOAP::Lite? Instructions on installing modules

Re: system ("find...") - escape character help

2008-02-08 Thread John W. Krahn
Pad wrote: On Feb 8, 6:24 am, [EMAIL PROTECTED] (John W. Krahn) wrote: This may work better (UNTESTED): #!/bin/perl use warnings; use strict; use File::Find; my $tagname = 'XYZ'; my $user= getpwnam 'orauser'; my $seq = '01'; find sub { my ( $uid, $gid ) = ( lstat )[ 4, 5 ];

Re: system ("find...") - escape character help

2008-02-08 Thread Tom Phoenix
On Feb 8, 2008 12:52 PM, Pad <[EMAIL PROTECTED]> wrote: > Can you pl.help me how to get chmod cmd that I am trying to set run > on those directories. I was thinking of using system (" find ... - > exec chmod 755 {} \; ") So, does Perl's chmod() function work for you? You should be able to us

Re: system ("find...") - escape character help

2008-02-08 Thread Pad
Thank you so much.. That was helpful. I feel it looks more perl like solution than calling unix OS cmd. Can you pl.help me how to get chmod cmd that I am trying to set run on those directories. I was thinking of using system (" find ... - exec chmod 755 {} \; ") pad On Feb 8, 6:24 am, [E

processing records selected by check box

2008-02-08 Thread ken uhl
Hi, my form reads the db and renders html table - we want to add check box bulk delete - like email clients. Gettining the UI right is easy - simply adding a checkbox with variable name gives uniqueness. Where do I go from there? Ken -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additi

RE: more fun with $main::

2008-02-08 Thread Thomas Bätzler
Jonathan Mast <[EMAIL PROTECTED]> asked: > ok, how do I do that? Braindead minimal example: #!/usr/bin/perl -w use strict; package Sample::Callback; # constructor takes a function reference as argument sub new { my( $class, $callback ) = @_; my $self = { 'cb' => $callback }; bless $se

test

2008-02-08 Thread Kashif Salman
test -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Help on perl alarm

2008-02-08 Thread Jay Savage
On Feb 7, 2008 1:43 PM, <[EMAIL PROTECTED]> wrote: > On Feb 5, 9:26 pm, [EMAIL PROTECTED] (Rob Dixon) wrote: > > > > Can you see now why you're getting a syntax error? > > > > But your concept is far too convoluted. You have a Perl process that's > > shelling out to another Perl process, that in t

RE: more fun with $main::

2008-02-08 Thread Thomas Bätzler
Jonathan Mast <[EMAIL PROTECTED]> wrote: > Can you use the $main:: convention from inside a module to > call a script subroutine? > > I know it can be used to reference fields from a script, but > we seem to be having problems when trying to call a subroutine. Please don't do that, it's evil. I

Fwd: more fun with $main::

2008-02-08 Thread Jonathan Mast
Can you use the $main:: convention from inside a module to call a script subroutine? I know it can be used to reference fields from a script, but we seem to be having problems when trying to call a subroutine. thanks

Re: system ("find...") - escape character help

2008-02-08 Thread John W. Krahn
Pad wrote: In my script, I am trying to use find cmd (Solaris 8 OS) to change the permission and ownership of a file. I don't know how to get it working as I get 'find incomplete statement'. To make things simpler, here is a small modified snippet of my code.. #!/bin/perl use warnings; my $t

system ("find...") - escape character help

2008-02-08 Thread Pad
In my script, I am trying to use find cmd (Solaris 8 OS) to change the permission and ownership of a file. I don't know how to get it working as I get 'find incomplete statement'. To make things simpler, here is a small modified snippet of my code.. #!/bin/perl use warnings; my $tagname="XYZ";