in reply to Pattern Matching in Cygwin Perl vs. Win32 Perl

alternatively you can set $/ explicitly to "\r\n" for a global effect or use the form
open my $fh, q{<:crlf}, 'WORD.LST' or die "cannot open file:$!\n";
for a file limited effect.