obsfucation is a kind of art,
an insane art, tough.
Anyway, i like perl obfuscation :-)

But what happens if you find some ugly unindented? ... use unix indent or other code-indenting tool? ... Yep, thats the solution for all those that do not like risks ... but for the rest, here you got a nano-script, for indenting some c code :-)

#!/usr/bin/perl (/(?:}\s*(?:else(?{$/--})| (?{$__="\t"x--$/.$_})))/xo, /(?:{\s*(?{$__="\t"x$/++.$_}))$/o, print($__?"$__":"\t"x$/.$_), undef $__) while (<>)

¿how to use it?, very simple:

usage: indent [--help] file example: indent file

I've use this file for testing:

#include <stdlib.h> #include <stdio.h> #include <unistd.h> int main() { int pid,aux,status; pid = fork(); if ( pid < 0 ) { perror("fork"); exit(9); } else if ( pid == 0 ) { //Child printf("do nothing ...\n"); exit( 0 ); } else { printf("father\n"); do { aux = waitpid(&pid,&status); } while(pid == aux); } printf("end :-)\n"); }

Sure it's no perfect, sure it's useless ... but it's my baby monster ;-)

Dr. Frankesturein

perl -Te 'print map { chr((ord)-((10,20,2,7)[$i++])) } split //,"turo"'

In reply to unindented indenter? by turo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.