Combining unique data from several lines to one line

2008-09-27 Thread cca . johnson
I am looking to send a mail message to a large group of users and indicate which groups they are assigned to. Currently I have a tab deliniated file which has in column 1 the email address, column 2 the group, and column 3 the user's name. Using sample data I would like: [EMAIL PROTECTED] T. Dog [

dump all name space?

2008-09-27 Thread oldyork90
Is there a way to dump the name space; show all var names and values? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

join operator for arrays question

2008-09-27 Thread JAaronAnderson.com
=pod Hey fellow GoogleGroup Brothers & Sisters, I am hoping to ask you all a quick Perl intermediate logic question… I have called an obj command which returns what I think is a multi- dimensional array like so =cut my @userlist = $obj->command_ok(qw/user list/, "","",""); # it then returns this in

Re: dump all name space?

2008-09-27 Thread Sandy lone
On Sat, Sep 27, 2008 at 3:11 AM, oldyork90 <[EMAIL PROTECTED]> wrote: > Is there a way to dump the name space; show all var names and values? > > If the name space is an object, you could show its structure with Data::Dumper. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Re: Combining unique data from several lines to one line

2008-09-27 Thread Mr. Shawn H. Corey
On Fri, 2008-09-26 at 10:03 -0700, [EMAIL PROTECTED] wrote: > I am looking to send a mail message to a large group of users and > indicate which groups they are assigned to. Currently I have a tab > deliniated file which has in column 1 the email address, column 2 the > group, and column 3 the user

Re: join operator for arrays question

2008-09-27 Thread Mr. Shawn H. Corey
On Fri, 2008-09-26 at 13:15 -0700, JAaronAnderson.com wrote: > my @userlist = $obj->command_ok(qw/user list/, "","",""); > # it then returns this info I think > # “emailHandle”, “User FullName” > # because it shows Array elements in memory > # foreach of them but not the mapped qw word list hm

Re: Combining unique data from several lines to one line

2008-09-27 Thread John W. Krahn
[EMAIL PROTECTED] wrote: I am looking to send a mail message to a large group of users and indicate which groups they are assigned to. Currently I have a tab deliniated file which has in column 1 the email address, column 2 the group, and column 3 the user's name. Using sample data I would like:

Re: join operator for arrays question

2008-09-27 Thread John W. Krahn
JAaronAnderson.com wrote: =pod Hey fellow GoogleGroup Brothers & Sisters, I hate to disappoint you but this is not a "GoogleGroup", this is a mailing list controlled by perl.org. I am hoping to ask you all a quick Perl intermediate logic question… I have called an obj command which returns

Re: join operator for arrays question

2008-09-27 Thread Jeff Pang
> Message du 27/09/08 15:41 > De : "John W. Krahn" > A : "Perl Beginners" > Copie à : > Objet : Re: join operator for arrays question > > > JAaronAnderson.com wrote: > > =pod > > Hey fellow GoogleGroup Brothers & Sisters, > > I hate to disappoint you but this is not a "GoogleGroup", this is a > mai

Adding http://learn.perl.org/faq/beginners.html to http://lists.perl.org/showlist.cgi?name=beginners

2008-09-27 Thread Philip Durbin
The other day[1] Paul Johnson mentioned that the FAQ for the beginners@perl.org mailing list is located at http://learn.perl.org/faq/beginners.html and I thought it might be nice to add this link to http://lists.perl.org/showlist.cgi?name=beginners My message to [EMAIL PROTECTED] bounced, how

Re: dump all name space?

2008-09-27 Thread Jenda Krynicky
From: oldyork90 <[EMAIL PROTECTED]> > Is there a way to dump the name space; show all var names and values? print Dumper(\%main::); HTH, Jenda = [EMAIL PROTECTED] === http://Jenda.Krynicky.cz = When it comes to wine, women and song, wizards are allowed to get drunk and

Re: dump all name space?

2008-09-27 Thread Sandy lone
On Sun, Sep 28, 2008 at 2:42 AM, Jenda Krynicky <[EMAIL PROTECTED]> wrote: > From: oldyork90 <[EMAIL PROTECTED]> >> Is there a way to dump the name space; show all var names and values? > > print Dumper(\%main::); Not so right. This can only dump the package variables, not a my v

Internet explorer viewing options, run script but was prompted to download

2008-09-27 Thread itshardtogetone
Hi, I use internet explorer 7.0 to browse the website. I upload a simple script, helloworld.cgi, to my website but when I ran the script by typing the url, www.myurl.com/cgi-bin/helloworld.cgi, instead of executing the script, I was prompted to download the script. What must I do. Thanks

Re: Internet explorer viewing options, run script but was prompted to download

2008-09-27 Thread Rob Coops
On Sun, Sep 28, 2008 at 8:28 AM, itshardtogetone < [EMAIL PROTECTED]> wrote: > Hi, > I use internet explorer 7.0 to browse the website. > I upload a simple script, helloworld.cgi, to my website but when I ran the > script by typing the url, www.myurl.com/cgi-bin/helloworld.cgi, instead of > execut