Sponsored Content
Full Discussion: Converting perl to exe
Top Forums Shell Programming and Scripting Converting perl to exe Post 302414480 by suvenduperl on Tuesday 20th of April 2010 08:46:27 AM
Old 04-20-2010
i have installed indigostar software for doing perl to exe.
but it didnt worked out.
Can you tell me something more about PAR..
how i will use it..
 

10 More Discussions You Might Find Interesting

1. Programming

how To edit exe to insert a serial no wich can be usd by runing exe

At time of installation I have to open the resource. and i have to insert a string serial number in the exe. please provide me code to edit the exe (in solaris) to insert a serial number which can be used by exe at run time. (6 Replies)
Discussion started by: ssahu
6 Replies

2. Shell Programming and Scripting

PERL: perl 2 exe with Tk

How do i turn my TK perl program into an EXE using perl 2 exe. I did it as normal but the program dont run, it shuts itslef down (2 Replies)
Discussion started by: perleo
2 Replies

3. Shell Programming and Scripting

Converting Perl code to shell

I have a perl code that runs like Code I sub p { if ($d >= $D) {return} printf "%3s"x$d++," "; printf "%s%s\n",$_,$h{$_}?" ** ":""; if (!$h{$_}) { $h{$_}=1; map {p($_)} @{$s{$_}} } $d-- } ($Set,$Job,$Num,$D) = (@ARGV); map {shift} 0..3; (8 Replies)
Discussion started by: zainravi
8 Replies

4. Shell Programming and Scripting

Exe for perl script

Hi, how to create an exe out of a perl script.Even if it is possible how secure is it? Are there other softwares to decryprt a perl exe and get the source code out of it ? (7 Replies)
Discussion started by: Anuj8584
7 Replies

5. UNIX for Advanced & Expert Users

problem with converting time using perl

Hello, I have an AIX 5.3 system and i created a script to get the last login of users. The script goes like this: LAST_LOGIN=`lsuser -a time_last_login $cur_user` TIME_LOGIN=`perl -e 'print scalar localtime("$LAST_LOGIN")'` Actually what i do in these two lines is to set a variable... (2 Replies)
Discussion started by: omonoiatis9
2 Replies

6. Shell Programming and Scripting

Simple perl help - converting numbers

Hi friends, I'm very new to perl and got some requirement. I've input numbers which has size of 17 characters like below: -22500.0000000000 58750.00000000000 4944.000000000000 -900.000000000000 272.0000000000000 I need to convert these numbers from negative to positive and positive... (4 Replies)
Discussion started by: ganapati
4 Replies

7. Programming

Python[Issue in converting .py to .exe using py2exe

Hi Experts, Good morning. I am trying to convert my hello.py to hello .exe file. I followed the steps as mentioned in the documentation but getting errors in the end. Please help. What I did as below-- Created hello.py file print ("Hello world!") raw_input('') Then... (0 Replies)
Discussion started by: shekhar_4_u
0 Replies

8. Shell Programming and Scripting

Converting shell to Perl I run into shell built in function trap and need alternative in Perl

I am working on converting shell to Perl script. In shell we have built in function trap Do you know alternative in Perl or actually we don't need it? Thanks for contribution (3 Replies)
Discussion started by: digioleg54
3 Replies

9. UNIX for Beginners Questions & Answers

Converting awk to perl

Hello. I'm trying to convert an awk script I wrote to perl (which I just started self-teaching). I tried the a2p command but I couldn't make sense of most of it. Here was the awk code: BEGIN{ FS = "," print "NAME\tLOW\tHIGH\tAVERAGE" a=0 } { if(a==0){ a+=1 (1 Reply)
Discussion started by: Eric7giants
1 Replies

10. UNIX for Beginners Questions & Answers

Converting awk to perl

Hello. I'm currently teaching myself Perl and was trying to turn an awk code that I had written into Perl. I have gotten stuck on a particular part and a2p has not helped me at all. The task was to take a .csv file containing a name, assignment type, score and points possible and compute it into a... (1 Reply)
Discussion started by: Eric7giants
1 Replies
Padre::Perl(3pm)					User Contributed Perl Documentation					  Padre::Perl(3pm)

NAME
Padre::Perl - A more nuanced "Where is Perl" module than Probe::Perl DESCRIPTION
Even though it has only had a single release, Probe::Perl is the "best practice" method for finding the current Perl interpreter, so that we can make a system call to a new instance of the same Perl environment. However, during the development of Padre we have found the feature set of Probe::Perl to be insufficient. "Padre::Perl" is an experimental attempt to improve on Probe::Perl and support a wider range of situations. The implementation is being contained to the Padre project until we have competently "solved" all of the problems that we care about. GUI vs Command Line On some operating systems, different Perl binaries need to be called based on whether the process will be executing in a graphical environment versus a command line environment. On Microsoft Windows perl.exe is the command line Perl binary and wperl.exe is the windowing Perl binary. On Mac OS X (Darwin) perl.exe is the command line Perl binary and wxPerl.exe is a wxWidgets-specific Perl binary. PAR Support PAR executables do not typically support re-invocation, and implementations that do are only a recent invention, and do not support the normal Perl flags. Once implemented, we may try to implement support for them here as well. FUNCTIONS
"perl" The "perl" function is equivalent to (and passes through to) the "find_perl_interpreter" method of Probe::Perl. It should be used when you simply need the "current" Perl executable and don't have any special needs. The other functions should only be used once you understand your needs in more detail. Returns the location of current perl executable, or "undef" if it cannot be found. "cperl" The "cperl" function is a Perl executable location function that specifically tries to find a command line Perl. In some situations you may critically need a command line Perl so that proper "STDIN", "STDOUT" and "STDERR" handles are available. Returns a path to a command line Perl, or "undef" if one cannot be found. "wxperl" The "wxperl" function is a Perl executable location function that specifically tries to find a windowing Perl for running wxWidgets applications. In some situations you may critically need a wxWidgets Perl so that a command line box is not show (Windows) or so that Wx starts up properly at all (Mac OS X). Returns a path to a Perl suitable for the execution of Wx-based applications, or "undef" if one cannot be found. COPYRIGHT &; LICENSE Copyright 2008-2012 The Padre development team as listed in Padre.pm. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of the license can be found in the LICENSE file included with this module. perl v5.14.2 2012-06-27 Padre::Perl(3pm)
All times are GMT -4. The time now is 08:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy