Help for this page

Select Code to Download


  1. or download this
    my $data='';
    while (<$file>) {
         $data .= $_;
        }
    
  2. or download this
    binmode($file);
    my $data;
    { local $/; $data = <$file>; }