RE: getting perl to open pl file extension in XP

2013-02-02 Thread Govardhanan D
Smith, Can you please try by setting the path extension C:\>set PATHEXT=%PATHEXT%;.pl Thank you Govardhanan D Excuse for Typos- Sent from Mobile. From: Michael Smith Sent: 03-02-2013 AM 03:24 To: beginners@perl.org Subject: Re: getting perl to open pl f

Re: getting perl to open pl file extension in XP

2013-02-02 Thread Michael Smith
adable Everyone Thanks you very much for all the responses. ms From: timothy adigun <2teezp...@gmail.com> To: Michael Smith Cc: "beginners@perl.org" Sent: Saturday, February 2, 2013 11:40 AM Subject: Re: getting perl to open pl file extension in XP

Re: getting perl to open pl file extension in XP

2013-02-02 Thread Brandon McCaig
On Sat, Feb 02, 2013 at 08:29:30AM -0800, Michael Smith wrote: > First I installed strawberry perl but it has no GUItest and I > couldn't get guitest to install. Then I deleted strawberry and > I installed padre-on-strawberry because it says it already > contains GUItest and now I can't get anythin

Re: getting perl to open pl file extension in XP

2013-02-02 Thread timothy adigun
Hi On Sat, Feb 2, 2013 at 5:29 PM, Michael Smith wrote: > I know get a new OS :) > > First I installed strawberry perl but it has no GUItest and I couldn't get > guitest to install. Then I deleted strawberry and I installed > padre-on-strawberry because it says it already contains GUItest and no

getting perl to open pl file extension in XP

2013-02-02 Thread Michael Smith
I know get a new OS :) First I installed strawberry perl but it has no GUItest and I couldn't get guitest to install. Then I deleted strawberry and I installed padre-on-strawberry because it says it already contains GUItest and now I can't get anything but notepad to open the pl files. I have t

Re: Getting perl to work on windows 98 se

2004-11-07 Thread Alexander
On M$ systems I've only used ActivePerl. Here's what I can tell you: First, c:\Perl\bin should have been added to your %PATH environment variable by the installer. If not, you have to do so by hand. The quickest way is to add ";c:\Perl\bin" to end of the line that begins with "PATH=" in your c:\au

Re: Getting perl to work on windows 98 se

2004-11-06 Thread Edward Wijaya
On Sat, 6 Nov 2004 22:15:43 -0800 (PST), mark McWilliams <[EMAIL PROTECTED]> wrote: Where should I look? There is a bin folder created when I tried to load perl but it does not have any subfolders in it. Yes, the are usually stored under C:/Perl/bin I can not find any /usr folder in the instal

Getting perl to work on windows 98 se

2004-11-06 Thread mark McWilliams
I an having trouble installing perl5 or activeperl on my machine and would like any advice anyone can give. What in particular should I look for after it is suppositively installed. Where should I look? There is a bin folder created when I tried to load perl but it does not have any subfolders i

Re: Getting Perl

2003-01-23 Thread Bob X
"Beau E. Cox" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi - > > > -Original Message- > > From: Scott Barnett [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, January 22, 2003 4:33 AM > > > > Hi All, > > > > Is there a free version of Perl that I can

Re: Getting Perl

2003-01-22 Thread David T-G
Scott -- ...and then Scott Barnett said... % % Hi All, Hi! % % Is there a free version of Perl that I can get that will run on Win98 machine. I want to start learning Perl. checked ActiveState but it looks like that is only a 15 or 30 day evaluation, I may be wrong? Looks like you are, but

RE: Getting Perl

2003-01-22 Thread Beau E. Cox
Hi - > -Original Message- > From: Scott Barnett [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 22, 2003 4:33 AM > > Hi All, > > Is there a free version of Perl that I can get that will run on > Win98 machine. I want to start learning Perl. checked ActiveState > but it looks like

RE: Getting Perl

2003-01-22 Thread Westgate, Jared
Scott Barnett wrote: > Is there a free version of Perl that I can get that will run > on Win98 machine. I want to start learning Perl. checked > ActiveState but it looks like that is only a 15 or 30 day > evaluation, I may be wrong? I assume you want a binary, not the source code? Well, chec

Getting Perl

2003-01-22 Thread Scott Barnett
Hi All, Is there a free version of Perl that I can get that will run on Win98 machine. I want to start learning Perl. checked ActiveState but it looks like that is only a 15 or 30 day evaluation, I may be wrong? Thanks, Scott Barnett Home Care Medical - Technical Support Specialist 1-800-369-6

RE: Getting Perl to interact with passwd

2001-06-12 Thread Daniel Ames
On Tue, 12 Jun 2001, Paul wrote: > --- Daniel Ames <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > This was brought up before, but the archives didn't really answer my > > question. > > > > I'm trying to get my script to reset a password for me via the passwd > > command. Keep in mind, I'm very new

Re: Getting Perl to interact with passwd

2001-06-11 Thread Karthik Krishnamurthy
On Tue, 12 Jun 2001, Paul wrote: > --- Daniel Ames <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > This was brought up before, but the archives didn't really answer my > > question. > > > > I'm trying to get my script to reset a password for me via the passwd > > command. Keep in mind, I'm very n

RE: Getting Perl to interact with passwd

2001-06-11 Thread Daniel Ames
At 01:14 PM 6/11/01 -0700, Paul wrote: > > #!/usr/bin/perl > > > > open(handle, "| passwd joeuser"); > > > > print handle "password\n"; > > print handle "password\n"; > > close(handle); > > > > Here's what it spits out: > > > > Changing password for user joeuser > > New UNIX password: Retype new U

Re: Getting Perl to interact with passwd

2001-06-11 Thread Peter Scott
At 01:14 PM 6/11/01 -0700, Paul wrote: > > #!/usr/bin/perl > > > > open(handle, "| passwd joeuser"); > > > > print handle "password\n"; > > print handle "password\n"; > > close(handle); > > > > Here's what it spits out: > > > > Changing password for user joeuser > > New UNIX password: Retype new U

Re: Getting Perl to interact with passwd

2001-06-11 Thread Paul
--- Daniel Ames <[EMAIL PROTECTED]> wrote: > Hi all, > > This was brought up before, but the archives didn't really answer my > question. > > I'm trying to get my script to reset a password for me via the passwd > command. Keep in mind, I'm very new, so if this is dumb, try not to > laugh: > >

Getting Perl to interact with passwd

2001-06-11 Thread Daniel Ames
Hi all, This was brought up before, but the archives didn't really answer my question. I'm trying to get my script to reset a password for me via the passwd command. Keep in mind, I'm very new, so if this is dumb, try not to laugh: #!/usr/bin/perl open(handle, "| passwd joeuser"); print handl

Trouble getting perl CGI script working

2001-05-23 Thread Cameron Malchow
I have a perl CGI script provided by Lancelot Securities in order to synchronize a username/password file. Whenever a new user signs up (this is to my understanding of how the script works by reading it, I have very little knowledge in perl, and by reading the files) lancelot runs the script by si