Help for this page

Select Code to Download


  1. or download this
    readline() on unopened filehandle at ...
    
  2. or download this
    readline() on unopened filehandle at ... (#1)
        (W unopened) An I/O operation was attempted on a filehandle that w
    +as
        never initialized.  You need to do an open(), a sysopen(), or a so
    +cket()
        call, or call a constructor from the FileHandle package.
    
  3. or download this
    use warnings;
    use strict;
    
    my $path = '/var/log/*';
    my @files = grep { -f } glob $path;