Re: Active Perl 5.6.1 (633) on Win2k (Sp 2) unlink is failing?

2003-07-11 Thread Jenda Krynicky
From: [EMAIL PROTECTED] It appears that the following unlink is failing on Win2k (Service Pack 3). It did work on Win 2k (sp2) Win NT 4.0. Have any one seen this? I am using network setup Active Perl 5.6.1 (Build 633) $unlink_ccpid = unlink($cc_ppid); exit (0); Maybe the file is

Virus alert: Sobig.E

2003-07-11 Thread Jim Schueler
Sorry for the off-topic message, but I received a virus that seems to have been sent to some of the other perl mailing lists. This virus, Sobig.E, was sent to me in a file named UNKNOWN_PARAMETER_VALUE.zip -Jim -- ___ ActivePerl mailing list [EMAIL

Kinda general question

2003-07-11 Thread Moreno, Javier (GXS, Softtek)
Title: Kinda general question Hi all, I am doing some functions and I am using use strict on each sub block. However, there are some global variables that I cannot tamper with at the moment. I found one and just enclosed it into its no strict 'vars' block. However I cannot do the same for

AW: Kinda general question

2003-07-11 Thread Müller J.,DP ITS,SMB,DA,extern
Javier wrote So my question is, if you declare a 'global' variable, will it go into package main? In other words, is the following correct? $GLOBAL = 'hi'; { use strict; print $::GLOBAL\n; } why don't you just use our to declare your Variable as global? the following works

Re: Kinda general question

2003-07-11 Thread Stephen Patterson
On 11 Jul 03, Moreno, Javier (GXS, Softtek) ([EMAIL PROTECTED]) wrote: I am doing some functions and I am using use strict on each sub block. However, there are some global variables that I cannot tamper with at the moment. I found one and just enclosed it into its no strict 'vars' block.

RE: Problem with path containing spaces

2003-07-11 Thread Richard Thomas
Hi, I use the use File::Glob ':glob' method for windows paths with spaces in. The variable that I pass into this function is read in from a configuration file and can be C:\Program Files (directory name) and can also be logs\app.log (specific filename). When I specify a directory with spaces

$ENV{'AUTH_USER'}

2003-07-11 Thread Administrador Internet | Intranet ESSAL S.A.
Hy Gurus in this lines while (($nombre, $valor) = each(%ENV)){ print P$nombre = $valor\n; } why cant i see the USER or the Host that is conecting to the Intranet. the host machine that has the intranet is: WinNT 4 SP 5 with Perl 5.6.1 René Morales Duarte Administrador Intranet | Internet

Re: Problem with path containing spaces

2003-07-11 Thread $Bill Luebkert
Richard Thomas wrote: Hi, I use the use File::Glob ':glob' method for windows paths with spaces in. The variable that I pass into this function is read in from a configuration file and can be C:\Program Files (directory name) and can also be logs\app.log (specific filename). When I

Re: $ENV{'AUTH_USER'}

2003-07-11 Thread $Bill Luebkert
Administrador Internet | Intranet ESSAL S.A. wrote: Hy Gurus in this lines while (($nombre, $valor) = each(%ENV)){ print P$nombre = $valor\n; } why cant i see the USER or the Host that is conecting to the Intranet. the host machine that has the intranet is: WinNT 4 SP 5 with Perl