RE: black box

2004-12-31 Thread Andrew Timberlake-Newell
Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? Have got several replies saying use wperl Another option: Win32::Process For instance, you might have your program look for a command line option, as in: my

RE: black box

2004-12-31 Thread Andrew Timberlake-Newell
6:59 PM To: 'Lasher, Brian' Cc: 'perl-win32-users@listserv.ActiveState.com' Subject: RE: black box Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? Have got several replies saying use wperl Another

RE: black box

2004-12-16 Thread Andy_Bach
Just a small point - the shebang on winx does help perl - it will use any command line options (e.g #!perl -Tw turns on taint and warnings) it finds in the shebang, regardless of the path. a Andy Bach, Sys. Mangler Internet: [EMAIL PROTECTED] VOICE: (608) 261-5738 FAX 264-5932 Call out

RE: black box

2004-12-16 Thread Lasher, Brian
Schuerzinger Cc: [EMAIL PROTECTED] Subject: Re: black box Ted Schuerzinger wrote: $Bill Luebkert graced perl with these words of wisdom: command prompt wperl perlscript.pl The shebang line version you're trying to do would require a separate file assoc of wperl to say .plw or some such. Isn't

Re: black box

2004-12-16 Thread $Bill Luebkert
Lasher, Brian wrote: Thanks for all the help. Wasn't aware that the shebang made no difference in windoze. As for file associations, seems like we've got file extension namespace pollution. .wpl on my pc is associated with windoze media player. Set it up gor .plw. Note that Perl still

RE: black box

2004-12-15 Thread Joe Discenza
Lasher, Brian wrote, on Wed 12/15/2004 14:38: Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? Probably one of a hundred replies: try wperl instead of perl. Good luck, Joe

RE: black box

2004-12-15 Thread Chris
-Original Message- From: Lasher, Brian Sent: Wednesday, December 15, 2004 2:38 PM Subject: black box Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? -brian --- When you

RE: black box

2004-12-15 Thread Lasher, Brian
) From: Ed Chester [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 2:00 PM To: Lasher, Brian; [EMAIL PROTECTED] Subject: RE: black box use wperl instead of perl they will behave the same on win32, except that wperl won't support any options

Re: black box

2004-12-15 Thread $Bill Luebkert
Lasher, Brian wrote: Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? Please post in plain text. Have you tried using wperl instead off perl ? -- ,-/- __ _ _ $Bill LuebkertMailto:[EMAIL

Re: black box

2004-12-15 Thread $Bill Luebkert
Lasher, Brian wrote: Have got several replies saying use wperl Modified: #!perl To #!wperl Doesn't work? am I not doing it right? command prompt wperl perlscript.pl The shebang line version you're trying to do would require a separate file assoc of wperl to say .plw or

RE: black box

2004-12-15 Thread Ed Chester
#!wperl the shebang ('sharp, bang') line should have the full path... ? #!/c:/perl/bin/wperl -w ed c -Original Message- From: Lasher, Brian [mailto:[EMAIL PROTECTED] Sent: 15 December 2004 21:02 To: Ed Chester; [EMAIL PROTECTED] Subject: RE: black box Have got several replies

Re: black box

2004-12-15 Thread Ted Schuerzinger
$Bill Luebkert graced perl with these words of wisdom: command prompt wperl perlscript.pl The shebang line version you're trying to do would require a separate file assoc of wperl to say .plw or some such. Isn't the command prompt part of the black box the original poster didn't want

Re: black box

2004-12-15 Thread $Bill Luebkert
Ted Schuerzinger wrote: $Bill Luebkert graced perl with these words of wisdom: command prompt wperl perlscript.pl The shebang line version you're trying to do would require a separate file assoc of wperl to say .plw or some such. Isn't the command prompt part of the black box

RE: black box

2004-12-15 Thread Mulley, Nikhil
of the directory of Script -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Lasher, BrianSent: Thursday, December 16, 2004 1:08 AMTo: [EMAIL PROTECTED]Subject: black box Is there any way to keep the black command-prompt looking box from

black box

2004-12-15 Thread Lasher, Brian
Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? -brian Brian Lasher Catalog DSP Product Engineering Best Practices and Yield Enhancement Team [EMAIL PROTECTED] 281-274-2913(W) 281-684-4699(C)

RE: black box

2004-12-15 Thread Ed Chester
, BrianSent: 15 December 2004 20:38To: [EMAIL PROTECTED]Subject: black box Is there any way to keep the black command-prompt looking box from popping up when executing perl script on win 32 platform? -brian Brian Lasher Catalog DSP Product Engineering Best Practices and Yield

Re: black box

2004-12-15 Thread Kester Allen
If you're using ActiveState Perl, an easy was is to use the wperl executable instead of the perl executable to run your scripts. Scripts you want to run w/o the dos box could have a .wpl extension instead of .pl, and you could associate .wpl with wperl. --Kester Allen On Wed, 15 Dec 2004

Re: black box

2004-12-15 Thread $Bill Luebkert
Ed Chester wrote: #!wperl the shebang ('sharp, bang') line should have the full path... ? That's (shell bang) unless you're from the UK. ;) #!/c:/perl/bin/wperl -w The shebang line isn't used by Windoze shells. You'd have to be running a UNIX type shell or webserver for the shebang to