On 03/30/2015 11:42 AM, rakesh sharma wrote:
Hi all
Please suggest nice books to know perl interpreter. In depth books is that i am
looking for.
Thanks
Rakesh
Perl guts can be nice:
http://cpansearch.perl.org/src/RURBAN/illguts-0.49/index.html
http://perldoc.perl.org/perlguts.html
--Sam
t; search 'perl internal', will give you most of the result.
>
> *Extending and Embedding Perl* is the book you are looking for.
>
> On Mon, Mar 30, 2015 at 9:42 AM, rakesh sharma > wrote:
>
>> Hi all
>>
>> Please suggest nice books to know perl interpreter. In depth books is
>> that i am looking for.
>>
>> Thanks
>> Rakesh
>
>
>
Hi, rakesh,
search 'perl internal', will give you most of the result.
*Extending and Embedding Perl* is the book you are looking for.
On Mon, Mar 30, 2015 at 9:42 AM, rakesh sharma
wrote:
> Hi all
>
> Please suggest nice books to know perl interpreter. In depth books is
uggest nice books to know perl interpreter. In depth books is that i
> am looking for.
>
> Thanks
> Rakesh
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
On Mon, 30 Mar 2015 22:12:51 +0530
rakesh sharma wrote:
> Hi all
>
> Please suggest nice books to know perl interpreter. In depth books is
> that i am looking for.
>
> Thanks
> Rakesh
FYI: some useful Perl links.
• Official site <http://www.perl.org/>
• Beginners
Hi Rakesh,
On Mon, 30 Mar 2015 22:12:51 +0530
rakesh sharma wrote:
> Hi all
>
> Please suggest nice books to know perl interpreter. In depth books is that i
> am looking for.
>
are you interested in learning how to write code in the Perl 5 programming
language (using CPAN mod
Hi all
Please suggest nice books to know perl interpreter. In depth books is that i am
looking for.
Thanks
Rakesh
ever, you may need to learn something about Perl internals.
>
>
> I know some basics about XS and I've written some small modules to get
> access to C functions that aren't available in plain Perl.
>
> I've also successfully written my own small example program tha
and I've written some small modules to get
access to C functions that aren't available in plain Perl.
I've also successfully written my own small example program that calls a
perl script in an embedded interpreter.
What I'm missing is the glue between both worlds.
Is it poss
o perl.
>
> What I want to do is to create a function in C code and somehow export it to
> my embedded perl interpreter. Then I want to be able to call this C function
> from perl code.
>
> Can someone point me to a good example on how to do this?
>
> Thank you v
embedded perl interpreter. Then I want to be able to call this
C function from perl code.
Can someone point me to a good example on how to do this?
Thank you very much in advance.
Greetings,
Manuel
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail
Hi,
this is the output.
Use of uninitialized value $9 in concatenation (.) or string at
pg_delim2htm_01.pl line 89, <> line 1.
Use of uninitialized value $9 in concatenation (.) or string at
pg_delim2htm_01.pl line 89, <> line 4.
Use of uninitialized value $9 in concatenation (.) or string at
pg_
Hi,
Thank you Lesleyb, Shlomi, Rob.
I should have connected the <> in the output with the <> that I used to
get the stuff into the script in the first place but it made no
connection.
So perl gets better all the time!
And that knowledge enabled me to track down the error in the regex so we
are
[ 'lesleyb' wrote on Sat 22.Sep'12 at 9:22:09 +0100 ]
> On Sat, Sep 22, 2012 at 09:45:08AM +0200, Anne Wainwright wrote:
> > Hi,
> >
> > this is the output.
> >
> > Use of uninitialized value $9 in concatenation (.) or string at
> > pg_delim2htm_01.pl line 89, <> line 1.
> > Use of uninitialize
On 22/09/2012 08:45, Anne Wainwright wrote:
Hi,
this is the output.
Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl
line 89, <> line 1.
Use of uninitialized value $9 in concatenation (.) or string at pg_delim2htm_01.pl
line 89, <> line 4.
Use of uninitialize
Hi Anne,
On Sat, 22 Sep 2012 09:45:08 +0200
Anne Wainwright wrote:
> Hi,
>
> this is the output.
>
> Use of uninitialized value $9 in concatenation (.) or string at
> pg_delim2htm_01.pl line 89, <> line 1.
> Use of uninitialized value $9 in concatenation (.) or string at
> pg_delim2htm_01.pl l
On Sat, Sep 22, 2012 at 09:45:08AM +0200, Anne Wainwright wrote:
> Hi,
>
> this is the output.
>
> Use of uninitialized value $9 in concatenation (.) or string at
> pg_delim2htm_01.pl line 89, <> line 1.
> Use of uninitialized value $9 in concatenation (.) or string at
> pg_delim2htm_01.pl line 8
Hi,
this is the output.
Use of uninitialized value $9 in concatenation (.) or string at
pg_delim2htm_01.pl line 89, <> line 1.
Use of uninitialized value $9 in concatenation (.) or string at
pg_delim2htm_01.pl line 89, <> line 4.
Use of uninitialized value $9 in concatenation (.) or string at
pg_
> "MM" == Mike McClain writes:
>> INIT {
MM> This is the solution I needed.
MM> Absolutely a big help.
MM> Not only did you supply an explanation but a solution.
MM> Best answer possible.
not to rain on your parade but from your point of view INIT and BEGIN
are the same thing. th
On Fri, May 06, 2011 at 08:16:14AM +0100, Rob Dixon wrote:
> On 06/05/2011 01:21, Mike McClain wrote:
> >
> > Here's a simple example that illustrates the problem I've run into:
> As Uri says, initialising variables at the point of declaration is done
> at run time. This is from 'Programming Perl'
On 2011-05-06 02:21, Mike McClain wrote:
$fibs[$#fibs+1] = 2;
push @fibs, 2;
--
Ruud
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
) runs it acts as if it can't see $x, $y or @fibs.
> The second time it does yet the interpreter had to have seen $x, $y
> and @fibs in order to find the definition of show().
>
> I've grown accustomed to writing 'C' style code in Perl with main
> before th
s=0 1 1 2scalar @fibs = 4
MM> The first time show() runs it acts as if it can't see $x, $y or @fibs.
MM> The second time it does yet the interpreter had to have seen $x, $y
MM> and @fibs in order to find the definition of show().
MM> I've grown accustomed to
2;
}
show();
'
x= y= $#fibs=-1 fibs= scalar @fibs = 0
x=1 y=2 $#fibs=3fibs=0 1 1 2scalar @fibs = 4
The first time show() runs it acts as if it can't see $x, $y or @fibs.
The second time it does yet the interpreter had to have seen $x, $y
and @fibs
, Keith
Sent from my iPhone
On 2009/02/15, at 8:16, Kevin wrote:
Hi All,
I have a script that may be executed on multiple hosts. A troubling
issue is that the perl interpreter on each host is installed at
different
location such as /opt/perl/5.8.0/bin/perl, /opt/perl/5.8.5/bin/perl,
or /
bin
Hi All,
I have a script that may be executed on multiple hosts. A troubling
issue is that the perl interpreter on each host is installed at different
location such as /opt/perl/5.8.0/bin/perl, /opt/perl/5.8.5/bin/perl, or /
bin/perl. My question is: how can I make my script working on all of
On Thursday, Nov 20, 2003, at 11:25 US/Pacific, Jeff Kowalczyk wrote:
[..]
I'd like to open perl and execute a few commands interactively in the
console. I learn a lot in python this way, and I need to understand
some
perl code. Did this kind of thing ever get added to perl?
[..]
first off compli
On Thu, 2003-11-20 at 14:25, Jeff Kowalczyk wrote:
> I'd like to open perl and execute a few commands interactively in the
> console. I learn a lot in python this way, and I need to understand some
> perl code. Did this kind of thing ever get added to perl?
I assume you're talking about how you ca
From: Jeff Kowalczyk <[EMAIL PROTECTED]>
> I'd like to open perl and execute a few commands interactively in the
> console. I learn a lot in python this way, and I need to understand
> some perl code. Did this kind of thing ever get added to perl?
Apart from the "debug session" explained in the pr
Jeff Kowalczyk wrote:
> I'd like to open perl and execute a few commands interactively in the
> console. I learn a lot in python this way, and I need to understand some
> perl code. Did this kind of thing ever get added to perl?
yes but probably not in a sense that you expect it. the perl debugge
I'd like to open perl and execute a few commands interactively in the
console. I learn a lot in python this way, and I need to understand some
perl code. Did this kind of thing ever get added to perl?
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED
the script are being called like
/usr/local/bin/perl5.8.0/bin/perl -w /proj/xpto.pl
I need the "/usr/local/bin/perl5.8.0/bin/perl"
The usual path is for a older version in this case. The perl path is in a
database that I don't see and I don't want to pass the perl path to the
script. That will
From: "Fuchs, Christopher" <[EMAIL PROTECTED]>
> I have a perl application and I've got to install it on other people's
> windows based PCs. Is there a way of packaging the perl interpreter
> and the application along with the required cpan modules into a DLL
Hello,
I have a perl application and I've got to install it on other people's
windows
based PCs. Is there a way of packaging the perl interpreter and the
application along with the required cpan modules into a DLL? Alternatively,
is there an mechanism on windows (which I know li
run my perl program I get:
>
> bash: ./checkit.pl: bad interpreter: No such file or directory
>
> What does that mean?
>
> Thanks
> /Karin
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
on Thu, 31 Oct 2002 08:22:08 GMT, [EMAIL PROTECTED] (Karin
Friberg) wrote:
> When I run my perl program I get:
>
> bash: ./checkit.pl: bad interpreter: No such file or directory
>
> What does that mean?
Check your #! line at the top of your program. Does this point t
Hi there!
When I run my perl program I get:
bash: ./checkit.pl: bad interpreter: No such file or directory
What does that mean?
Thanks
/Karin
On Tue, 27 Aug 2002 00:14:17 -0700, [EMAIL PROTECTED] (Mark Goland)
wrote:
>Hi guys,
>
>I was just wondering is there a perl interpreter that will fit on one floppy
>disk ??
You need to make a bootable cd to hold all the libs.
Here are instructions for a method I use, which
I fin
You might have better luck just burning what you need to a CD.
-Original Message-
From: Mark Goland [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 27, 2002 12:14 AM
To: [EMAIL PROTECTED]
Subject: perl interpreter
Hi guys,
I was just wondering is there a perl interpreter that will
On Tue, Aug 27, 2002 at 12:14:17AM -0700, Mark Goland wrote:
> Hi guys,
>
> I was just wondering is there a perl interpreter that will fit on one floppy
> disk ??
The perl binary itself will, but you'll probably need various modules to
make it useful.
--
Paul Johnson - [EMAI
Hi guys,
I was just wondering is there a perl interpreter that will fit on one floppy
disk ??
mark
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Perl, no? Si estas usando Windows, lo
> > puede encontrar aqui:
> > http://www.activestate.com. Se llama ActivePerl.
> > Si estas usando UNIX, se
> > que lo puedes buscar en http://www.perl.org o
> > http://www.cpan.org. Ahi
> > tambien puedes encontrar mu
> Si estas usando UNIX, se
> que lo puedes buscar en http://www.perl.org o
> http://www.cpan.org. Ahi
> tambien puedes encontrar muchas "modules" para Perl.
No... i'm looking to write an interpreter in Perl
code, i download a perl code interpreter for Basic and
one for pr
ot;tutorials" y lecciones en el Internet.
Me falta la Argentina. Ahorita he olvidado mucho del Castellano y lo demas
que aprendia sobre ella, pero cuando yo era nino, vivia en Cerrillos acerca
de Salta.
-Original Message-
From: Omar Shariff
To: [EMAIL PROTECTED]
Sent: 7/22/02 8:
Hi, i'm new here and in perl... i want to do a
iterpreter for the university (like c) i found one for
basic and prolog, but i don't understand, can anyone
help me, with a little example or a web where i can
found information... (there isn't money for books!!!).
Thank you
PD: sorry me english, in
Matthias Staudinger asked:
>
> Can anybody tell me if - and how - it is possible
> to start my perl-scripts on computers without a
> perl interpreter, without an installed perl - on
> windows-computers of my coworkers?
>
If you mean "run Perl programs from Windows PCs
Hello Sascha,
Wednesday, August 01, 2001, Sascha Kersken <[EMAIL PROTECTED]> wrote:
SK> You just CAN'T.
SK> What you have to do is install a Perl interpreter on each computer you want
SK> to run Perl scripts on.
can not agree with you because of laziness.
("The thr
not strictly true, you can use activestates perl2exe or whatever its called
now to embed the interpreter into the script and make it an exe... file size
is at least 300 - 400k but it will do what you ask :)
remember, this is NOT machine compiled perl, its just fusing the two into
one
Hi!
You just CAN'T.
What you have to do is install a Perl interpreter on each computer you want
to run Perl scripts on.
The best - and most easily to install - distribution for Windows systems is
ActivePerl which can be downloaded at www.activestate.com
Sascha
--
>Von:
Sorry, I am an absolut beginner, started with perl on Saturday ;) !
Can anybody tell me if - and how - it is possible to start my perl-scripts on
computers without a perl interpreter, without an installed perl - on
windows-computers of my coworkers?
Thanks
Matthias
--
To unsubscribe
50 matches
Mail list logo