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

Greetings, Anyone know how I can build a Perl executable via PAR on a linux box? thanks, Alex.
  • Comment on Cross-platform standalone Perl application

Replies are listed 'Best First'.
Re: Cross-platform standalone Perl application
by mscharrer (Hermit) on Apr 21, 2008 at 20:05 UTC
    Look in this PAR tutorial which I just found by typing PAR tutorial into Google.

    It's says:

    % pp -o sshnuke.exe sshnuke.pl # stand-alone executable!
    For more info follow the link. You need 'pp' under e.g. Ubuntu Linux it can be install with sudo apt-get install libpar-packer-perl.
Re: Cross-platform standalone Perl application
by linuxer (Curate) on Apr 21, 2008 at 20:03 UTC
    Did you already check the PAR tutorial at: http://search.cpan.org/dist/PAR/lib/PAR/Tutorial.pod
      Additional info: perldoc pp should show you a brief overview how to call it.