Re: What happened to Getopt::Std ?

2007-06-14 Thread Miguel Santinho
Em (On) Wed, Jun 13, 2007 at 09:29:27AM -0400, John Peacock escreveu (wrote): The Kurila project is a fork of Perl5 without the strict backwards compatibility required of v5.10.0, as a theoretical experiment. You'll note now that under CPAN, it shows up as Is CPAN (Comprehensive __Perl__

Re: What happened to Getopt::Std ?

2007-06-13 Thread Miguel Santinho
Em (On) Wed, Jun 13, 2007 at 09:03:09AM +0100, Jorge Almeida escreveu (wrote): http://search.cpan.org/search?m=moduleq=getopts=21 What is this Perl Kurila? and why is this (apparently) creating conflicts with some namespaces? http://search.cpan.org/~tty/kurila-0_02/ Miguel pgprv5pnkRfrR.pgp

Re: encrypt the password stored in a file

2005-08-30 Thread Miguel Santinho
Em (On) Mon, Aug 29, 2005 at 12:36:32PM -0400, Bob Showalter escreveu (wrote): Ken Perl wrote: The password used to access a ftp server is stored in a text file, the perl program gets the password from the file, the pass it to the ftp server for logon, this is the background. The

Re: Reg..Regular expression

2004-11-11 Thread Miguel Santinho (Simplicidade.com)
One idea ## #!/usr/bin/perl -w use strict; use Text::Balanced qw(extract_quotelike extract_multiple); use Data::Dumper; my @array = (DATA); my @strings; foreach my $line (@array) { push @strings,

Re: Reg..Regular expression

2004-11-11 Thread Miguel Santinho (Simplicidade.com)
Or a shorter version :-) ### #!/usr/bin/perl -w use strict; use Text::Balanced qw(extract_quotelike extract_multiple); use Data::Dumper; my @array = (DATA); my @strings; push @strings,extract_multiple( $_,[sub {

Re: HoH is there a better way?

2004-11-10 Thread Miguel Santinho (Simplicidade.com)
On Wed, 10 Nov 2004 00:04:12 -0600 Charles K. Clarkson [EMAIL PROTECTED] wrote: my @headers = split ' ', DATA; This way, if tomorrow you have some data like: extents nptot 51671035 2223412520365 you'll be in troubles, right? my @tables; while (DATA) { my %table;