Help for this page

Select Code to Download


  1. or download this
    # 1. open the file 
    open FILEHANDLE, $filename or die $!;
    ...
    
    # 6. repeat to end of file 
    }
    
  2. or download this
    {   # note the {} brackets. This concerns the scope of the next line.
        local $/;  # sets $/ = undef for this block only.
    ...
        print FH $_, $/;
        close FH or die $!;
    }