RE: How to run -- some notes

2002-10-23 Thread shawn_milochik

I have Active Perl installed on Windows 2000, and to run the script, I only
need to type "script.pl".  "perl script.pl" works also, but isn't
necessary.  On a Windows NT machine I have found that, when using the 'at'
command to schedule a script, I can't use "perl script.pl" or it fails --
"script.pl" works, though.

Shawn




   

  [EMAIL PROTECTED] 

   To:  [EMAIL PROTECTED], 
[EMAIL PROTECTED] 
  10/23/2002 05:38 cc: 

  AM   bcc:

  Please respond   Subject: RE: How to run 

  to beau  

   

   





Hi -

1) get ActiveState perl at http://www.activestate.com/Products/ActivePerl/
click the download button at the upper left, follow the
instructions, use the defaults - easy, fast, simple.

2) normally use the extension .pl for perl scripts.

3) to run your script, open a command prompt and type

perl myscript.pl [arguments...]

ActiveState also has a mailing list for win32/ActivePerl
users.

Welcome to the wonderful world of Perl!

Aloha => Beau.

-Original Message-
From: Sent To [mailto:sento@;mail.com]
Sent: Tuesday, October 22, 2002 3:08 PM
To: [EMAIL PROTECTED]
Subject: How to run


Hi

How can I run perl scrip on windows?
Is ther any software I need to install and what file extension should i
use?
Thanks

regards
sentor
--
__
Sign-up for your own FREE Personalized E-mail at Mail.com
http://www.mail.com/?sr=signup


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








**
This e-mail and any files transmitted with it may contain 
confidential information and is intended solely for use by 
the individual to whom it is addressed.  If you received
this e-mail in error, please notify the sender, do not 
disclose its contents to others and delete it from your 
system.

**


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: How to run -- some notes

2002-10-23 Thread Beau E. Cox
Yea Shawn -

ActivePerl sets the windows file association to perl for
..pl files.

I don't know the "at" problem...

I stick to the perl script.pl format because I remember
having problems passing arguments to the script w/the
short form...never got around to finding out why.

Aloha => Beau.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:shawn_milochik@;godivachoc.com]
Sent: Wednesday, October 23, 2002 2:56 AM
To: [EMAIL PROTECTED]
Subject: RE: How to run -- some notes



I have Active Perl installed on Windows 2000, and to run the script, I only
need to type "script.pl".  "perl script.pl" works also, but isn't
necessary.  On a Windows NT machine I have found that, when using the 'at'
command to schedule a script, I can't use "perl script.pl" or it fails --
"script.pl" works, though.

Shawn





  [EMAIL PROTECTED]
   To:  [EMAIL PROTECTED],
[EMAIL PROTECTED]
  10/23/2002 05:38 cc:
  AM   bcc:
  Please respond   Subject: RE: How to run
  to beau






Hi -

1) get ActiveState perl at http://www.activestate.com/Products/ActivePerl/
click the download button at the upper left, follow the
instructions, use the defaults - easy, fast, simple.

2) normally use the extension .pl for perl scripts.

3) to run your script, open a command prompt and type

perl myscript.pl [arguments...]

ActiveState also has a mailing list for win32/ActivePerl
users.

Welcome to the wonderful world of Perl!

Aloha => Beau.

-Original Message-
From: Sent To [mailto:sento@;mail.com]
Sent: Tuesday, October 22, 2002 3:08 PM
To: [EMAIL PROTECTED]
Subject: How to run


Hi

How can I run perl scrip on windows?
Is ther any software I need to install and what file extension should i
use?
Thanks

regards
sentor
--
__
Sign-up for your own FREE Personalized E-mail at Mail.com
http://www.mail.com/?sr=signup


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]








**
This e-mail and any files transmitted with it may contain
confidential information and is intended solely for use by
the individual to whom it is addressed.  If you received
this e-mail in error, please notify the sender, do not
disclose its contents to others and delete it from your
system.

**


--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




Re: How to run -- some notes

2002-10-23 Thread Dave K
Hope this is helpful...
Setting file associations is done by ActivePerl but if you want to use
command line parameters:
go to
My Computer,
  View,
Options,
   File Types
 Edit the file type with the .pl extension,
Edit the 'Open' action
Include %1 %* so that the last portion of the line looks like
\perl.exe %1 %*
This will give you access to command line parameters

