in reply to Trying to learn something about obfuscation
rob@kathmandu:~$ perl -MO=Deparse -e 'die$;!~y//.-~/c.$;.([$^=~/./g]&~ +$").$&.($;&{}).$/' die !($; =~ tr//.-~/c) . $; . ([$^ =~ /./g] & ~$") . $& . ($; & {}) . +$/; -e syntax OK
Note though that some code can be written to deliberately not be able to be parsed in this manner. The joy of obfuscation.
perl -le 'print+unpack("N",pack("B32","00000000000000000000001000101011"))'
|
---|