changing the group that files are created with

2006-09-18 Thread Ken Foskey
I have a lot of files created by a (much too) complex script and the user I am running with has a default group of 'staff' but I want all files created to have clientgrp which we create to ensure that only authorised people have access to a particular clients data. I have a command in Linux that

Re: changing the group that files are created with

2006-09-18 Thread Jack Faley ( Who's going to take me serious without a laser pointer?)
On 9/18/06, Ken Foskey [EMAIL PROTECTED] wrote: I have a lot of files created by a (much too) complex script and the user I am running with has a default group of 'staff' but I want all files created to have clientgrp which we create to ensure that only authorised people have access to a

RE: Modules to extract calendar info from Exchange

2006-09-18 Thread William Paulsen \(W\)
Hi, I've looked at cpan, nothings coming up. What I need to do is just extract calendar information from MS Exchange. Sending SMS I've already completed that. Just hoping maybe there's some help out there. William -Original Message- From: D. Bolliger [mailto:[EMAIL PROTECTED] Sent:

Re: changing the group that files are created with

2006-09-18 Thread Mumia W.
On 09/18/2006 02:06 AM, Ken Foskey wrote: I have a lot of files created by a (much too) complex script and the user I am running with has a default group of 'staff' but I want all files created to have clientgrp which we create to ensure that only authorised people have access to a particular

File::find with no_chdir

2006-09-18 Thread Emilio Casbas
Hi, I have this script; --- use File::Find; $File::Find::no_chdir = 0; find(\wanted, @ARGV); sub wanted { print $File::Find::name\n if(-d); } --- I want to do a directory search for a given ARG, but no a recursive search, for example this script show this; [EMAIL

Re: File::find with no_chdir

2006-09-18 Thread Jack Faley ( Who's going to take me serious without a laser pointer?)
On 9/18/06, Emilio Casbas [EMAIL PROTECTED] wrote: Hi, I have this script; --- use File::Find; $File::Find::no_chdir = 0; find(\wanted, @ARGV); sub wanted { print $File::Find::name\n if(-d); } --- I want to do a directory search for a given ARG, but no a recursive

Re: File::find with no_chdir

2006-09-18 Thread D. Bolliger
Emilio Casbas am Montag, 18. September 2006 17:11: Hi, Hi Emilio I have this script; --- use File::Find; $File::Find::no_chdir = 0; find(\wanted, @ARGV); sub wanted { print $File::Find::name\n if(-d); } --- I want to do a directory search for a given ARG,

transition to Perl developer

2006-09-18 Thread Derek B. Smith
To the Gurus, I am in the process of making a transition over to a Perl Developer. From a knowledge standpoint, is there anything I should know or need to know. For example I do not know OO that much. What about any specific modules that are useful? Any other advice? thank you derek

Re: transition to Perl developer

2006-09-18 Thread Joshua Colson
On Mon, 2006-09-18 at 12:38 -0700, Derek B. Smith wrote: To the Gurus, I am in the process of making a transition over to a Perl Developer. From a knowledge standpoint, is there anything I should know or need to know. For example I do not know OO that much. What about any specific

Re: File::find with no_chdir

2006-09-18 Thread John W. Krahn
Emilio Casbas wrote: Hi, Hello, I have this script; --- use File::Find; $File::Find::no_chdir = 0; find(\wanted, @ARGV); sub wanted { print $File::Find::name\n if(-d); } --- I want to do a directory search for a given ARG, but no a recursive search,

Re: File::find with no_chdir

2006-09-18 Thread Beginner
On 18 Sep 2006 at 15:05, John W. Krahn wrote: Emilio Casbas wrote: I have this script; --- use File::Find; $File::Find::no_chdir = 0; find(\wanted, @ARGV); sub wanted { print $File::Find::name\n if(-d); } --- I want to do a directory

Re: File::find with no_chdir

2006-09-18 Thread David Romano
Beginner wrote on Mon, Sep 18, 2006 at 03:24:08PM PDT: On 18 Sep 2006 at 15:05, John W. Krahn wrote: opendir my $dh, $dir or die Cannot open '$dir' $!; print $dir\n, map !/\A\.\.?\z/ -d $dir/$_ ? $dir/$_\n : (), readdir $dh; John That's looks nice John...but what

Re: finding matches in multiple arrays

2006-09-18 Thread Vincent Li
On Mon, 18 Sep 2006, Jeff Pang wrote: Yes, the FAQ answer is more efficient. Using Big O notation[1], the FAQ's solution is O(n) and your's is O(n**2) where is the FAQ?sorry I never knew it. You mean perldoc perlfaq? it has perlfaq1, perlfaq2...perlfaq9. If it is not what you asked,

XLS-files with Unicode?

2006-09-18 Thread Rustam Hamidullin
Hi, Perl-world, Once time I tried to make XLS-file (in clean Linux machine, without ODBC, OLE...). Homework was fine, but I was need in Russian text (cp1251) in fields. How make I a russian text in xls-fields? Modules, functions, unicode, example...? Thanks for your Creativity -- To

Re: File::find with no_chdir

2006-09-18 Thread John W. Krahn
Beginner wrote: On 18 Sep 2006 at 15:05, John W. Krahn wrote: my $dir = '/tmp'; opendir my $dh, $dir or die Cannot open '$dir' $!; print $dir\n, map !/\A\.\.?\z/ -d $dir/$_ ? $dir/$_\n : (), readdir $dh; That's looks nice John...but what is actually happening here. Some sort