view bin/slashes @ 5926:6dd8dc594e3c

<dipperswett> echo -e \'\\x034,9S\\x039,4T\\x034,9O\\x039,4P\\x034,9 \\x039,4T\\x034,9H\\x039,4E\\x034,9 \\x039,4M\\x034,9A\\x039,4D\\x034,9N\\x039,4E\\x034,9S\\x039,4S\' > madness
author HackBot
date Fri, 28 Aug 2015 13:42:48 +0000
parents 56dcce63901b
children c0aac9581038
line wrap: on
line source

#!/usr/bin/perl -w
#By Ørjan Johansen, 2009-2012.  This file is in the public domain.

$| = 1;
my $l = 0;

$_ = join '', <>;
while ($l < 512) {
        if (s!^([^/\\]+)!! or s!^\\(.)!!s) { 
                $l += length($1);
                print($1);
        }
        else {
            if (s!^/((?:[^/\\]|\\.)*)/((?:[^/\\]|\\.)*)/!!s) {
                my ($s,$d) = ($1,$2);
                $s =~ s/\\(.)/$1/gs;
                $d =~ s/\\(.)/$1/gs;
                while (s/(?:\Q$s\E)/$d/) { 
                }
            }
            else { last; }
        }
}