Help for this page

Select Code to Download


  1. or download this
        $startOfData= tell DATA;
        while( <DATA> ) {
    ...
        while( <DATA> ) {
            ReprocessedCheese( $_ );
        }
    
  2. or download this
        ( $text= $binary ) =~ s#([^ -~])#
            sprintf "\\x%02.2x",unpack("C",$1) #ge;
        print "$text\n";