hearnold has asked for the wisdom of the Perl Monks concerning the following question:

I created a exe from a perl program that I wrote using pp -o testfile.exe testfile.pl I have since lost the source file. Is there a way that I can get access into this exe file to regain my souce file? Thanks, Howard

Replies are listed 'Best First'.
Re: regain source file from exe
by almut (Canon) on May 14, 2010 at 20:23 UTC

    When you run the program, the files are extracted to a temporary cache directory (which is not cleaned up by default), so you should be able to just copy the source files from there (normally /tmp/par-USERNAME/cache-XXXXXXX).

Re: regain source file from exe
by Anonymous Monk on May 14, 2010 at 20:58 UTC