11 lines
186 B
Perl
11 lines
186 B
Perl
#Format:
|
|
|
|
#eof(FILEHANDLE)
|
|
#eof()
|
|
#eof
|
|
|
|
open ( DB, "data.txt") || die "Can't open emp.names: $!";
|
|
while(<DB>){
|
|
print if (/Norma/ .. eof); # .. is the range operator
|
|
}
|