Help for this page

Select Code to Download


  1. or download this
        open my $fh, $somefile or die $!;
    
  2. or download this
        sub on {
            my $file = shift;
            local \*F;
            open F, $file or die "Couldn't open $file: $!";
        }
    
  3. or download this
    C:\>perl -e "open my $fh, q|< test.txt| or die $!;print ref $fh"
    GLOB