Different releases of Perl for Win

2001-05-29 Thread Joel Divekar
Hi All I have been using Activestate Perl and I am very happy with it, but from the time I read that there are different releases of perl I want to try them. Actually I do all the development on my system (win2k) using Activestate Perl and then run them on our Linux servers. Can any body give

Re: Problem with NET::PING

2001-05-29 Thread Peter Scott
[Distribution trimmed to the list I belong to.] At 11:09 AM 5/30/01 +0530, VeeraRaju_Mareddi wrote: >Dear All >I have a small with NET::PING.I hope its working by following command. >USE NET::PING; >But I am Not able to check remote connectivity of a host ("HOTNT002") >through this NET function..

Problem with NET::PING

2001-05-29 Thread VeeraRaju_Mareddi
Dear All I have a small with NET::PING.I hope its working by following command. USE NET::PING; But I am Not able to check remote connectivity of a host ("HOTNT002") through this NET function...I am sure its reachable by system ping command(Windows NT 4.0).. My Perl Code is given Below: use net:

Binary and ASCII

2001-05-29 Thread Cameron Malchow
In unix, specifically OS X, if you have a perl program that is either binary or ascii how can you convert it to the opposite format? Thanks, Cam -- Cameron Malchow [EMAIL PROTECTED] http://mybliss.gq.nu ³Before giving anyone a piece of your mind, make sure you have enough to spare² - Anon.

How to install DBI

2001-05-29 Thread prasoeu
Hi, Somebody please tell me how to install perl DBI or mysql DBI, I have download the modules. Thanks you, Prasoeu.

Re: Checking DOS timestamps

2001-05-29 Thread Me
> My question is where do I get started Try perldoc -q timestamp In general: perldoc -q That should help you get started.

Re: Shelling PERL or is it PERLing Shell

2001-05-29 Thread Jeff Pinyan
On May 29, George Balogi said: >#!D:perl/bin/ -w >cut -f3,5 -d"|" try You appear to be writing shell code in Perl. Perl is not shell, and vice-versa. Furthermore, cut isn't implemented in DOS (to my knowledge). You need to basically write this as Perl code. Here are some helpful hints: *

Shelling PERL or is it PERLing Shell

2001-05-29 Thread George Balogi
I have written a lot of UNIX Shell programs in the past because they are such an effective/efficient way to get things done for a non-programmer like me. When I looked into PERL and found all those commands like grep, cut, etc. documented ... I thought I'd finally found a way to '...stand on the

Re: How do I....

2001-05-29 Thread Luinrandir Hernson
Thanks Peter C. I know about the .pl association with active perl... thats working I'm set up on the web server and am currently running a perl program on my web page. My server is Unix type. (EXCITEMENT!!!) I know what the "shebang" line is and means!!! WahWho! Let you know more tomorrow Th

Checking DOS timestamps

2001-05-29 Thread Steve
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I am trying to find a solution to a problem I have while in plain old DOS. I have a batch file that cleans out the c:\windows\temp directory upon start up. I would like to make it all automated with no user intervention and that is where I run into

On Beginners' Mindsets, Part I

2001-05-29 Thread Peter Scott
Some thoughts have come to mind while reading some of the beginners' postings. I'll attempt to explain some of them here. If they appear to be useful, I may come out with more. None of this is in reaction to any posting in particular, there's no need for anyone to feel this is personal. Som

Re: use strict / explicit packages

2001-05-29 Thread Me
> So by way of example what do I need > to add to my code so I can use the Strict Pragma? Strictly speaking, just use strict; Beyond that, just note the error messages that adding this generates, and go from there. > I take it that this is considered bad programing > style or is just out d

RE: use strict / explicit packages

2001-05-29 Thread David Gilden
Did I touch a nerve here or what? Ge, all of this totally is confusing me, So you know where I am coming from, I'm taking a second on-line CGI/PERL class that leaves a lot to be desired (if anyone knows a good up-todate on-line class, please let me know!) I will move up to learning CGI.pm, b

Re: run perl in Win 2000 ?

2001-05-29 Thread David H. Adler
On Tue, May 29, 2001 at 01:02:58PM +0200, Aaron Craig wrote: > > I end up using #! perl out of habit, even if I don't end up using > switches. Of course, another good reason to put a shebang line in a windows perl program is for portability. dha -- David H. Adler - <[EMAIL PROTECTED]> - http:

RE: How do I....

2001-05-29 Thread Peter Cornelius
You might start by reading some of the docs that come with ActiveState. They have some details in there about things like adding Perl to your path and creating an association to Perl for files with a .pl extension. This makes things easier than having to type c:/path/to/Perl before every script c

Re: Perl Certifications and some help

2001-05-29 Thread Kevin Meltzer
FYI.. some thoughts on Perl Certification by Larry (http://lwn.net/2001/features/LarryWall/) CL: Some people seem to see the need for Perl certification. What do you think? LW: I think someone else can do that :-) I'm not going to tell people whether they're certified or not. My approach to lan

Re: How do I....

2001-05-29 Thread Luinrandir Hernson
OK I just installed active perl 521... restarted computer. can i now run a perl program by writing the code and calling if from an html? all off line??? Will I have to change the code when I upload it to my server? do i change the #!/usr/bin/perl line in windows to reflect the location of per

RE: use strict / explicit packages

2001-05-29 Thread Paul
--- "Brett W. McCoy" <[EMAIL PROTECTED]> wrote: > > Not to correct those smarter and more knowledgeable, I'd like to > > call a rephrase on that one. =o) > > my() makes a variable lexical, meaning it isn't in any package. > > packages equate to namespaces, which mean little or nothing to > > lexi

Re: How do I....

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Me wrote: > While I wholeheartedly encourage exploration > of alternative OSes such as linux or the BSDs, > you have some less radical choices: > > http://www.activestate.com/. > perl for windows. > > http://cygwin.com > unix for windows. And CygWin includes a distribution o

Re: How do I....

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Luinrandir Hernson wrote: > I am dedicating a PC to internet only, including perl. I only know > about windows. Is there a platform/OS like (maybe red hat???) that i > can put on that PC and still run my windows netscape and run perl on > too? I want to make the PC perl frien

RE: use strict / explicit packages

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Paul wrote: > > %FORM_DATA (which I am guessing is defined and/or created in > > libcgi2.pl) isn't explicitly put into a package > > (which you correctly do with the $key scalar, using 'my'). > > Not to correct those smarter and more knowledgeable, I'd like to call a > rephra

Re: How do I....

2001-05-29 Thread Me
> [perl/unix/netscape options for windows user] While I wholeheartedly encourage exploration of alternative OSes such as linux or the BSDs, you have some less radical choices: http://www.activestate.com/. perl for windows. http://cygwin.com unix for windows.

Re: Simple question

2001-05-29 Thread Antonio Vasconcelos
At 17:25 2001.05.29 -0400, [EMAIL PROTECTED] wrote: >Hi All, > I am working on the following output. > >* /ebppvobstore/vobs/Core /ebppvobstore/vobs/aci.vbs public >* /ebppvobstore/vobs/UCMCQ /ebppvobstore/vobs/UCMCQ.vbs public (ucmvob) > /ebppvobstore/vobs/Comp_Care /ebppvobstore/vobs/C

Re: Simple question

2001-05-29 Thread Carl Rogers
Not 100% sure, but $check[0] will never equal " " due to your split command.. At 05:25 PM 5/29/2001 -0400, [EMAIL PROTECTED] wrote: >Hi All, > I am working on the following output. > >* /ebppvobstore/vobs/Core /ebppvobstore/vobs/aci.vbs public >* /ebppvobstore/vobs/UCMCQ /ebppvobstore/vo

Re: Simple question

2001-05-29 Thread Walt Mankowski
On Tue, May 29, 2001 at 05:25:18PM -0400, [EMAIL PROTECTED] wrote: > > > Hi All, > I am working on the following output. > > * /ebppvobstore/vobs/Core /ebppvobstore/vobs/aci.vbs public > * /ebppvobstore/vobs/UCMCQ /ebppvobstore/vobs/UCMCQ.vbs public (ucmvob) > /ebppvobstore/vobs/Comp_Ca

How do I....

2001-05-29 Thread Luinrandir Hernson
I am dedicating a PC to internet only, including perl. I only know about windows. Is there a platform/OS like (maybe red hat???) that i can put on that PC and still run my windows netscape and run perl on too? I want to make the PC perl friendly... or can I run unix on it? Where do I find it? a

RE: Simple question

2001-05-29 Thread Paul
--- Peter Cornelius <[EMAIL PROTECTED]> wrote: > Dooh! Youre never gonna have a space here. You split on all spaces > so they were consumed. I think you want '' instead. > Or maybe ($check[0] eq '*') > if it's really the '*' you're interested in. Or if simple is clean enough in this case, ju

RE: use strict / explicit packages

2001-05-29 Thread Paul
--- "Brett W. McCoy" <[EMAIL PROTECTED]> wrote: > > Line 9: Global symbol "FORM_DATA" requires explicit package name. > > How can I avoid the above warning? > > . . . > > %FORM_DATA (which I am guessing is defined and/or created in > libcgi2.pl) isn't explicitly put into a package > (which you co

RE: Simple question

2001-05-29 Thread Peter Cornelius
> I am working on the following output. > > * /ebppvobstore/vobs/Core /ebppvobstore/vobs/aci.vbs public > * /ebppvobstore/vobs/UCMCQ /ebppvobstore/vobs/UCMCQ.vbs > public (ucmvob) > /ebppvobstore/vobs/Comp_Care > /ebppvobstore/vobs/Comp_Care.vbs/ public The above is what comes out of `

Simple question

2001-05-29 Thread Kailash . Subramanian
Hi All, I am working on the following output. * /ebppvobstore/vobs/Core /ebppvobstore/vobs/aci.vbs public * /ebppvobstore/vobs/UCMCQ /ebppvobstore/vobs/UCMCQ.vbs public (ucmvob) /ebppvobstore/vobs/Comp_Care /ebppvobstore/vobs/Comp_Care.vbs/ public I want to check for the asterisks and

RE: use strict / explicit packages

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, David Gilden wrote: > After adding: > ' use strict; ' > and am now getting several warnings.. > > In my library I have %FORM_DATA declared, > > File "hd:Perl:Cgi class:useractive:guest book:guestin.pl"; > Line 9: Global symbol "FORM_DATA" requires explicit package name. > >

RE: use strict / explicit packages

2001-05-29 Thread Peter Cline
When using strict, you must make sure all of your variables are declared within the proper scope. This means that all variables must either be made lexical, by using my (restricts scope to current code block), fully qualified using a package name (i.e. $package::varname), or declared as local

RE: use strict / explicit packages

2001-05-29 Thread Morbus Iff
>I am using MacPerl here. Good! I love seeing Mac people learning Perl. >Line 9: Global symbol "FORM_DATA" requires explicit package name. In this case, you correctly localized the $key that you were using, but not the actual %FORM_DATA itself. Much like you did "my $key", simply add anoth

RE: Perl Certifications and some help

2001-05-29 Thread King, Jason
Elaine -HFB- Ashton wrote .. >King, Jason [[EMAIL PROTECTED]] quoth: >*>Sanchit Bhatnagar writes .. >*> >*>> Is there something like a "Perl Certified Professional" or >*>>does there exists some other credible certification you can >*>>get for perl. >*> >*>competency > >Yes, well, how does one

RE: use strict / explicit packages

2001-05-29 Thread David Gilden
Hello, I am using MacPerl here. After adding: ' use strict; ' and am now getting several warnings.. In my library I have %FORM_DATA declared, File "hd:Perl:Cgi class:useractive:guest book:guestin.pl"; Line 9: Global symbol "FORM_DATA" requires explicit package name. How can I avoid the ab

Re: Fileposting

2001-05-29 Thread Peter Scott
[back to the list] At 10:24 PM 5/29/01 +, you wrote: >But i have already programmed a Guestbook, and a Password protection for a >Webcam. Also i have programmed a color Voting Program fpr my Homepage, and a >program that shows the stats of the votes. Now I'm working at a Site where >singles c

Re: substitution problem

2001-05-29 Thread Jeff Pinyan
On May 29, Me said: >If you will allow perl to make use of temporary files >behind the scenes (which is normally perfectly ok), >Cookbook recipe 7.9 is a whole heck of a lot >simpler. As a command line one liner: > >perl -pie 's/a/p/g' try.txt foo.txt > >will go thru files try.txt and foo.txt

Re: substitution problem

2001-05-29 Thread Me
Cookbook recipe 7.10, as quoted by JJ, has the virtue that it does not use a temporary file. If you will allow perl to make use of temporary files behind the scenes (which is normally perfectly ok), Cookbook recipe 7.9 is a whole heck of a lot simpler. As a command line one liner: perl -pie

Re: substitution problem

2001-05-29 Thread prachi shroff
Thanks! The method you suggested works, though it is not SIMPLE AND SWEET!! :-) Thanks, anyways. Prachi Original Message Follows From: "J. J. Horner" <[EMAIL PROTECTED]> To: prachi shroff <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: substitution problem Date: Tue, 29 May

Re: substitution problem

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, prachi shroff wrote: > I am having problems using the "s///" operator for substitution in of a > particular pattern in a specified file. > For eg. > > open(TRY,"+ while() > { > $_ =~ s/a/p/g; > } This does nothing to your file. You need to write your data back out to

Re: substitution problem

2001-05-29 Thread Me
> I am having problems using the "s///" operator for substitution in of a > particular pattern in a specified file. > For eg. > > open(TRY,"+ while() > { > $_ =~ s/a/p/g; > } > > Is this the right way of doing it? And with what access mode shall I open > the file ( >> or +> or +< ) ? And is

Re: substitution problem

2001-05-29 Thread J. J. Horner
Is there any reason you chose not to do it this way: # From Perl Cookbook: open(TRY,"+< try.txt") or die "Couldn't open try.txt: $!\n"; my @lines =# Slurp all lines into an array. foreach my $line (@lines) { # Iterate

Re: How to delete an element in array?

2001-05-29 Thread Nic LAWRENCE
Ignore me if i'm talking poo, (especially since I didn't see the original message),... but surely splice() would be best suited for working with an ARRAY, but you all seem to be talking about hashes... sooo - Original Message - From: "Brett W. McCoy" <[EMAIL PROTECTED]> To: "Walt Ma

Re: How to delete an element in array?

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Walt Mankowski wrote: > On Tue, May 29, 2001 at 11:59:18AM -0700, Randal L. Schwartz wrote: > > > "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: > > > > >> Uh, careful. This got added to 5.6.1 to support pseudo-hashes and is > > >> probably coming back out when pse

substitution problem

2001-05-29 Thread prachi shroff
Hi again! I am having problems using the "s///" operator for substitution in of a particular pattern in a specified file. For eg. open(TRY,"+) { $_ =~ s/a/p/g; } Is this the right way of doing it? And with what access mode shall I open the file ( >> or +> or +< ) ? And is the while loop

Re: How to delete an element in array?

2001-05-29 Thread Kevin Meltzer
On Tue, May 29, 2001 at 03:17:41PM -0400, Jeff Pinyan ([EMAIL PROTECTED]) spew-ed forth: > On May 29, Walt Mankowski said: > > >On Tue, May 29, 2001 at 11:59:18AM -0700, Randal L. Schwartz wrote: > >> > "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: > >> > >> >> Uh, careful. This got

Re: How to delete an element in array?

2001-05-29 Thread Randal L. Schwartz
> "Walt" == Walt Mankowski <[EMAIL PROTECTED]> writes: Walt> Is there any difference in 5.6.1 between Walt> delete $array[$index]; Walt> and Walt> $array[$index] = undef; Walt> There doesn't seem to be from the man page. If there's not, it Walt> doesn't seem to be a particularly usef

Re: How to delete an element in array?

2001-05-29 Thread Jeff Pinyan
On May 29, Walt Mankowski said: >On Tue, May 29, 2001 at 11:59:18AM -0700, Randal L. Schwartz wrote: >> > "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: >> >> >> Uh, careful. This got added to 5.6.1 to support pseudo-hashes and is >> >> probably coming back out when pseudo-hashes get

Re: How to delete an element in array?

2001-05-29 Thread Walt Mankowski
On Tue, May 29, 2001 at 11:59:18AM -0700, Randal L. Schwartz wrote: > > "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: > > >> Uh, careful. This got added to 5.6.1 to support pseudo-hashes and is > >> probably coming back out when pseudo-hashes get removed in 5.10. > >> ("Death to pseud

Re: How to delete an element in array?

2001-05-29 Thread Randal L. Schwartz
> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: >> Uh, careful. This got added to 5.6.1 to support pseudo-hashes and is >> probably coming back out when pseudo-hashes get removed in 5.10. >> ("Death to pseudo-hashes!") Brett> Argh. I didn't realize that. Is this specifically delete

Re: How to delete an element in array?

2001-05-29 Thread Brett W. McCoy
On 29 May 2001, Randal L. Schwartz wrote: > Brett> Same thing. See 'perldoc -f delete'. It can be used on an > Brett> array, array slice, hash or hash slice. Note that for an > Brett> array, you will still need to 'shift' down all of the > Brett> subsequent elements since delete does not autom

Re: How to delete an element in array?

2001-05-29 Thread Randal L. Schwartz
> "Brett" == Brett W McCoy <[EMAIL PROTECTED]> writes: Brett> On 29 May 2001, Jie Meng wrote: >> I am a newbie. Would you please tell me how to delete an element in an Array? >> >> We know we can use "delelte" to remove a hash element. How about array? Brett> Same thing. See 'perldoc -f de

Re: Fileposting

2001-05-29 Thread Paul
--- Bernhard <[EMAIL PROTECTED]> wrote: > But I'm not using CGI.pm. I don't know what i should do with it. I > only want to use Perl. Hmmm Well, if you're just trying to learn Perl and the HTTP protocol, and want to print and read and parse simple forms, then ok I guess but for anything

Re: Fileposting

2001-05-29 Thread Peter Scott
At 07:45 PM 5/29/01 +, Bernhard wrote: >But I'm not using CGI.pm. I don't know what i should do with it. I only want >to use Perl. Unfortunately one has to walk before one can run. Your response is akin to saying, "I don't want to use a boat; all I want to do is sail across the Atlantic us

Re: Fileposting

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Bernhard wrote: > But I'm not using CGI.pm. I don't know what i should do with it. I only want > to use Perl. You should be using CGI.pm if you want to do CGI programming with Perl. I also recommend that you subscribe to the beginners CGI mailing list -- it focuses specific

Re: Starting with perl...

2001-05-29 Thread Collin Rogowski
Ops. Sorry about that. Next time I clean my waepons before using them. cr On Tue, 29 May 2001 12:08:43 -0500, Elaine -HFB- Ashton said: > Collin Rogowski [[EMAIL PROTECTED]] quoth: > *>You find a very complete set of documentation on www.perl.com. > *>Here is a direct link to a "getting s

Re: Problems with Net::SSLeay

2001-05-29 Thread Peter Scott
At 11:39 AM 5/29/01 -0500, K Old wrote: >Can't load >'/usr/local/lib/perl5/site_perl/5.6.0/i686-linux/auto/Net/SSLeay/SSLeay.so' > for module Net::SSLeay: >/usr/local/lib/perl5/site_perl/5.6.0/i686-linux/auto/Net/SSLeay/SSLeay.so: >undefined symbol: md5_block_x86 at >/usr/local/lib/perl5/5.

Re: Fileposting

2001-05-29 Thread Bernhard
But I'm not using CGI.pm. I don't know what i should do with it. I only want to use Perl. - Original Message - From: Paul <[EMAIL PROTECTED]> To: Bernhard <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, May 29, 2001 5:02 PM Subject: Re: Fileposting > > --- Bernhard <[EMAIL PROTE

Re: Starting with perl...

2001-05-29 Thread Hasanuddin Tamir
On Tue, 29 May 2001, William Maddler <[EMAIL PROTECTED]> wrote, > I'm just startin' with Perl, any clue on where to find on the web a > starting manual or smtg like that? :))) If your email header tell the truth you'll be just fine by typing, man perl or perldoc perl from the command

Re: How to delete an element in array?

2001-05-29 Thread Brett W. McCoy
On 29 May 2001, Jie Meng wrote: > I am a newbie. Would you please tell me how to delete an element in an Array? > > We know we can use "delelte" to remove a hash element. How about array? Same thing. See 'perldoc -f delete'. It can be used on an array, array slice, hash or hash slice. Note th

Re: Starting with perl...

2001-05-29 Thread Elaine -HFB- Ashton
Collin Rogowski [[EMAIL PROTECTED]] quoth: *>You find a very complete set of documentation on www.perl.com. *>Here is a direct link to a "getting started" document: *> *>http://www.perl.com/pub/doc/manual/html/pod/perl.html Good golly I think my long dead father is fresher than that page which da

Re: How to delete an element in array?

2001-05-29 Thread Jeff Pinyan
On May 29, Jie Meng said: >I am a newbie. Would you please tell me how to delete an element in an >Array? The delete() function works on arrays (in Perl 5.6), but it doesn't remove the element (unless it occurs at the end of the array). You want to use the splice() function. splice @array, $

How to delete an element in array?

2001-05-29 Thread Jie Meng
Hi, I am a newbie. Would you please tell me how to delete an element in an Array? We know we can use "delelte" to remove a hash element. How about array? Thanks, Jie Meng Get free email and a permanent address at http://www.

Re: Fileposting

2001-05-29 Thread Paul
--- Bernhard <[EMAIL PROTECTED]> wrote: > Hi! I'm using a html form, where you can enter a file (a picture) and > upload it, but when i send the form the Perl script only gets the > local Adress of the file, but not the Data (so the picture) of the > file. How can i save the picture in a new file

Re: where is a safe place...

2001-05-29 Thread Paul
--- Nichole Bialczyk <[EMAIL PROTECTED]> wrote: > unfortunately, the perl guy was in an accident and passed away and no > one else knows perl. i was working on flash when my boss told me to > also learn perl. so here i am without a clue and my boss wants this > fixed by Tue or Wed. umm, help? Ma

Problems with Net::SSLeay

2001-05-29 Thread K Old
Hello, I'm trying to use the Net::SSLeay module and am calling it like: use Net::SSLeay qw(post_https make_headers make_form); but I'm getting the following response at the command line. Can't load '/usr/local/lib/perl5/site_perl/5.6.0/i686-linux/auto/Net/SSLeay/SSLeay.so' for module Net

Re: Starting with perl...

2001-05-29 Thread Collin Rogowski
You find a very complete set of documentation on www.perl.com. Here is a direct link to a "getting started" document: http://www.perl.com/pub/doc/manual/html/pod/perl.html cr On Tue, 29 May 2001 17:59:27 + (UTC), William Maddler said: > > I'm just startin' with Perl, any clue on where to

Re: Connecting to other computers.

2001-05-29 Thread Collin Rogowski
I think the easiest way woul be to start an FTP-Server on the Windows-Box and connect via FTP. This is very easy in Perl. Try to look at the Net::FTP Module on CPAN (cpan.org). hope this helps, cr On Tue, 29 May 2001 07:49:54 -0800, Mark on GCI Server said: > Hey all, >I'm trying to copy

Re: Starting with perl...

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, William Maddler wrote: > I'm just startin' with Perl, any clue on where to find on the web a > starting manual or smtg like that? :))) Start with http://www.perl.com & http://www.perl.org (the latter will help you track down local Pler Monger groups). You should also go to

Starting with perl...

2001-05-29 Thread William Maddler
I'm just startin' with Perl, any clue on where to find on the web a starting manual or smtg like that? :))) Thx... -- .~.::: :: /V\ PENGUIN WILLIAM::MADDLER :: :: /(_)\ POWER http://www.maddler.ne

Connecting to other computers.

2001-05-29 Thread Mark on GCI Server
Hey all, I'm trying to copy files from caldera and redhat boxes to a Windows box. The script will be running on the caldera box, and I create a .iso file on the caldera server, then I want to copy the .iso file to the NT box. I'm unsure of how to open a session and copy files across this session

Re: array location

2001-05-29 Thread Nichole Bialczyk
i feel really stupid now. i can't believe i actually did that. i guess learning perl is starting to frazzle my brain. it wasn't an array, but an actual IP address. since it was supposed to store blocked addresses, for some reason when i saw just one entry, i thought that it was something diffe

Re: array location

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, Nichole Bialczyk wrote: > ok, so i'm trying to work my way through this script. there are blocked > addresses and they are stored in an array at something like > 'd-131-151-136-22...xxx'. Where do I find this location on the > unix account? I need to be able to add mo

Re: DBI.pm on perl-5.6.0

2001-05-29 Thread Adam Turoff
On Tue, May 29, 2001 at 05:24:07PM +0400, kosta wrote: > Can I have DBI package installed on the following build of perl: > ActiveState perl-5.6.0, MSWin32-x86-multi-thread? Yes. You probably want to use ActiveState's PPM installation utility. At the command prompt, type 'ppm'. At the 'pp

array location

2001-05-29 Thread Nichole Bialczyk
ok, so i'm trying to work my way through this script. there are blocked addresses and they are stored in an array at something like 'd-131-151-136-22...xxx'. Where do I find this location on the unix account? I need to be able to add more/ take away users from this file. thanks, nichol

Re: Regex problem

2001-05-29 Thread Jeff Pinyan
On May 28, Bornaz, Daniel said: >$stt="The food is under the bar in the barn in the river."; >$stt=~/bar(.*?)river/; >print "$&"; > >The output is: >bar in the barn in the river > >Instead of the expected: >barn in the river For the meantime, you might like to look at chapter 6 of "Learning Per

Re: run perl in Win 2000 ?

2001-05-29 Thread prachi shroff
Thanks FOlks!! THe problem is solved after setting the PATH environment variable in the systems settings in the control panel. THanks a lot to all the suggestions everyone extended. regards, Prachi _ Get your FREE download of MS

DBI.pm on perl-5.6.0

2001-05-29 Thread kosta
Can I have DBI package installed on the following build of perl: ActiveState perl-5.6.0, MSWin32-x86-multi-thread? Thanks in advance, kosta

Re:run perl in win2000

2001-05-29 Thread Brett W. McCoy
On Tue, 29 May 2001, prachi shroff wrote: > but the path is not configured on its own. When I run PERL from the command > prompt, it does give me the COMMAND NOT FOUND error. > What do I do then? You need to add the path to the Perl executable to your system %PATH% environment variable. Use the

RE: run perl in win2000

2001-05-29 Thread Paul Metzger
What version of perl are you installing, also which package did you get. If you got the MSI package from Activestate this will install it at set the path. If not you get set the path in WIN 2k by right clicking on my computer, and going to properties, click on performance and then on environmental

Re: Perl Certifications and some help

2001-05-29 Thread Brett W. McCoy
On Fri, 1 Jan 1999, Sanchit Bhatnagar wrote: > Is there something like a "Perl Certified Professional" or does there > exists some other credible certification you can get for perl. Hopefully not! > Also can someone please provide me help and/or links which have > tutorials (maybe a single par

Re: Perl Certifications and some help

2001-05-29 Thread Elaine -HFB- Ashton
King, Jason [[EMAIL PROTECTED]] quoth: *>Sanchit Bhatnagar writes .. *> *>> Is there something like a "Perl Certified Professional" or *>>does there exists some other credible certification you can *>>get for perl. *> *>competency Yes, well, how does one judge who is competent when one is not

Re:run perl in win2000

2001-05-29 Thread prachi shroff
Thanks! but the path is not configured on its own. When I run PERL from the command prompt, it does give me the COMMAND NOT FOUND error. What do I do then? Original Message Follows From: Joel Divekar <[EMAIL PROTECTED]> To: "prachi shroff" <[EMAIL PROTECTED]> Subject: Re: run perl in Win

Tk Question

2001-05-29 Thread Bornaz, Daniel
Can anyone help me by telling me how can I scroll in program to the end of a Scrolled object after adding some text that goes out of the displayed area? Many thanks in advance, Daniel Bornaz GBS Specialist ~~ Compaq Computer Romania 77 Emanoil Porumbaru St. Bucha

Re: run perl in Win 2000 ?

2001-05-29 Thread Aaron Craig
At 11:22 29.05.2001 +0100, you wrote: > > you need to use > > > > #! perl (followed by whatever switches you want to use) >The shebang is a typical UNIX thing, Windows doesn't use it. >It mentions the "shell" used to execute the code below. >Like mentioned before, you're explorer needs to be prope

Fw: Re: run perl in Win 2000 ?

2001-05-29 Thread Hendrik Van Belleghem
> you need to use > > #! perl (followed by whatever switches you want to use) > > and have perl in your path > To set perl in your path go to: > Start > Settings > Control Panel > In the control panel go to System > Click the upper right tab "Advanced" > Click the middle button "Environment Vari

Re: run perl in Win 2000 ?

2001-05-29 Thread Aaron Craig
At 13:20 28.05.2001 -0500, you wrote: > > The #! operator does not work. > >Yes, the #! operator doesn't help in getting perl >to execute (though you should still use it to set >execution options like -w etc.) you need to use #! perl (followed by whatever switches you want to use) and have perl