Help for this page

Select Code to Download


  1. or download this
    $cat2 = `/bin/cat data.txt`;
    
  2. or download this
    open(FH, 'data.txt') or die();
    my $tmp_fs = $/;
    ...
    $/ = $tmp_fs;
    close(FH);