Re: uninitialized value in printf

2008-02-02 Thread obdulio santana
Thaks listers, your comments helped a lot. everything was fixed. regards

Re: uninitialized value in printf

2008-02-02 Thread asmith
Hi John You'd make life easier for everyone if you prefixed each line of your program with the line number. The Linux command cat -n < file> will do that for you. Andrew in Edinburgh,Scotland John W. Krahn wrote: > obdulio santana wrote: >> I must mix 3 files, and produce a little report but in li

Re: uninitialized value in printf

2008-02-01 Thread John W. Krahn
obdulio santana wrote: I must mix 3 files, and produce a little report but in line 23 and 31 is a warning of uninitalized value I really don't see the mistake. use warnings; use strict; @lfile0 = ; chomp @lfile0; @meses = qw(ene feb mar abr may jun jul ago sep oct nov dic); @files= glob "

Re: uninitialized value in printf

2008-02-01 Thread Gunnar Hjalmarsson
obdulio santana wrote: I must mix 3 files, and produce a little report but in line 23 and 31 is a warning of uninitalized value I really don't see the mistake. use warnings; use strict; @lfile0 = ; chomp @lfile0; @meses = qw(ene feb mar abr may jun jul ago sep oct nov dic); @files= glob "7

uninitialized value in printf

2008-02-01 Thread obdulio santana
I must mix 3 files, and produce a little report but in line 23 and 31 is a warning of uninitalized value I really don't see the mistake. Thank you in advance use warnings; @lfile0 = ; chomp @lfile0; @meses = qw(ene feb mar abr may jun jul ago sep oct nov dic); @files= glob "78*"; my %textos;