Help for this page

Select Code to Download


  1. or download this
    my $whole_file;
    {
       local($/) = undef;
       $whole_file = <F>;  # <> operator reads in all of the data from fil
    +ehandle F
    }
    
  2. or download this
    my $whole_file = do { local $/; <F> };