[28577] in Perl-Users-Digest
Perl-Users Digest, Issue: 9941 Volume: 10
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Nov 8 09:05:57 2006
Date: Wed, 8 Nov 2006 06:05:05 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Wed, 8 Nov 2006 Volume: 10 Number: 9941
Today's topics:
Best or the-module-you-use to list installed Perl modul <ynl@nsparks.net>
Re: force IV to NV <nospam-abuse@ilyaz.org>
Generate HTML from a Windows Network Share <robgmatthews@gmail.com>
Re: Generate HTML from a Windows Network Share <josef.moellers@fujitsu-siemens.com>
Re: Help in regular expression <shafa.fahad@gmail.com>
how do you identify if a file is utf8 in perl <julian@ukonline.co.uk>
How to open a browser with perl ? <genuine.ashok@gmail.com>
Re: How to open a browser with perl ? <jurgenex@hotmail.com>
Re: How to open a browser with perl ? <john@castleamber.com>
How to reference memory address returned from Win32::AP <u8526505@gmail.com>
new CPAN modules on Wed Nov 8 2006 (Randal Schwartz)
Nmake Error Two Modules <jmw_misc@hotmail.com>
Re: Nmake Error Two Modules <sisyphus1@nomail.afraid.org>
Re: overloading and data driven <see.sig@rochester.rr.com>
perl exceptions and return value in finally block rusland@scn.ru
Re: process subregions on an image/matrix <alexxx.magni@gmail.com>
Re: Question on having the hash not butt plug my comput <nobull67@gmail.com>
Re: What is more detailled than $^O ? <ynl@nsparks.net>
What is the diff between PerlCE and Perl????????? <praveenkumar.nayak@gmail.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Wed, 8 Nov 2006 11:17:40 +0100
From: Yohan N Leder <ynl@nsparks.net>
Subject: Best or the-module-you-use to list installed Perl modules ?
Message-Id: <MPG.1fbbcd3399d7518e989900@news.tiscali.fr>
What's the best cgi Perl module to list installed Perl modules ? Or,
since "best" doesn't have a real sense : what's the module you use to
list all the installed module on the server ?
I've often used PerlDiver (1.1 to 2.33), but it doesn't work in all
circumstances (for example, it doesn't work, here, on a Debian and
Fedora servers).
------------------------------
Date: Wed, 8 Nov 2006 04:22:37 +0000 (UTC)
From: Ilya Zakharevich <nospam-abuse@ilyaz.org>
Subject: Re: force IV to NV
Message-Id: <eirm2d$2i12$1@agate.berkeley.edu>
[A complimentary Cc of this posting was sent to
Abigail
<abigail@abigail.be>], who wrote in article <slrnel0avv.rtp.abigail@alexandra.abigail.be>:
> There's no need to change an IV to an NV when adding two integers.
> But there is on division:
>
>
> $ perl -MDevel::Peek -e '$a = 1;$a/=1; Dump $a'
> SV = PVNV(0x8182828) at 0x817fed4
> REFCNT = 1
> FLAGS = (NOK,pNOK)
> IV = 1
> NV = 1
> PV = 0
a) There is no need to mutilate $a:
>perl -MDevel::Peek -we "$a = 1;(undef)=$a*1.5; Dump $a"
SV = PVNV(0x74c7c) at 0x589b8
REFCNT = 1
FLAGS = (IOK,NOK,pIOK,pNOK)
IV = 1
NV = 1
PV = 0
b) If one really NEEDS a particular field of a scalar to be present,
one uses some seriously broken Perl module.
Hope this help,
Ilya
------------------------------
Date: 8 Nov 2006 03:02:53 -0800
From: "rob" <robgmatthews@gmail.com>
Subject: Generate HTML from a Windows Network Share
Message-Id: <1162983773.293961.40020@m73g2000cwd.googlegroups.com>
Hello, I'm curious if anyone knows of a way to generate an HTML
document based on information gathered on a windows network share?
------------------------------
Date: Wed, 08 Nov 2006 13:32:08 +0100
From: Josef Moellers <josef.moellers@fujitsu-siemens.com>
Subject: Re: Generate HTML from a Windows Network Share
Message-Id: <eisiu8$edl$1@nntp.fujitsu-siemens.com>
rob wrote:
> Hello, I'm curious if anyone knows of a way to generate an HTML
> document based on information gathered on a windows network share?
>=20
What part are you having problems with:
- gathering information on a windows network share
or
- generate an HTML document
Where do you expect problems?
What have you tried so far? Where have you failed?
--=20
Josef M=F6llers (Pinguinpfleger bei FSC)
If failure had no penalty success would not be a prize
-- T. Pratchett
------------------------------
Date: 8 Nov 2006 04:05:27 -0800
From: "Kimi" <shafa.fahad@gmail.com>
Subject: Re: Help in regular expression
Message-Id: <1162987527.009619.27320@h54g2000cwb.googlegroups.com>
John W. Krahn wrote:
> Kimi wrote:
> >
> > I relatively new to perl and hence the regular expressions as well....
> >
> > Can somebody help me understanding this re syntax, To be precise i need
> > to know what and all pattern the below expression matches to
> >
> > if ($string =~ /^(ORA-[0-9]+):.*/ || $string =~ /.*[
> > ]+(ORA-[0-9]+):.*/ || $string =~ /^(Corrupt block)/)
>
> $string =~ /
> ^ # match at the beginning of $string
> ( # start capturing here
> ORA- # match the literal string 'ORA-'
> [0-9]+ # match one or more of the character in the range 0-9
> ) # end capturing
> : # match the literal string ':'
> .* # match zero or more of any character (except newline)
> /x
>
> $string =~ /
> .* # match zero or more of any character (except newline)
> [ ]+ # match one or more space character
> ( # start capturing here
> ORA- # match the literal string 'ORA-'
> [0-9]+ # match one or more of the character in the range 0-9
> ) # end capturing
> : # match the literal string ':'
> .* # match zero or more of any character (except newline)
> /x
>
> $string =~ /
> ^ # match at the beginning of $string
> ( # start capturing here
> Corrupt block # match the literal string 'Corrupt block'
> ) # end capturing
> /x
>
>
> John
> --
> Perl isn't a toolbox, but a small machine shop where you can special-order
> certain sorts of tools at low cost and in short order. -- Larry Wall
Hi need a help in adding code to match,
"aiowait timed out" from the string which has "Warning: aiowait timed
out has occured 10 times"
with appreciation,
Kimi
------------------------------
Date: 8 Nov 2006 05:52:53 -0800
From: "julian@ukonline.co.uk" <julian@ukonline.co.uk>
Subject: how do you identify if a file is utf8 in perl
Message-Id: <1162993973.682793.261780@i42g2000cwa.googlegroups.com>
how do you identify if a file is utf8 in perl
------------------------------
Date: 7 Nov 2006 23:36:50 -0800
From: "Ashok" <genuine.ashok@gmail.com>
Subject: How to open a browser with perl ?
Message-Id: <1162971410.487682.244530@m7g2000cwm.googlegroups.com>
Hi all,
I have been woring in perl for past 6 months. I need to open a IE
browser using perl scripts, and all the time when I run the script, the
browser shuld auto refresh. Can anyone help me how to open a browser
and how to make it auto refresh ?
If u have came across any modules to be used in cpan for this, let me
know that.
Ashok
------------------------------
Date: Wed, 08 Nov 2006 13:23:57 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: How to open a browser with perl ?
Message-Id: <NTk4h.4096$C57.4001@trndny05>
Ashok wrote:
> I have been woring in perl for past 6 months. I need to open a IE
> browser using perl scripts, and all the time when I run the script,
> the browser shuld auto refresh. Can anyone help me how to open a
> browser
Simple. Exactly the same way as you would call any other external program:
- system()
- backticks
- qx()
- exec()
- ...
and how to make it auto refresh ?
To my knowlegde there is no command line parameter or env var or other
option to force IE to auto refresh. It all depends on the document that you
load.
jue
------------------------------
Date: 8 Nov 2006 14:02:59 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: How to open a browser with perl ?
Message-Id: <Xns987551E28F043castleamber@130.133.1.4>
"Ashok" <genuine.ashok@gmail.com> wrote:
> Hi all,
> I have been woring in perl for past 6 months. I need to open a IE
> browser using perl scripts, and all the time when I run the script, the
> browser shuld auto refresh. Can anyone help me how to open a browser
> and how to make it auto refresh ?
> If u have came across any modules to be used in cpan for this, let me
> know that.
Maybe better to explain what you want to do, and why you want to refresh.
Sounds like a bot for ad fraud to me, but I love to be wrong on this.
If you need to refresh a page often to kick something into action (for
example a CGI script if you have no crontab access), you can do this from
Perl directly without a problem.
--
John Experienced Perl programmer: http://castleamber.com/
Perl help, tutorials, and examples: http://johnbokma.com/perl/
------------------------------
Date: 7 Nov 2006 21:41:22 -0800
From: "cyl" <u8526505@gmail.com>
Subject: How to reference memory address returned from Win32::API call
Message-Id: <1162964481.986287.124270@h54g2000cwb.googlegroups.com>
Below is my code to enumerate services. The returned buffer $lpServices
is an array of the structure ENUM_SERVICE_STATUS. After unpacking it, I
got the memory address of the variable lpServiceName which points to
somewhere in the buffer $lpServices. My problem is how do I reference
the address? Unlike a C program, I cannot reference that value
directly. What should I do?
typedef struct _SERVICE_STATUS {
DWORD dwServiceType;
DWORD dwCurrentState;
DWORD dwControlsAccepted;
DWORD dwWin32ExitCode;
DWORD dwServiceSpecificExitCode;
DWORD dwCheckPoint;
DWORD dwWaitHint;
} SERVICE_STATUS;
typedef struct _ENUM_SERVICE_STATUS {
LPTSTR lpServiceName;
LPTSTR lpDisplayName;
SERVICE_STATUS ServiceStatus;
} ENUM_SERVICE_STATUS;
---CODE---
use Win32::API;
my $fnOpenSCManager = Win32::API->new('Advapi32.dll', 'OpenSCManager',
'PPI', 'I');
my $fnEnumServicesStatus = Win32::API->new('Advapi32.dll',
'EnumServicesStatus', 'IIIPIPPP', 'I');
my $hSCManager = $fnOpenSCManager->Call(0,0,0x000f003f);
die unless $hSCManager;
my $cbBufSize = 4;
my $pcbBytesNeeded = pack("N",0);
my $lpServicesReturned = pack("N",0);
my $lpResumeHandle = pack("N",0);
my @Services;
@Services[0 .. 36*$cbBufSize] = 0;
my $lpServices = pack("N*",@Services);
my $ret = $fnEnumServicesStatus->Call( $hSCManager,
0x3B, #SERVICE_DRIVER |
SERVICE_WIN32
0x3, #SERVICE_STATE_ALL
$lpServices,
36*$cbBufSize,
$pcbBytesNeeded,
$lpServicesReturned,
$lpResumeHandle
);
------------------------------
Date: Wed, 8 Nov 2006 05:42:11 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Wed Nov 8 2006
Message-Id: <J8ED6B.K0v@zorch.sf-bay.org>
The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN). You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.
Amce-CNA-0.061
http://search.cpan.org/~rjbs/Amce-CNA-0.061/
a moer tolernat verison of mehtod location
----
AxKit-App-TABOO-0.5
http://search.cpan.org/~kjetilk/AxKit-App-TABOO-0.5/
Object Oriented Publishing Framework for AxKit
----
CGI-Compress-Gzip-0.22
http://search.cpan.org/~clotho/CGI-Compress-Gzip-0.22/
CGI with automatically compressed output
----
CGI-FormBuilder-Source-YAML-1.0.4
http://search.cpan.org/~markle/CGI-FormBuilder-Source-YAML-1.0.4/
Initialize FormBuilder from YAML file
----
CPAN-Reporter-0.32
http://search.cpan.org/~dagolden/CPAN-Reporter-0.32/
Provides Test::Reporter support for CPAN.pm
----
CPAN-Reporter-0.33
http://search.cpan.org/~dagolden/CPAN-Reporter-0.33/
Provides Test::Reporter support for CPAN.pm
----
Catalyst-Manual-5.700401
http://search.cpan.org/~jrockway/Catalyst-Manual-5.700401/
pacakge holding the Catalyst developer's manual and tutorial
----
Catalyst-Runtime-5.7005
http://search.cpan.org/~mramberg/Catalyst-Runtime-5.7005/
Catalyst Runtime version
----
Class-Accessor-Grouped-0.03
http://search.cpan.org/~claco/Class-Accessor-Grouped-0.03/
Lets you build groups of accessors
----
Coro-2.5
http://search.cpan.org/~mlehmann/Coro-2.5/
coroutine process abstraction
----
Crossfire-0.95
http://search.cpan.org/~mlehmann/Crossfire-0.95/
Crossfire maphandling
----
ExtUtils-MY_Metafile-0.05
http://search.cpan.org/~hio/ExtUtils-MY_Metafile-0.05/
META.yml customize with ExtUtil::MakeMaker 1
----
ExtUtils-MY_Metafile-0.06
http://search.cpan.org/~hio/ExtUtils-MY_Metafile-0.06/
META.yml customize with ExtUtil::MakeMaker 1
----
ExtUtils-MY_Metafile-0.07
http://search.cpan.org/~hio/ExtUtils-MY_Metafile-0.07/
META.yml customize with ExtUtil::MakeMaker 1
----
File-Mork-0.3
http://search.cpan.org/~simonw/File-Mork-0.3/
a module to read Mozilla URL history files
----
Geo-Coordinates-Converter-0.01
http://search.cpan.org/~yappo/Geo-Coordinates-Converter-0.01/
simple converter of geo coordinates
----
Geo-Coordinates-Converter-0.02
http://search.cpan.org/~yappo/Geo-Coordinates-Converter-0.02/
simple converter of geo coordinates
----
HTML-Diff-0.56
http://search.cpan.org/~ezrakilty/HTML-Diff-0.56/
----
HTML-Diff-0.561
http://search.cpan.org/~ezrakilty/HTML-Diff-0.561/
----
HTML-TagCloud-0.34
http://search.cpan.org/~lbrocard/HTML-TagCloud-0.34/
Generate An HTML Tag Cloud
----
Mail-QmailSend-MultilogParser-0.03
http://search.cpan.org/~masahito/Mail-QmailSend-MultilogParser-0.03/
Parse qmail-send multilog files
----
Module-ScanDeps-0.69
http://search.cpan.org/~smueller/Module-ScanDeps-0.69/
Recursively scan Perl code for dependencies
----
ParaDNS-1.1
http://search.cpan.org/~msergeant/ParaDNS-1.1/
a DNS lookup class for the Danga::Socket framework
----
Perl-Critic-Lax-0.002
http://search.cpan.org/~rjbs/Perl-Critic-Lax-0.002/
----
Perl-Critic-Lax-0.003
http://search.cpan.org/~rjbs/Perl-Critic-Lax-0.003/
----
Rose-DB-0.730
http://search.cpan.org/~jsiracusa/Rose-DB-0.730/
A DBI wrapper and abstraction layer.
----
Rose-HTML-Objects-0.542
http://search.cpan.org/~jsiracusa/Rose-HTML-Objects-0.542/
Object-oriented interfaces for HTML.
----
Sledge-View-0.07
http://search.cpan.org/~tokuhirom/Sledge-View-0.07/
abstract base class for Sledge's view(EXPERIMENTAL!!)
----
Term-Size-Perl-0.0201
http://search.cpan.org/~ferreira/Term-Size-Perl-0.0201/
Perl extension for retrieving terminal size (Perl version)
----
Term-Size-Win32-0.207
http://search.cpan.org/~ferreira/Term-Size-Win32-0.207/
Perl extension for retrieving terminal size (Win32 version)
----
Text-Restructured-0.003019
http://search.cpan.org/~nodine/Text-Restructured-0.003019/
----
Tripletail-0.20
http://search.cpan.org/~hio/Tripletail-0.20/
Tripletail, Framework for Japanese Web Application
----
WWW-Translate-interNOSTRUM-0.02
http://search.cpan.org/~enell/WWW-Translate-interNOSTRUM-0.02/
Catalan < > Spanish machine translation
----
XML-Rules-0.05
http://search.cpan.org/~jenda/XML-Rules-0.05/
parse XML & process tags by rules starting from leaves
----
tidyview-1.12
http://search.cpan.org/~leif/tidyview-1.12/
a previewer for the effects of perltidy's plethora of options
If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.
This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
http://www.stonehenge.com/merlyn/LinuxMag/col82.html
print "Just another Perl hacker," # the original
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: 7 Nov 2006 21:12:30 -0800
From: "Mike" <jmw_misc@hotmail.com>
Subject: Nmake Error Two Modules
Message-Id: <1162962750.276853.233370@i42g2000cwa.googlegroups.com>
Hi,
I have written two modules with the following structure
Sta::Wf
Sta::Txt
I have a Makefile with the follwing DIR command
'DIR' => [ qw( Sta/Txt Sta/Wf )],
After comiling the first module, i get the following error after
apparently trying to cd back
cd ..
NMAKE : fatal error U1077: 'cd' : return code '0x1'
Stop.
If i remove one of the directories, i dont get an error, but the last
line is also
cd ..
The compiles work, if done seperately.
I am on WinXP, Activestate perl 5.8.8 build 8.19 COmpiler i am using is
gcc.
Thanks
Mike
------------------------------
Date: Wed, 8 Nov 2006 18:38:31 +1100
From: "Sisyphus" <sisyphus1@nomail.afraid.org>
Subject: Re: Nmake Error Two Modules
Message-Id: <45518aa0$0$24796$afc38c87@news.optusnet.com.au>
"Mike" <jmw_misc@hotmail.com> wrote in message
news:1162962750.276853.233370@i42g2000cwa.googlegroups.com...
> Hi,
> I have written two modules with the following structure
>
> Sta::Wf
> Sta::Txt
>
> I have a Makefile with the follwing DIR command
> 'DIR' => [ qw( Sta/Txt Sta/Wf )],
>
Are you sure you need to include that ''DIR => ...' entry ? (What happens if
you remove it ?).
See, for example the libwin source package (
http://search.cpan.org/~jdb/libwin32-0.26/ ), which contains a number of
modules and Makefile.PL's in various subdirectories - all of which get built
by simply running the top level Makefile.PL - without any need for a "DIR =>
.." entry in that top level Makefile.PL.
Cheers,
Rob
------------------------------
Date: Wed, 08 Nov 2006 02:56:33 GMT
From: Bob Walton <see.sig@rochester.rr.com>
Subject: Re: overloading and data driven
Message-Id: <BHb4h.8029$xw1.2577@twister.nyroc.rr.com>
bpatton wrote:
> I'm looking for some method that will allot the data to choose the
> function, not have a function decide if it is right for the data. I
> know this sounds very confusing, but I'll try and explain.
...
Your submission appears to have no Perl content. You might have better
luck with your topic on a newsgroup better suited to it. This newsgroup
is for the discussion of Perl.
--
Bob Walton
Email: http://bwalton.com/cgi-bin/emailbob.pl
------------------------------
Date: 7 Nov 2006 19:26:39 -0800
From: rusland@scn.ru
Subject: perl exceptions and return value in finally block
Message-Id: <1162956398.991736.311180@m73g2000cwd.googlegroups.com>
Hello !
I need to know return value from try block in finally block.
For example, I have code like this
try {
code 1...
return x1 if ...
code 2...
return x2 if ...
etc...
}
finally {
my $ret = $how_to_get_return_value_from_try_block; #?
};
So finally block not only for exception processing, but also
for processing of return code from try block.
Is any build into perl mechanisms to let this value know
in finally block? I study man page of Error.pm and not found
any such possibility.
------------------------------
Date: 8 Nov 2006 00:27:44 -0800
From: "alexxx.magni@gmail.com" <alexxx.magni@gmail.com>
Subject: Re: process subregions on an image/matrix
Message-Id: <1162974464.909659.223810@k70g2000cwa.googlegroups.com>
now I got it - crystal clear!
thanks a lot
Alessandro
xhoster@gmail.com ha scritto:
> "alexxx.magni@gmail.com" <alexxx.magni@gmail.com> wrote:
> > thank you for your help!
> > Sadly - I'm not a Perl guru at all - it's not clear to me how it works:
> > 1st of all, the calls to "push @stack, $x-1,$y;": I believed that push
> > wanted just 2 arguments ( push ARRAY, LIST: This function treats
> > ARRAY as a stack and pushes the values of LIST onto the end of ARRAY
> > etc etc)
>
> The 2nd argument is a list, which means it can look like more than one
> argument. push @x, 1, 2 pushes the list (1,2) unto @x. It is the same
> as push @x,1; push @x,2;
>
> > 2nd, what's the use of $c, continuously updated?
>
> I don't know, I just carried that over from your code. I guess it keeps
> track of the size of the "splotch"
>
>
> > 3rd (and last!) what is there in @stack?
>
> flattened Pairs of x,y coordinates. It might be more "perlish" for
> @stack to have arrayrefs, each one to an two-element array. But that takes
> more memory and probably is slower than the flattened list.
>
> > The matrix indices? It's not
> > clear what happens to @stack, since it is sometimes push-ed, but never
> > pop-ped, so how can it be exhausted?
>
> The code:
> my ($x,$y)=splice @stack,0,2;
>
> Is equivalent to:
> my $x=shift @stack;
> my $y=shift @stack;
>
> (Which means I used a queue rather than a stack. It shouldn't change the
> outcome, just the order of processing. To use a stack, you would
> instead use "my ($x,$y)=splice @stack, -2, 2;")
>
> Xho
>
> --
> -------------------- http://NewsReader.Com/ --------------------
> Usenet Newsgroup Service $9.95/Month 30GB
------------------------------
Date: 8 Nov 2006 05:34:27 -0800
From: "Brian McCauley" <nobull67@gmail.com>
Subject: Re: Question on having the hash not butt plug my computers memory
Message-Id: <1162992867.151614.197860@i42g2000cwa.googlegroups.com>
On Nov 7, 3:53 am, "grocery_stocker" <cdal...@gmail.com> wrote:
> Brian McCauley wrote:
> > On Nov 5, 6:27 pm, "grocery_stocker" <cdal...@gmail.com> wrote:
> > > Given the following:
>
> > [ object implementation ]
>
> > > Okay, if modified the code to have something like:
>
> > [ slightly different implementation ]
>
> > > Would I still be creating more memory each time I invoked a new
> > > instance of the object?
>
> > Er, creating instanced of objects that store data will always occupy
> > memory.
>
> > What was your real question?
> If I used gensym (via the Symbol package), then does each instance of
> the object take up more memory. Say I create one object that takes up 3
> things of memory via gensym. If I create another object via gensym,
> would it create another three things of memory on top of the other
> three things of memory (for a total of 6 things) like what an anonymous
> hash would.
Er, yes. All other things being equal, representing your object as a
GLOB containing a given HASH will occupy more memory than just
representing your object as the HASH directly.
------------------------------
Date: Wed, 8 Nov 2006 11:08:41 +0100
From: Yohan N Leder <ynl@nsparks.net>
Subject: Re: What is more detailled than $^O ?
Message-Id: <MPG.1fbbcb12e9f24cd9898ff@news.tiscali.fr>
In article <slrnel25f3.rtp.abigail@alexandra.abigail.be>,
abigail@abigail.be says...
> Yohan N Leder (ynl@nsparks.net) wrote on MMMMDCCCXVI September MCMXCIII
> in <URL:news:MPG.1fbaedff61007c7a9898fc@news.tiscali.fr>:
> -:
> -: So, my question remains the same : how to check what's the current linux
> -: distribution from a cgi Perl script ? Say, to begin and to point a
> -: concrete case : how to distinguish if a linux is a Debian/Ubuntu or a
> -: RedHat/Fedora ?
>
>
> Why don't you ask this in the Python group, and report back how they
> do it. Then we'll translate the Python code to Perl code....
>
> This isn't really a Perl question, is it?
>
>
> Abigail
>
If you've read the thread, you've seen it's solved now
------------------------------
Date: 8 Nov 2006 05:56:34 -0800
From: "Paviii" <praveenkumar.nayak@gmail.com>
Subject: What is the diff between PerlCE and Perl?????????
Message-Id: <1162994194.638974.12620@e3g2000cwe.googlegroups.com>
Hi,
I want to know is there any difference between PerlCE and Perl???
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V10 Issue 9941
***************************************