Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    my $file = do { local $/; <> };
    $file =~ s/\x0A|\x0D\x0A?/\n/g;
    print $file;