Help for this page

Select Code to Download


  1. or download this
    my $cfg = {};
    open (INFILE,"<testfile.txt") || die "Could not open file\n$!\n";
    ...
    __END__
    GLOB(0x20eab18)
    
  2. or download this
    my $cfg = {};
    open (INFILE,"<testfile.txt") || die "Could not open file\n$!\n";
    ...
    while(<$infh}>){
        print "$_\n";
    }