RE: NTFS permissions cleanup

2003-07-06 Thread Craig Dayton
Jenda, The Windows 2000 ResKit contains the script, Filedacls.pl. Below is an partial extract of the scripts documentation. HTM, Craig Filedacls.pl: File DACLs Management Script This script tool displays and changes the discretionary access control lists (DACLs) of files and folders on local a

Re: look arounds

2003-07-06 Thread Steve Grazzini
On Sun, Jul 06, 2003 at 11:20:03AM -, mark sony wrote: > $_ = "The brown fox jumps over the lazy dog"; > /the (\S+)(?{ $color = $^N }) (\S+)(?{ $animal = $^N })/i; > print "color = $color, animal = $animal\n"; > > When I run the program it gives :color = , animal = > > I took it from thi

MQ Series

2003-07-06 Thread quartet
Anyone Played with the Module for IBM's MQ Series package, API? Regards -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

look arounds

2003-07-06 Thread mark sony
Hi All, Can anyone plz explain to me why this one is not working : $_ = "The brown fox jumps over the lazy dog"; /the (\S+)(?{ $color = $^N }) (\S+)(?{ $animal = $^N })/i; print "color = $color, animal = $animal\n"; When I run the program it gives :color = , animal = I took it from this link

File Handlers

2003-07-06 Thread quartet
Hi, I am too a newbie to perl, I am trying to write a simple script that will use IBM's MQ Series API to get Que depths. I know that CPAN has a module for it, but the syntax is exhausting; is there anyone already using MQ Series for a similar use? Thanks, Travis -- To unsubscribe, e-mail: [EMAI

Class::MethodMaker, grouped_fields => [], and SUPER::...()

2003-07-06 Thread Dan Browning
Hello, I'm trying to utilize Class::MethodMaker for my open source shipping module (http://www.kavod.com/Business-Shipping). I would like to extend it so that it will call SUPER in the methods generated by the MethodMaker "grouped_fields" configuration parameter. I've built my own class that

Parent can't kill its child

2003-07-06 Thread Grzegorz Hayduk
Hi gurus, Some time ago I've been coding some tools in C/C++ which communicated with fork/kill. Now I'd like to do similar thing in Perl/Win98, but can't get it to work, can you help me figure out how to do it under Perl/Win98? In child part there's "if( 0 ){ /final example/ } else { /si

RE: perl line breaks...

2003-07-06 Thread Charles K. Clarkson
Ling F. Zhang <[EMAIL PROTECTED]> wrote: : : it is always not good to have a line of instruction : that's very long...what's perl's character to break up : the code? There isn't one. Perl statements end with a semicolon (there are exceptions). You can use any amount of whites space you wish t

Re: Data Structures in Perl

2003-07-06 Thread Robin Norwood
"Gupta, Sharad" <[EMAIL PROTECTED]> writes: > >From ur example i assume that: > > my @order is an array collecting all of the objects with each order. > > So, instead of > > my @order = new miva_order; > > we mean to say: > > my @orders; > my $obj = new miva_order; > $obj->order_number(get_o

Re: perl line breaks...

2003-07-06 Thread Casey West
It was Sunday, July 06, 2003 when Ling F. Zhang took the soap box, saying: : it is always not good to have a line of instruction : that's very long...what's perl's character to break up : the code? I'm confused. You can use any whitespace... : e.g. : $a=1+2+3+4+5+6+7+8+9+10; $a = 1 + 2 + 3 +

perl line breaks...

2003-07-06 Thread Ling F. Zhang
it is always not good to have a line of instruction that's very long...what's perl's character to break up the code? e.g. $a=1+2+3+4+5+6+7+8+9+10; __ Do you Yahoo!? SBC Yahoo! DSL - Now only $29.95 per month! http://sbc.yahoo.com -- To unsubscribe, e-mail: [EMAIL

Re: scandir

2003-07-06 Thread Mark Stosberg
In article <[EMAIL PROTECTED]>, Tassilo von Parseval wrote: > On Sun, Jul 06, 2003 at 02:43:14PM +0530 Pandey Rajeev-A19514 wrote: > >> Do we have a perl function equivalent with the same functionality as >> the function "scandir" in c language ? For more complicated directory searches, you may a

Re: perl help needed

2003-07-06 Thread Mark Stosberg
In article <[EMAIL PROTECTED]>, vemulakonda uday bhaskar wrote: > hi all > > i have got a code for file transger between two linux systems > through ssh > here is the code Hello, This doesn't directly answer your question, but it may solve your problem. :) Have you considered just using passwor

RE: Data Structures in Perl

2003-07-06 Thread Gupta, Sharad
>From ur example i assume that: my @order is an array collecting all of the objects with each order. So, instead of my @order = new miva_order; we mean to say: my @orders; my $obj = new miva_order; $obj->order_number(get_order_num_via_regex()); push @orders,$obj; for (my $w=0;$w<=$#orders;$w

Data Structures in Perl

2003-07-06 Thread Trevor Morrison
Hi, I am new to using data structures in Perl, but have played with them in C (a long time ago). I have downloaded the Class::Struct::Fields module on my W2K system and all works well. I am finding the documentation a little terse though. I am trying to read into my Perl program orders that was

Re: Newbie and Perl+Mail Questions

2003-07-06 Thread David Storrs
On Sat, Jul 05, 2003 at 05:28:41PM +, Pablo Fischer wrote: > Hi; > > > cd ~ > > mkdir -p perl5mod/Mail > > save Sendmail.pm to ~/perl5mod/Mail > > export PERL5LIB=/home/unmada/perl5mod > > > > You probably want to put that last line in your .profile so it gets > > reset every t

[ADMIN] Re: CPAN

2003-07-06 Thread Casey West
It was Sunday, July 06, 2003 when Adam Gent took the soap box, saying: : Hi All, : : Is anyone having problems accessing search.cpan.org : : I keep getting 502 errors, Bad Gatway. : : Just wondering if this is a problem with my ISP or with CPAN in general. Yes, search.cpan.org seems to be havin

CPAN

2003-07-06 Thread Adam Gent
Hi All, Is anyone having problems accessing search.cpan.org I keep getting 502 errors, Bad Gatway. Just wondering if this is a problem with my ISP or with CPAN in general. I can access www.cpan.org though. Thanks, Adam --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus sys

Re: scandir

2003-07-06 Thread Tassilo von Parseval
On Sun, Jul 06, 2003 at 02:43:14PM +0530 Pandey Rajeev-A19514 wrote: > Do we have a perl function equivalent with the same functionality as > the function "scandir" in c language ? No, we don't. Simply do it yourself: my $dir = "/path"; opendir DIR, $dir or die $!; my @list = sort {

scandir

2003-07-06 Thread Pandey Rajeev-A19514
Hello, Do we have a perl function equivalent with the same functionality as the function "scandir" in c language ? Regards Rajeev -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Regular expression problem.

2003-07-06 Thread Pandey Rajeev-A19514
Hi, I am sorry, I didn't realise that colors won't be visible. I have to check the combination of "FastEthernet3/9" becomes "administratively down" An excerpt of my output buffer looks like this. *** ifEntry.1.13 = 13 ifEntry.2.13