Help for this page

Select Code to Download


  1. or download this
    no utf8;
    use bytes;
    
  2. or download this
    open( IN, "<:raw", "input.file" ) or die $!;
    open( OUT, ">:raw", "output.file" ) or die $!;
    ...
    
    binmode STDIN, ":raw";
    binmode STDOUT, ":raw";