"Beau E. Cox" <[EMAIL PROTECTED]> wrote in message
news:HJENIAHJOBAICFNFJEAIKEMDCAAA.beau@;beaucox.com...
> Yea Shawn -
>
> ActivePerl sets the windows file association to perl for
> ..pl files.
>
> I don't know the "at" problem...
>
> I stick to the perl script.pl format because I remember
> having problems passing arguments to the script w/the
> short form...never got around to finding out why.
>
> Aloha => Beau.
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:shawn_milochik@;godivachoc.com]
> Sent: Wednesday, October 23, 2002 2:56 AM
> To: [EMAIL PROTECTED]
> Subject: RE: How to run -- some notes
>
>
>
> I have Active Perl installed on Windows 2000, and to run the script, I
only
> need to type "script.pl".  "perl script.pl" works also, but isn't
> necessary.  On a Windows NT machine I have found that, when using the 'at'
> command to schedule a script, I can't use "perl script.pl" or it fails --
> "script.pl" works, though.
>
> Shawn
>
>
>
>
>
>   [EMAIL PROTECTED]
>To:  [EMAIL PROTECTED],
> [EMAIL PROTECTED]
>   10/23/2002 05:38 cc:
>   AM   bcc:
>   Please respond   Subject: RE: How to run
>   to beau
>
>
>
>
>
>
> Hi -
>
> 1) get ActiveState perl at http://www.activestate.com/Products/ActivePerl/
> click the download button at the upper left, follow the
> instructions, use the defaults - easy, fast, simple.
>
> 2) normally use the extension .pl for perl scripts.
>
> 3) to run your script, open a command prompt and type
>
> perl myscript.pl [arguments...]
>
> ActiveState also has a mailing list for win32/ActivePerl
> users.
>
> Welcome to the wonderful world of Perl!
>
> Aloha => Beau.
>
> -Original Message-
> From: Sent To [mailto:sento@;mail.com]
> Sent: Tuesday, October 22, 2002 3:08 PM
> To: [EMAIL PROTECTED]
> Subject: How to run
>
>
> Hi
>
> How can I run perl scrip on windows?
> Is ther any software I need to install and what file extension should i
> use?
> Thanks
>
> regards
> sentor
> --
> __
> Sign-up for your own FREE Personalized E-mail at Mail.com
> http://www.mail.com/?sr=signup
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
>
>
>
> **
> This e-mail and any files transmitted with it may contain
> confidential information and is intended solely for use by
> the individual to whom it is addressed.  If you received
> this e-mail in error, please notify the sender, do not
> disclose its contents to others and delete it from your
> system.
>
> **
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




RE: How to run -- some notes

2002-10-23 Thread Beau E. Cox
too cool - thanks dave!

-Original Message-
From: Dave K [mailto:dkirol@;erols.com]
Sent: Wednesday, October 23, 2002 3:38 AM
To: [EMAIL PROTECTED]
Subject: Re: How to run -- some notes


Hope this is helpful...
Setting file associations is done by ActivePerl but if you want to use
command line parameters:
go to
My Computer,
  View,
Options,
   File Types
 Edit the file type with the .pl extension,
Edit the 'Open' action
Include %1 %* so that the last portion of the line looks like
\perl.exe %1 %*
This will give you access to command line parameters

"Beau E. Cox" <[EMAIL PROTECTED]> wrote in message
news:HJENIAHJOBAICFNFJEAIKEMDCAAA.beau@;beaucox.com...
> Yea Shawn -
>
> ActivePerl sets the windows file association to perl for
> ..pl files.
>
> I don't know the "at" problem...
>
> I stick to the perl script.pl format because I remember
> having problems passing arguments to the script w/the
> short form...never got around to finding out why.
>
> Aloha => Beau.
>
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:shawn_milochik@;godivachoc.com]
> Sent: Wednesday, October 23, 2002 2:56 AM
> To: [EMAIL PROTECTED]
> Subject: RE: How to run -- some notes
>
>
>
> I have Active Perl installed on Windows 2000, and to run the script, I
only
> need to type "script.pl".  "perl script.pl" works also, but isn't
> necessary.  On a Windows NT machine I have found that, when using the 'at'
> command to schedule a script, I can't use "perl script.pl" or it fails --
> "script.pl" works, though.
>
> Shawn
>
>
>
>
>
>   [EMAIL PROTECTED]
>To:  [EMAIL PROTECTED],
> [EMAIL PROTECTED]
>   10/23/2002 05:38 cc:
>   AM   bcc:
>   Please respond   Subject: RE: How to run
>   to beau
>
>
>
>
>
>
> Hi -
>
> 1) get ActiveState perl at http://www.activestate.com/Products/ActivePerl/
> click the download button at the upper left, follow the
> instructions, use the defaults - easy, fast, simple.
>
> 2) normally use the extension .pl for perl scripts.
>
> 3) to run your script, open a command prompt and type
>
> perl myscript.pl [arguments...]
>
> ActiveState also has a mailing list for win32/ActivePerl
> users.
>
> Welcome to the wonderful world of Perl!
>
> Aloha => Beau.
>
> -Original Message-
> From: Sent To [mailto:sento@;mail.com]
> Sent: Tuesday, October 22, 2002 3:08 PM
> To: [EMAIL PROTECTED]
> Subject: How to run
>
>
> Hi
>
> How can I run perl scrip on windows?
> Is ther any software I need to install and what file extension should i
> use?
> Thanks
>
> regards
> sentor
> --
> __
> Sign-up for your own FREE Personalized E-mail at Mail.com
> http://www.mail.com/?sr=signup
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
>
>
>
>
> **
> This e-mail and any files transmitted with it may contain
> confidential information and is intended solely for use by
> the individual to whom it is addressed.  If you received
> this e-mail in error, please notify the sender, do not
> disclose its contents to others and delete it from your
> system.
>
> **
>
>
> --
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>



--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]