Help for this page

Select Code to Download


  1. or download this
       open FOO,$path;
       print <FOO>
    
  2. or download this
       {
           local $/;
    ...
           close FOO;
       }
       print $text;
    
  3. or download this
       print while (<FOO>);