Help for this page

Select Code to Download


  1. or download this
    my $text;
    if (@ARGV) {
    ...
       local $/;
       $text = <STDIN>;
    }
    
  2. or download this
    my $text; { local $/; $text = <>; }