http://www.perlmonks.org?node_id=428572


in reply to decompile perl2exe

Try this (assuming *nix as OS):

$ mv /usr/bin/perl /usr/bin/perl.real $ cat > /usr/bin/perl #!/bin/sh PROG=$1 /usr/bin/perl.real -MO=Deparse $PROG ^D $ chmod 755 /usr/bin/perl

$ is prompt. Ctrl+D to finish entering your perl substitute shell script.

Try running your exe and it should/may (untested) spew source.

$ some.exe > source.txt 2>&1
Reverse changes with:
$ rm -f /usr/bin/perl $ mv /usr/bin/perl.real /usr/bin/perl

All care, no responsibility.

cheers

tachyon

Replies are listed 'Best First'.
Re^2: decompile perl2exe
by Anonymous Monk on Feb 07, 2005 at 09:33 UTC
    Thank you.

    Any chance you can give the translation to windows in this.

    Got no xp with unix/linux.......

    Jahwik