in reply to Use of uninitialized value in concatenation (.) or string at perl.pl line 216, <$file> line 18.

If you use autodie you won't have to add or die or get confused about which variable contains the filename (which, FWIW, we discussed this on december 3rd) :)
use autodie; open my $file , '<', $options{c}; my @files = <$file>; close $file;
  • Comment on Re: Use of uninitialized value in concatenation (.) or string at perl.pl line 216, <$file> line 18.
  • Select or Download Code