Converting perl to exe


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Converting perl to exe
# 1  
Old 04-20-2010
Converting perl to exe

Hello All,

I want to convert .pl to .exe with all include libraries like:

WIN32/OLE.....

Please suggest me how i will proceed for this....
# 2  
Old 04-20-2010
Sounds like PAR might be the right tool for this.
# 3  
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..
# 4  
Old 04-20-2010
Can't really help you there, as I've never used it myself. But why don't you give the tutorial a try.
# 5  
Old 04-20-2010
pludi thanks for your answer.

But still i am unable to get any idea from here.
I am not getting how to Install PAR and and how to use it.

I read that Activeperl will be useful for it.
So give some idea about activeperl and how to use it.
# 6  
Old 04-20-2010
Quote:
Originally Posted by suvenduperl
...
I am not getting how to Install PAR and and how to use it.
Check the main page of PAR for installation instructions:

PAR - search.cpan.org

About usage, I could see a huge number of usage examples in the link posted by pludi.

Quote:
I read that Activeperl will be useful for it.
So give some idea about activeperl and how to use it.
ActivePerl is a Windows port of Perl. PAR can be installed on any OS that supports Perl, not just Windoze.

tyler_durden
# 7  
Old 04-20-2010
but i am not getting the way to install PAR................
tell me the procedure
for doing the installation
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
Login or Register to Ask a Question