Help for this page

Select Code to Download


  1. or download this
    $/ = undef;
    $_ = <>;
    
  2. or download this
    # one way to replace nulls with newlines:
    $/ = "\x00";
    ...
       s/\x00/\n/;
       print;
    }