Re: Executable perl program help!!

2003-08-20 Thread Rick Clary
6 AM Subject: RE: Executable perl program help!! > > How can i generate such a file? # vi mysript.pl : #!/usr/bin/perl -w use strict; print "hello\n"; # ./myscript.pl Bash: Bad command or file name : Permission denied # chmod 755 myscript.pl # ./myscript.pl hello # On unix it

Re: Executable perl program help!!

2003-08-20 Thread Rich Parker
ob Showalter <[EMAIL PROTECTED]> 20/08/2003 16:20 To: "'Rich Parker'" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] cc: Subject:RE: Executable perl program help!! Rich Parker wrote: I was at Active State the other day, they have one that can

RE: Executable perl program help!!

2003-08-20 Thread Dan Muey
> > How can i generate such a file? # vi mysript.pl : #!/usr/bin/perl -w use strict; print "hello\n"; # ./myscript.pl Bash: Bad command or file name : Permission denied # chmod 755 myscript.pl # ./myscript.pl hello # On unix it has to be executable by the user running it, commonly 755 or o

RE: Executable perl program help!!

2003-08-20 Thread Laurent_Coudeur
Also try http://www.indigostar.com/ Laurent coudeur Bob Showalter <[EMAIL PROTECTED]> 20/08/2003 16:20 To: "'Rich Parker'" <[EMAIL PROTECTED]>, [EMAIL PROTECTED] cc: Subject: RE: Executable perl program help!! Rich

RE: Executable perl program help!!

2003-08-20 Thread Bob Showalter
Rich Parker wrote: > I was at Active State the other day, they have one that can be > purchased. I have seen a few others when I did a similar search as > mentioned. I haven't seen one for free or one that has a demo for it, > I'd love to try one, if anyone sees one, let everyone know about it. Yo

Re: Executable perl program help!!

2003-08-20 Thread Rich Parker
I was at Active State the other day, they have one that can be purchased. I have seen a few others when I did a similar search as mentioned. I haven't seen one for free or one that has a demo for it, I'd love to try one, if anyone sees one, let everyone know about it. Thanks. Ramprasad A Padma

Re: Executable perl program help!!

2003-08-20 Thread Ramprasad A Padmanabhan
[EMAIL PROTECTED] wrote: How can i generate such a file? Million dollar question , No perfect answer. Depends on what OS you are using. Do a google on perl2exe For starters try the O.pm. To convert your perlcode to C and then compile the C code On linux You can compile using export LDOPTS=`per

Executable perl program help!!

2003-08-20 Thread sc00170
How can i generate such a file? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]