http://www.perlmonks.org?node_id=1007291

Saved has asked for the wisdom of the Perl Monks concerning the following question:

Windows strawberry perl Getopt::Long fails although indentical to that run on Linux. Is there a fix/workarround?
use Getopt::Long; GetOptions ('library=s' => \@libfiles); @libfiles = split(/,/,join(',',@libfiles)); print "@libfiles\n"; $LstCnt=@libfiles; print "$LstCnt\n";
prints "0"