On Sun, Oct 18, 2009 at 11:17 AM, Yaniv Dudu <yaniv.d...@ecitele.com> wrote: > I wrote a script that is using two text file and an executable C++ file, I > want to make one executable out of all my files: the two text file the C++ > executable and the Perl. > > is it possible?
Yes, have a look at option "-a" of pp. Example: $ pp -a howto.txt -o my.exe myscript.pl will pack howto.txt into my.exe and extract it to $ENV{PAR_TEMP}/inc/howto.txt when my.exe is run. Cheers, Roderich