Re: Help debugging some old Bugzilla perl scripts

2018-02-26 Thread jose cabrera
On Monday, February 26, 2018 at 4:50 AM, Shlomi Fish" wrote... > Hi jose, > > please see http://www.shlomifish.org/Files/files/code/bugzilla.patch for my > patch against bugzilla 3.2 to get it to compile with recent perls. Thanks. josé -- What if eternity is real? Where will you spend it? H

Re: Help debugging some old Bugzilla perl scripts

2018-02-26 Thread Shlomi Fish
Hi jose, please see http://www.shlomifish.org/Files/files/code/bugzilla.patch for my patch against bugzilla 3.2 to get it to compile with recent perls. On Mon, 26 Feb 2018 05:43:45 +0100 "jose cabrera" wrote: > On Sunday, February 25, 2018 at 11:26 PM, "Uri Guttman" wrote... > > > > > > ==

Re: Help debugging some old Bugzilla perl scripts

2018-02-25 Thread Uri Guttman
On 02/25/2018 11:51 PM, jose cabrera wrote: On Sunday, February 25, 2018 at 11:48 PM, "Uri Guttman" wrote... Here is line 1085: foreach my $type qw(dependson blocked) { my @bug_ids = split(/[\s,]+/, $deps_in{$type}); put parens around the qw(). it used to be allowed as the ()

Re: Help debugging some old Bugzilla perl scripts

2018-02-25 Thread jose cabrera
On Sunday, February 25, 2018 at 11:48 PM, "Uri Guttman" wrote... > >>> Here is line 1085: > >>> foreach my $type qw(dependson blocked) { > >>> my @bug_ids = split(/[\s,]+/, $deps_in{$type}); > >> put parens around the qw(). it used to be allowed as the () in the for > >> loop but no

Re: Help debugging some old Bugzilla perl scripts

2018-02-25 Thread Uri Guttman
On 02/25/2018 11:43 PM, jose cabrera wrote: On Sunday, February 25, 2018 at 11:26 PM, "Uri Guttman" wrote... syntax error at Bugzilla/Bug.pm line 1085, near "$type qw(dependson blocked)" Here is line 1085: foreach my $type qw(dependson blocked) {

Re: Help debugging some old Bugzilla perl scripts

2018-02-25 Thread jose cabrera
On Sunday, February 25, 2018 at 11:26 PM, "Uri Guttman" wrote... > > > > > > syntax error at Bugzilla/Bug.pm line 1085, near "$type qw(dependson > > blocked)" > > > > Here is line 1085: > > foreach my $type qw(dependson blocked) { > > my @bug

Re: Help debugging some old Bugzilla perl scripts

2018-02-25 Thread Uri Guttman
On 02/25/2018 10:47 PM, jose cabrera wrote: Greetings! Long story, I had to install Bugzilla v3.2, which was in a WinNT 4. I have now installed Bugzilla v3.2, in the Ubuntu 14.04 server, but I have perl (v5.22.1) and I am getting lots of errors. Once I learn to fix one of these, I can work

Help debugging some old Bugzilla perl scripts

2018-02-25 Thread jose cabrera
Greetings! Long story, I had to install Bugzilla v3.2, which was in a WinNT 4. I have now installed Bugzilla v3.2, in the Ubuntu 14.04 server, but I have perl (v5.22.1) and I am getting lots of errors. Once I learn to fix one of these, I can work with the others. ===

Re: preventing concurrency between five different perl scripts

2016-02-24 Thread Kenneth Wolcott
This seems like a very simple concept, but I'm not getting it, so >> > I'd like some help. >> > >> > So part of this is perl (not understanding readdir and/or glob >> > well enough) and part of it is not getting the logic right. >> > >> &

Re: preventing concurrency between five different perl scripts

2016-02-24 Thread Shawn H Corey
ome help. > > > > So part of this is perl (not understanding readdir and/or glob > > well enough) and part of it is not getting the logic right. > > > > I have five perl scripts. > > > > I do not want any of them running concurrently as they will use a &g

Re: preventing concurrency between five different perl scripts

2016-02-24 Thread Shlomi Fish
d part of it is not getting the logic right. > > I have five perl scripts. > > I do not want any of them running concurrently as they will use a > common resource which will cause corruption in the resource and will > probably consume too much CPU and/or RAM/ and/or I/O. Why

Re: preventing concurrency between five different perl scripts

2016-02-23 Thread Atnakus Arzah
On Tue, Feb 23, 2016 at 06:34:54PM -0800, Kenneth Wolcott wrote: But where I run into trouble is the actual glob or readdir as $0 might be "./script1.pl" or "/full/path/to/script1.pl" or "script1.pl". Perhaps I should use basename? Perhaps a simple regex? I tried something similar with glob,

preventing concurrency between five different perl scripts

2016-02-23 Thread Kenneth Wolcott
Hi; This seems like a very simple concept, but I'm not getting it, so I'd like some help. So part of this is perl (not understanding readdir and/or glob well enough) and part of it is not getting the logic right. I have five perl scripts. I do not want any of them running co

Re: TDD and BDD with perl scripts

2014-03-31 Thread Sebastien Feugere
> Also of possible interest is Curtis "Ovid" Poe's > https://github.com/Ovid/zen-of-test-suites ("Serious testing for serious > software" ) which focuses on large-scale test suites. +1 for any Curtis "Ovid" Poe things about tests. For beginners, he wrote a book "Beginning Perl" (for sale) with a f

Re: TDD and BDD with perl scripts

2014-03-31 Thread Shlomi Fish
Shlomi Fish > > > ~$&bast1 > > > On Mon, Mar 31, 2014 at 9:51 AM, Benjamin Fernandis > wrote: > > Hi, > > > > I am new with perl and using it for my sys admin jobs. I want to use TDD / > > BDD with my perl scripts to make it more robust. &g

Re: TDD and BDD with perl scripts

2014-03-30 Thread Sebastien Feugere
https://metacpan.org/pod/Test::More ~$&bast1 On Mon, Mar 31, 2014 at 9:51 AM, Benjamin Fernandis wrote: > Hi, > > I am new with perl and using it for my sys admin jobs. I want to use TDD / > BDD with my perl scripts to make it more robust. > > Can you please suggest me

TDD and BDD with perl scripts

2014-03-30 Thread Benjamin Fernandis
Hi, I am new with perl and using it for my sys admin jobs. I want to use TDD / BDD with my perl scripts to make it more robust. Can you please suggest me that how to integrate TDD/BDD with perl scripts.? In my company , developer uses rspec and cucumber with ruby based code. I am from sys

Re: Run perl scripts in Windows

2011-10-21 Thread Rajneesh Gadge
Thanks Natxo that was really informative :) -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Run perl scripts in Windows

2011-10-18 Thread frank cui
c:\perl folder (if you choose to standard > location) to the host where you need to run the script. > > After doing that, you can run your Perl scripts from a cmd prompt. Open > cmd.exe and in there type the path to perl.exe (if you have copied it to > c:\perl, it will be c:\perl\b

Re: Run perl scripts in Windows

2011-10-18 Thread Natxo Asenjo
host. You can install the msi in another windows host and copy the c:\perl folder (if you choose to standard location) to the host where you need to run the script. After doing that, you can run your Perl scripts from a cmd prompt. Open cmd.exe and in there type the path to perl.exe (if you have

Re: Run perl scripts in Windows

2011-10-18 Thread Igor Dovgiy
Hello Remy, I guess you may either convert this script with something like perl2exe (or similar solutions), or use the portable version of Strawberry Perl - http://strawberryperl.com/download/5.12.3.0/strawberry-perl-5.12.3.0-portable.zip - to run it. -- iD 2011/10/18 Remy Guo > hi all, > I ha

Re: Run perl scripts in Windows

2011-10-18 Thread Shlomi Fish
ׁHello Remy, On Tue, 18 Oct 2011 09:05:41 -0400 Remy Guo wrote: > hi all, > I have a Perl script in Windows but my system administrator doesn't allow me > to install ActivePerl nor i guess anything that will change rigistry on the > machine. > is there any other way to run the script? > Yes, t

Run perl scripts in Windows

2011-10-18 Thread Remy Guo
hi all, I have a Perl script in Windows but my system administrator doesn't allow me to install ActivePerl nor i guess anything that will change rigistry on the machine. is there any other way to run the script? Thanks.. Remy

Re: calling a config file that has a hash within multiple perl scripts

2011-04-29 Thread Shlomi Fish
Hi Agnello, On Friday 29 Apr 2011 13:26:29 Agnello George wrote: > HI > > I have as hash within my script.pl file which look like this > > ### code follows > > > > > > But it obviously looks too messy to add it all in one script.pl , as > i am going to add new keys and values to the hash ,

calling a config file that has a hash within multiple perl scripts

2011-04-29 Thread Agnello George
HI I have as hash within my script.pl file which look like this my %verticals = ( 'auto_v1' => { 'tempdir' => '/var/www/html/temp/auto' , 'svnurl' => 'http://svn.int.com/repos/a.com/branch/auto', 'excludes' => 'uploaded_images|includes/config.php|admin/includes/config.php|.svn', '

Re: Automating Weblogic monitoring Using Perl Scripts.

2010-09-16 Thread Shlomi Fish
Hi Prasad, On Thursday 16 September 2010 01:24:28 prasad.prabhak...@aps.com wrote: > Hi, please can anyone suggest me a way how to get into this loop, I am > really interested in programming and I don't know which way to go and > start. I think someone can help me since I am new to Perl programmin

Re: Automating Weblogic monitoring Using Perl Scripts.

2010-09-15 Thread Eko Budiharto
dear Prasad, you can buy a book or find e-book about perl. You might want to start with simple scripts. There is a site that you can download packages, http://www.cpan.org. I hope it helps. On 9/16/2010 6:24 AM, prasad.prabhak...@aps.com wrote: Hi, please can anyone suggest me a way how t

Re: Automating Weblogic monitoring Using Perl Scripts.

2010-09-15 Thread Shawn H Corey
On 10-09-15 07:24 PM, prasad.prabhak...@aps.com wrote: Email Firewall made the following annotations - --- NOTICE --- Please remove all such notices in your email. They are not legally binding in any country that receives th

Automating Weblogic monitoring Using Perl Scripts.

2010-09-15 Thread Prasad . Prabhakara
Hi, please can anyone suggest me a way how to get into this loop, I am really interested in programming and I don't know which way to go and start. I think someone can help me since I am new to Perl programming. Thanks, Prasad Prabhakara Infrastructure Applications Cell:480-889-4171 Phone:81-538

Re: Where - best source for Perl scripts example ... mostly SYSADMIN stuff

2010-06-05 Thread Young W.
On Sat, 05 Jun 2010 15:37 +1200, "newbie01 perl" wrote: > Hi all, > > Sorry for being lazy I guess but am assuming a lot of you will > probably > have a list of their favorite sites for resources of Perl scripts > You may want to buy this book: http://oreil

Re: Where - best source for Perl scripts example ... mostly SYSADMIN stuff

2010-06-04 Thread John W. Krahn
newbie01 perl wrote: Hi all, Sorry for being lazy I guess but am assuming a lot of you will probably have a list of their favorite sites for resources of Perl scripts I did find a lot as well via Google but mostly Perl CGI stuff though ... Basically, am wanting to know where is the "

Where - best source for Perl scripts example ... mostly SYSADMIN stuff

2010-06-04 Thread newbie01 perl
Hi all, Sorry for being lazy I guess but am assuming a lot of you will probably have a list of their favorite sites for resources of Perl scripts I did find a lot as well via Google but mostly Perl CGI stuff though ... Basically, am wanting to know where is the "best" place to fi

Re: Writing Perl scripts to run on any OS'es

2010-04-19 Thread Randal L. Schwartz
>>>>> "newbie01" == newbie01 perl writes: newbie01> Am wanting to change my Perl scripts to get it to run on several UNIX newbie01> flavours and Windows. At the moment, the only way I can think of how to newbie01> accomplish that is always having the follo

AW: Writing Perl scripts to run on any OS'es

2010-04-19 Thread Thomas Bätzler
newbie01 perl asked: > Am wanting to change my Perl scripts to get it to run on several UNIX > flavours and Windows. At the moment, the only way I can think of how to > accomplish that is always having the following checks on each and every > sub that I have. > > Can anyone

Re: Writing Perl scripts to run on any OS'es

2010-04-19 Thread Octavian Rasnita
From: "newbie01 perl" Hi all, Am wanting to change my Perl scripts to get it to run on several UNIX flavours and Windows. At the moment, the only way I can think of how to accomplish that is always having the following checks on each and every sub that I have. Can anyone please

Re: Writing Perl scripts to run on any OS'es

2010-04-19 Thread Shlomi Fish
Hi newbie01, On Monday 19 Apr 2010 12:52:53 newbie01 perl wrote: > Hi all, > > Am wanting to change my Perl scripts to get it to run on several UNIX > flavours and Windows. At the moment, the only way I can think of how to > accomplish that is always having the following checks on

Writing Perl scripts to run on any OS'es

2010-04-19 Thread newbie01 perl
Hi all, Am wanting to change my Perl scripts to get it to run on several UNIX flavours and Windows. At the moment, the only way I can think of how to accomplish that is always having the following checks on each and every sub that I have. Can anyone please suggest if there is a better way of

cannot import certains modules when running perl scripts from Java on Windows

2009-08-10 Thread Thomas Evangelidis
Dear perl users, I'm having difficulties running perl scripts from java which import certain modules like File::Tail and File::Sort. I initially installed ActiveState Perl but then did a full Cygwin installation (which includes compilers, interpreters, etc of most popular programming lang

Re: Running perl scripts on remote machine

2009-02-12 Thread Chas. Owens
On Feb 11, 2009, at 12:44, vijaya R wrote: Hi, why can't you compile an exe of the scripts such that all can be executed from the respective machines without any dependencies? Regards, Vijaya You can. Take a look at PAR::Packer on CPAN. If you are using ActivePerl you can use the

Re: Running perl scripts on remote machine

2009-02-11 Thread vijaya R
Hi, why can't you compile an exe of the scripts such that all can be executed from the respective machines without any dependencies? Regards, Vijaya

Re: Running perl scripts on remote machine

2009-02-11 Thread Dermot
2009/2/11 Sarsamkar, Paryushan : > Hi All, Hi > Can I install perl on a common machine and keep all of our scripts > there? Then can any team mate run those scripts remotely on that > machine? Or is there any other way to handle this situation? I think you should be looking at ssh. Not sure how

Running perl scripts on remote machine

2009-02-11 Thread Sarsamkar, Paryushan
Hi All, I have a team of 4 people, and have some perl scripts written to make our life easy J Now if my team mates want to run the scripts, then they have to install perl on their machine (also the modules required for the scripts), then download perl scripts on their machine and then run

Re: Launching perl scripts on systems which do not support #!

2008-06-21 Thread Paul Johnson
On Sat, Jun 21, 2008 at 06:19:46PM +0100, Rob Dixon wrote: > gowthamgowtham wrote: > > > > I found this in Programming Perl - 3rd edition. Could not understand how > > this works. > > What is it supposed to do? Does it work? Have you tried it? How is it supposed > to be run? It's a clever little

Re: Launching perl scripts on systems which do not support #!

2008-06-21 Thread Brad Baxter
On Jun 21, 4:11 am, [EMAIL PROTECTED] (Gowthamgowtham) wrote: > Hello All, > > I found this in Programming Perl - 3rd edition. Could not understand how > this works. > > #!/bin/sh -- # perl, to stop looping > > eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' > > if 0; > > Questions: > > - Wh

Re: Launching perl scripts on systems which do not support #!

2008-06-21 Thread Rob Dixon
gowthamgowtham wrote: > > I found this in Programming Perl - 3rd edition. Could not understand how > this works. What is it supposed to do? Does it work? Have you tried it? How is it supposed to be run? I've had a quick look through the book and can find nothing like it. It is either very esoter

Launching perl scripts on systems which do not support #!

2008-06-21 Thread gowthamgowtham
Hello All, I found this in Programming Perl - 3rd edition. Could not understand how this works. #!/bin/sh -- # perl, to stop looping eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' if 0; Questions: - Who (I mean which program/shell) runs eval 'exec .'? - What is $

Re: Can't run PERL scripts on a shared server?

2008-05-12 Thread Randal L. Schwartz
> ""J" == "J Peng" <[EMAIL PROTECTED]> writes: "J> But most providers disabled mod_perl, b/c it's so powerful that has "J> the ability to harm the webservers. Not so much "harm" as just "the security model presumes a single user across all of the possible code". -- Randal L. Schwartz - Sto

Re: Can't run PERL scripts on a shared server?

2008-05-11 Thread Teo
On May 11, 12:57 am, [EMAIL PROTECTED] (Hotkitty) wrote: > I've been trying to setup a connection w/ a shared server at > godaddy.com. The script won't work and when I called them they tell me > that because I don't have a dedicated server that I can't run a perl > script and so I need to upgrade m

Re: Can't run PERL scripts on a shared server?

2008-05-11 Thread J. Peng
On Sun, May 11, 2008 at 6:57 AM, hotkitty <[EMAIL PROTECTED]> wrote: > I've been trying to setup a connection w/ a shared server at > godaddy.com. The script won't work and when I called them they tell me > that because I don't have a dedicated server that I can't run a perl > script and so I need

Can't run PERL scripts on a shared server?

2008-05-11 Thread hotkitty
I've been trying to setup a connection w/ a shared server at godaddy.com. The script won't work and when I called them they tell me that because I don't have a dedicated server that I can't run a perl script and so I need to upgrade my account. I can access the shared server w/ PHPwhy can't I d

PSPad and running Perl Scripts

2006-11-23 Thread Paul Brasseur
Hello: To run Perl CGI Programs, select Program Settings from the Settings Menu. Then select Web Server. Under Server place: localhost\cgi-bin . Under Document Root place C:\Program Files\Apache Group\Apache2\cgi-bin or whatever is the path to your cgi-bin directory. Fire up your Web

Re: Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-26 Thread Leonid Grinberg
Yes, as people have mentioned your options are: -Run the scripts with Cygwin, which will ensure that most system commands will be set up for you (if this is for general distribution, you can make it a system requirement, although that's a pretty heave system requirement to have). -Rewrite the UNI

Re: Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-26 Thread Dr.Ruud
"John W. Krahn" schreef: > [SFU] > http://www.microsoft.com/windowsserversystem/sfu/ More details: http://www.softpanorama.org/Unixification/SFU/ AFAIK, the download requires JavaScript and a "Passport". -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-25 Thread John W. Krahn
[EMAIL PROTECTED] wrote: > Hi all, Hello, > I've inherited a bunch of scripts that am spending lots of time debugging and > tracing, changing etc. Part of the task also is to have the same modified in > some way so that I can use it for both UNIX and Windows. > > Lots of these scripts have syste

RE: Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-25 Thread Timothy Johnson
-Original Message- From: Ricky Zhou [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 5:30 PM To: [EMAIL PROTECTED] Cc: beginners@perl.org; [EMAIL PROTECTED] Subject: Re: Perl OS system equivalence or Perl scripts for UNIX-and-Windows > On 5/25/06, [EMAIL PROTECTED] <

Re: Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-25 Thread Ricky Zhou
On 5/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Lots of these scripts have system "" on them which of course I can't run on Windows. Can anyone suggest how to get around this? Or any white papers on how to do this? If you have sufficient access to the windows computers (and you want abs

RE: Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-25 Thread Timothy Johnson
system equivalence or Perl scripts for UNIX-and-Windows Hi all, I've inherited a bunch of scripts that am spending lots of time debugging and tracing, changing etc. Part of the task also is to have the same modified in some way so that I can use it for both UNIX and Windows. Lots of these sc

Perl OS system equivalence or Perl scripts for UNIX-and-Windows

2006-05-25 Thread benbart
Hi all, I've inherited a bunch of scripts that am spending lots of time debugging and tracing, changing etc. Part of the task also is to have the same modified in some way so that I can use it for both UNIX and Windows. Lots of these scripts have system "" on them which of course I can't run on W

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-23 Thread Randal L. Schwartz
> "Jeff" == Jeff Pang <[EMAIL PROTECTED]> writes: Jeff> I think both "Learning Perl" and "Perl Cook Book" are right for your Jeff> purpose. I got these two books from internet,they are in ".chm" Jeff> format.But I don't know whether it'll breach the copyright or not, if I Jeff> send them to y

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread David Romano
>> Sent: Monday, May 22, 2006 2:23 AM >> To: Jeff Pang >> Cc: beginners@perl.org >> Subject: Re: Looking for example Perl scripts to be used in Perl >> > Training. > >> please send it >> >> -Chandru. >> >> Jeff Pang wrote: >> >&g

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread David Romano
EMAIL PROTECTED] >> Sent: Monday, May 22, 2006 2:23 AM >> To: Jeff Pang >> Cc: beginners@perl.org >> Subject: Re: Looking for example Perl scripts to be used in Perl >> > Training. > >> please send it >> >> -Chandru. >> >> Jeff

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread Chandru
: beginners@perl.org Subject: Re: Looking for example Perl scripts to be used in Perl Training. please send it -Chandru. Jeff Pang wrote: Looking for example Perl scripts to be used in Perl Training. I am going to do a Perl training to a group of people. I was wondering from where

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread Japerlh
Thanks a lot for all you guys. On 5/23/06, Timothy Johnson <[EMAIL PROTECTED]> wrote: -Original Message- From: Jeff Pang [mailto:[EMAIL PROTECTED] Sent: Sunday, May 21, 2006 11:06 PM To: beginners@perl.org Subject: Re: Looking for example Perl scripts to be used in Perl Training.

RE: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread Timothy Johnson
-Original Message- From: Jeff Pang [mailto:[EMAIL PROTECTED] Sent: Sunday, May 21, 2006 11:06 PM To: beginners@perl.org Subject: Re: Looking for example Perl scripts to be used in Perl Training. > I think both "Learning Perl" and "Perl Cook Book" are right for

RE: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread Ryan Frantz
>-Original Message- >From: Rob Coops [mailto:[EMAIL PROTECTED] >Sent: Monday, May 22, 2006 9:17 AM >To: Ryan Frantz >Cc: beginners@perl.org >Subject: Re: Looking for example Perl scripts to be used in Perl Training. > >Ryan I guess there is a diffrence betw

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread Rob Coops
<[EMAIL PROTECTED]> wrote: > -Original Message- > From: Chandru [mailto:[EMAIL PROTECTED] > Sent: Monday, May 22, 2006 2:23 AM > To: Jeff Pang > Cc: beginners@perl.org > Subject: Re: Looking for example Perl scripts to be used in Perl Training. > > please

RE: Looking for example Perl scripts to be used in Perl Training.

2006-05-22 Thread Ryan Frantz
> -Original Message- > From: Chandru [mailto:[EMAIL PROTECTED] > Sent: Monday, May 22, 2006 2:23 AM > To: Jeff Pang > Cc: beginners@perl.org > Subject: Re: Looking for example Perl scripts to be used in Perl Training. > > please send it > > -Chandru. >

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-21 Thread Chandru
please send it -Chandru. Jeff Pang wrote: Looking for example Perl scripts to be used in Perl Training. I am going to do a Perl training to a group of people. I was wondering from where I can get some sample Perl scripts to be used to demonstrate the basic usage of Perl. Thanks. I

Re: Looking for example Perl scripts to be used in Perl Training.

2006-05-21 Thread Jeff Pang
Looking for example Perl scripts to be used in Perl Training. > >I am going to do a Perl training to a group of people. >I was wondering from where I can get some sample Perl scripts to be >used to demonstrate the basic usage of Perl. >Thanks. I think both "Learning Perl&

Looking for example Perl scripts to be used in Perl Training.

2006-05-21 Thread Japerlh
I am going to do a Perl training to a group of people. I was wondering from where I can get some sample Perl scripts to be used to demonstrate the basic usage of Perl. Thanks. -- Besh wishes, Japerlh -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: Looking for perl scripts to remove ^M

2005-09-25 Thread Dan Klose
005 2:48 PM > > > To: Dave Adams > > > Cc: beginners perl > > > Subject: Re: Looking for perl scripts to remove ^M > > > > > > On 9/23/2005 11:28 PM Dave Adams wrote: > > > > > > > Sometimes I get perl scripts that were developed on windows a

Re: Looking for perl scripts to remove ^M

2005-09-23 Thread Jay Savage
On 9/23/05, Ryan Frantz <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Ankur Gupta [mailto:[EMAIL PROTECTED] > > Sent: Friday, September 23, 2005 2:48 PM > > To: Dave Adams > > Cc: beginners perl > > Subject: Re: Looking fo

Re: Looking for perl scripts to remove ^M

2005-09-23 Thread Wiggins d'Anconia
Ryan Frantz wrote: > >>-Original Message- >>From: Ankur Gupta [mailto:[EMAIL PROTECTED] >>Sent: Friday, September 23, 2005 2:48 PM >>To: Dave Adams >>Cc: beginners perl >>Subject: Re: Looking for perl scripts to remove ^M >> >>On 9/23/2

RE: Looking for perl scripts to remove ^M

2005-09-23 Thread Ryan Frantz
> -Original Message- > From: Ankur Gupta [mailto:[EMAIL PROTECTED] > Sent: Friday, September 23, 2005 2:48 PM > To: Dave Adams > Cc: beginners perl > Subject: Re: Looking for perl scripts to remove ^M > > On 9/23/2005 11:28 PM Dave Adams wrote: > > >

Re: Looking for perl scripts to remove ^M

2005-09-23 Thread Ankur Gupta
On 9/23/2005 11:28 PM Dave Adams wrote: Sometimes I get perl scripts that were developed on windows and then brought over to UNIX and the scripts contain all the pesky metacharacters of ^M and excessive blank lines. Does anyone have a simple script to clean these files up or suggestions? If

Re: Looking for perl scripts to remove ^M

2005-09-23 Thread Chris Devers
On Fri, 23 Sep 2005, Dave Adams wrote: > Sometimes I get perl scripts that were developed on windows and then > brought over to UNIX and the scripts contain all the pesky > metacharacters of ^M and excessive blank lines. > > Does anyone have a simple script to clean these files up

Re: Looking for perl scripts to remove ^M

2005-09-23 Thread Jeff 'japhy' Pinyan
On Sep 23, Dave Adams said: Sometimes I get perl scripts that were developed on windows and then brought over to UNIX and the scripts contain all the pesky metacharacters of ^M and excessive blank lines. Does anyone have a simple script to clean these files up or suggestions? Many unix

RE: Looking for perl scripts to remove ^M

2005-09-23 Thread Ryan Frantz
> -Original Message- > From: Dave Adams [mailto:[EMAIL PROTECTED] > Sent: Friday, September 23, 2005 1:59 PM > To: beginners perl > Subject: Looking for perl scripts to remove ^M > > Sometimes I get perl scripts that were developed on windows and then > brou

Looking for perl scripts to remove ^M

2005-09-23 Thread Dave Adams
Sometimes I get perl scripts that were developed on windows and then brought over to UNIX and the scripts contain all the pesky metacharacters of ^M and excessive blank lines. Does anyone have a simple script to clean these files up or suggestions? My appreciation in advance, DA -- To

Re: Compiling perl scripts

2005-08-05 Thread Binish A R
Larsen, Errin M HMMA/IT wrote: Larsen, Errin M HMMA/IT wrote: Binish A R wrote: Does anyone knows how to compile perl scripts to executables? I'm working on RH Linux and would like to know the details. I know that I can use perlcc to do that ... but it isn't compiling anyt

RE: Compiling perl scripts

2005-08-05 Thread Larsen, Errin M HMMA/IT
Larsen, Errin M HMMA/IT wrote: > Binish A R wrote: >> Does anyone knows how to compile perl scripts to executables? I'm >> working on RH Linux and would like to know the details. I know that I >> can use perlcc to do that ... but it isn't compiling anything othe

RE: Compiling perl scripts

2005-08-05 Thread Larsen, Errin M HMMA/IT
Binish A R wrote: > Does anyone knows how to compile perl scripts to executables? I'm > working on RH Linux and would like to know the details. I know that I > can use perlcc to do that ... but it isn't compiling anything other > than a simple 'hello world' prog

Compiling perl scripts

2005-08-05 Thread Binish A R
Does anyone knows how to compile perl scripts to executables? I'm working on RH Linux and would like to know the details. I know that I can use perlcc to do that ... but it isn't compiling anything other than a simple 'hello world' program :( Is there any other tools besid

Re: Where will I find perl scripts

2005-05-09 Thread John W. Krahn
Tielman Koekemoer (TNE) wrote: Thanks all for your info - VERY informative. Although I now feel the need to say: Hang in there Charles. I'm sure not all Perl babes rate their partners according to their scripting prowess. All drop-dead gorgeous Perl programmers, you know who to contact... ;) Than

RE: Where will I find perl scripts

2005-05-09 Thread Tielman Koekemoer \(TNE\)
elman -Original Message- From: Charles K. Clarkson [mailto:[EMAIL PROTECTED] Sent: 08 May 2005 04:08 AM To: 'Perl Beginners' Subject: RE: Where will I find perl scripts John W. Krahn <mailto:[EMAIL PROTECTED]> wrote: : Does that happen to you a lot? ;-) I'd rather no

Re: Where will I find perl scripts

2005-05-07 Thread John W. Krahn
Charles K. Clarkson wrote: Edward WIJAYA wrote: : : On Sat, 7 May 2005 14:50:37 -0500, Charles K. Clarkson : <[EMAIL PROTECTED]> wrote: : : : plain scary. (Wait, I think _she_ wrote that module, too. : : Just stay away from _her_. :) : : _HE_ you mean! :-) : : http://

RE: Where will I find perl scripts

2005-05-07 Thread Charles K. Clarkson
John W. Krahn wrote: : Does that happen to you a lot? ;-) I'd rather not talk about it, thank you very much. Charles "who wishes to be alone, now" Clarkson -- Mobile Homes Specialist 254 968-8328 -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

RE: Where will I find perl scripts

2005-05-07 Thread Charles K. Clarkson
Edward WIJAYA wrote: : : On Sat, 7 May 2005 14:50:37 -0500, Charles K. Clarkson : <[EMAIL PROTECTED]> wrote: : : : plain scary. (Wait, I think _she_ wrote that module, too. : : Just stay away from _her_. :) : : _HE_ you mean! :-) : : http://www.abigail.nl/ Ha!

Re: Where will I find perl scripts

2005-05-07 Thread Edward WIJAYA
Charles, On Sat, 7 May 2005 14:50:37 -0500, Charles K. Clarkson <[EMAIL PROTECTED]> wrote: plain scary. (Wait, I think _she_ wrote that module, too. Just stay away from _her_. :) _HE_ you mean! :-) http://www.abigail.nl/ -- Regards, Edward WIJAYA Singapore -- To unsubscribe, e-mail: [EMAIL PROTE

RE: Where will I find perl scripts

2005-05-07 Thread Charles K. Clarkson
Tielman Koekemoer (TNE) <mailto:[EMAIL PROTECTED]> wrote: : I think I'm like most people learn Perl easier when examining other : "guru's" scripts. Where is the best place on the net to find Perl : scripts that do everything, from doing pattern matching in arrays to :

Re: Where will I find perl scripts

2005-05-06 Thread Gavin Henry
> Tielman Koekemoer (TNE) wrote: >> Hi All, >> >> I think I'm like most people learn Perl easier when examining other >> "guru's" scripts. Where is the best place on the net to find Perl >> scripts that do everything, from doing pattern ma

Re: Where will I find perl scripts

2005-05-06 Thread Wiggins d'Anconia
Tielman Koekemoer (TNE) wrote: > Hi All, > > I think I'm like most people learn Perl easier when examining other > "guru's" scripts. Where is the best place on the net to find Perl > scripts that do everything, from doing pattern matching in arrays to > maki

Re: Where will I find perl scripts

2005-05-06 Thread John Doe
Am Freitag, 6. Mai 2005 15.51 schrieb Tielman Koekemoer (TNE): > Hi All, > > I think I'm like most people learn Perl easier when examining other > "guru's" scripts. Where is the best place on the net to find Perl > scripts that do everything, from doing pat

Where will I find perl scripts

2005-05-06 Thread Tielman Koekemoer \(TNE\)
Hi All, I think I'm like most people learn Perl easier when examining other "guru's" scripts. Where is the best place on the net to find Perl scripts that do everything, from doing pattern matching in arrays to making coffee? Right now, however, I think pattern matchi

Re: Perl - Windows XP Pro - Perl Scripts Seem to hang until the enter key is pressed

2005-05-02 Thread Paul Kraus
On 5/2/05, Paul Kraus <[EMAIL PROTECTED]> wrote: > Most if not all of my perl scripts have a tendency to just hang. No > errors. Not locked up. Hitting the enter keys seems to bring them > back. > Attached is a little test script that is very basic but demonstrates > this. Pe

Perl - Windows XP Pro - Perl Scripts Seem to hang until the enter key is pressed

2005-05-02 Thread Paul Kraus
Most if not all of my perl scripts have a tendency to just hang. No errors. Not locked up. Hitting the enter keys seems to bring them back. Attached is a little test script that is very basic but demonstrates this. Perhaps it is something on my system but its a real pain in the but. I have other

RE: Running Perl Scripts Via A Web Page

2004-11-30 Thread Michael Kraus
G'day... > Can someone please recommend a book for me. I do some web > administration w/ perl scripts. I would like to create a web > page w/ drop down menus... and depending on the selection > criteria, run that script. I searched on Google a little, > but not really s

RE: Running Perl Scripts Via A Web Page

2004-11-30 Thread Graeme St. Clair
ssage- From: Brian Volk [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 3:52 PM To: Beginners (E-mail) Subject: Running Perl Scripts Via A Web Page Hi All, Can someone please recommend a book for me. I do some web administration w/ perl scripts. I would like to create a web page w/

Running Perl Scripts Via A Web Page

2004-11-30 Thread Brian Volk
Hi All, Can someone please recommend a book for me. I do some web administration w/ perl scripts. I would like to create a web page w/ drop down menus... and depending on the selection criteria, run that script. I searched on Google a little, but not really sure what I'm lookin

Re: Executing perl scripts with a perl script

2004-10-30 Thread Chris Devers
On Sat, 30 Oct 2004, Todd Lewis wrote: > I have serveral perl scripts that I've written seperately. Now I want > to run them sequentially. I don't want to cut and paste them into the > same file to be run. Makes reusablity a pain. Is there a method to do > this? I

  1   2   3   >