Hi everybody,

I do a script to that pick some character from file A and the open and
read file B and search is equal or not.

This is the example:

my $datainfo = '/gupl/GenerarUser';
$count = 1;

open (LECTOR, "$datainfo/students_creados") || die "ERROR: NO Encuentro el
archivo 'students_creados'\n";

while (<LECTOR>) { #PRIMER WHILE
        chomp;
        @linea = split;
        $name =$linea[0];
open (LECTOR, "$datainfo/passwd5") || die "ERROR: NO Encuentro el archivo
'students_creados1'\n";

while (<LECTOR>) { #SECOND WHILE
        chomp;
        @linea1 = split;
$name1 = $linea1[0];
if ($name1 =~ /$name/i){
open (PRINTER, ">>$datainfo/repeticiones");
print PRINTER "$linea1[0]   $count \n";
$count+= 1;
close (PRINTER);
}

And it not workin could some one tellme what I do wrong

Thanks for any help

_______________________________________________
Perl-Unix-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to