Help for this page

Select Code to Download


  1. or download this
        my $text = do {
            open my $fh => $file or die "open: $!\n";
            local $/;
            <$fh>;
        };
    
  2. or download this
        my $text = `cat $file`;
    
  3. or download this
        system mkdir => -p => $dir;