Die without textoutput?

2005-10-27 Thread gustav
Hi! When die is used, there is message something like: x doesn't exist as an environment variable Died at lsh.pl line 510, line 6. Childprocess complete I just want the current process to die without giving any output to screen, something like this: x doesn't exist as an environment variable C

RE: Module

2005-10-27 Thread Dhanashri Bhate
>>I used PPM to install like PPM>install Win32::SerialPort then i am getting >> error msg like Error Installing package "Win32::SerialPort": Read a PPD >> for 'Win32-serialport' 1. unzip the downloaded module tar file 2. on command prompt make sure you have done HTTP proxy,user passwd setting (if

Module

2005-10-27 Thread swayam panda
HI , I want to use Win32: :Serialport module to read from a COM port .I am using the windows XP 2000.Acivestate perl 5.6.I want to know how to download the module . i downloaded teh module but it's in tar format.so i used winzip then i read the readmefile to install that one .but

Re: New Line Character(s)

2005-10-27 Thread Daniel Kasak
Chris Devers wrote: On Wed, 26 Oct 2005, Timothy Johnson wrote: I think you can use \r instead of \n for Access and Excel. Are you sure about that? I thought Windows used \r\n as a pair (or \n\r?) for the line delimiter. But then, I don't do Windows anymore, so I could be wrong :

Re: Binary Large Objects (BLOB) decoding

2005-10-27 Thread John W. Krahn
Tom Allison wrote: > I'm making a crude attempt to parse through some database BLOBS with > some success. Some of the information is in XML format, some in > "text". But a lot of crud exists because of the binary characters. > > I originally tried this: > > my $ascii = unpack("A*", $blob); The

Re: Is this script safe?

2005-10-27 Thread John W. Krahn
Dermot Paikkos wrote: > Hi, > > I wanted a script that would rename files from lower to upper case. I > have something but I am a bit worried about going live with it as I > can imagine there is plenty of room for error and I really don't want > to knacker my filesystem. > > Could I get any co

Re: Is this script safe?

2005-10-27 Thread Jay Savage
On 10/27/05, Jay Savage <[EMAIL PROTECTED]> wrote: > On 10/27/05, Dermot Paikkos <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I wanted a script that would rename files from lower to upper case. I > > have something but I am a bit worried about going live with it as I > > can imagine there is plenty o

Re: what happened to pdl.perl.org?

2005-10-27 Thread Chris Devers
On Thu, 27 Oct 2005 [EMAIL PROTECTED] wrote: > Does anyone know what happened to pdl.perl.org? This is supposed to the > the home site of Perl PDL, a scientific programming and graphics-producing > add-on for Perl. The website is defunct, and I am seeking an alternative > source of information.

Net::SSH::Perl

2005-10-27 Thread The Ghost
Does Net::SSH::Perl work on Windows? Or do I need to install additional softwares (some form of OpenSSH)? Thanks! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Is this script safe?

2005-10-27 Thread Jay Savage
On 10/27/05, Dermot Paikkos <[EMAIL PROTECTED]> wrote: > Hi, > > I wanted a script that would rename files from lower to upper case. I > have something but I am a bit worried about going live with it as I > can imagine there is plenty of room for error and I really don't want > to knacker my filesy

Re: Is this script safe?

2005-10-27 Thread Wiggins d'Anconia
Ryan Frantz wrote: [snip] >>(my $new = $name) =~ tr/[a-z]/[A-Z]/; # trans the > > > Alternatively, you could use the 'uc' function instead of 'tr'. > > perldoc -f uc > At the very least remove the [], tr does not take a regular expression so the brackets above do not represent

Re: Is this script safe?

2005-10-27 Thread John Doe
Dermot Paikkos am Donnerstag, 27. Oktober 2005 12.07: > Hi, > > I wanted a script that would rename files from lower to upper case. I > have something but I am a bit worried about going live with it as I > can imagine there is plenty of room for error and I really don't want > to knacker my filesys

input validation and persistency module for (mod_perl) web apps?

2005-10-27 Thread John Doe
Dear list members Maybe the perl-module-authors would be the more appropriate list for my question(s), but here are people confronted with the same tasks to solve when programming web applications, so... Some of the tasks always to be solved in an interactive webapp: a) validate/sanitize user

Re: Is this script safe?

2005-10-27 Thread Randal L. Schwartz
> "Mulander" == Mulander <[EMAIL PROTECTED]> writes: Mulander> Why can't you use perl's built in rename(); function ? I think it Mulander> would be safer. File::Copy::mv *does* use the built-in rename() if it can. But rename() can't go across mounted filesystem boundaries, so "mv" calls out

RE: Is this script safe?

2005-10-27 Thread Ryan Frantz
> -Original Message- > From: Dermot Paikkos [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 27, 2005 6:07 AM > To: beginners@perl.org > Subject: Is this script safe? > > Hi, > > I wanted a script that would rename files from lower to upper case. I > have something but I am a bit wor

what happened to pdl.perl.org?

2005-10-27 Thread mfmorss
Does anyone know what happened to pdl.perl.org? This is supposed to the the home site of Perl PDL, a scientific programming and graphics-producing add-on for Perl. The website is defunct, and I am seeking an alternative source of information. Mark F. Morss Principal Analyst, Market Risk American

Is this script safe?

2005-10-27 Thread Mulander
Why can't you use perl's built in rename(); function ? I think it would be safer. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Binary Large Objects (BLOB) decoding

2005-10-27 Thread Tom Allison
I'm making a crude attempt to parse through some database BLOBS with some success. Some of the information is in XML format, some in "text". But a lot of crud exists because of the binary characters. I originally tried this: my $ascii = unpack("A*", $blob); but with limited success. At least

Is this script safe?

2005-10-27 Thread Dermot Paikkos
Hi, I wanted a script that would rename files from lower to upper case. I have something but I am a bit worried about going live with it as I can imagine there is plenty of room for error and I really don't want to knacker my filesystem. Could I get any comments of suggestion on what I have. I

RE: send email with Perl

2005-10-27 Thread Ryan Frantz
> -Original Message- > From: Charles Li [mailto:[EMAIL PROTECTED] > Sent: Thursday, October 27, 2005 9:38 AM > To: beginners@perl.org > Subject: send email with Perl > > Hi, > I am using "use Net::SMTP;" to send email to multiple > people. But the recipients can not send the other > rec

RE: send email with Perl

2005-10-27 Thread Bob Showalter
Charles Li wrote: > Hi, > I am using "use Net::SMTP;" to send email to multiple > people. But the recipients can not send the other > receiver emails. It just says undisclosed recipients. > How do I send email to multiple people and let them > see who is on the To list? Include a To: header in

send email with Perl

2005-10-27 Thread Charles Li
Hi, I am using "use Net::SMTP;" to send email to multiple people. But the recipients can not send the other receiver emails. It just says undisclosed recipients. How do I send email to multiple people and let them see who is on the To list? Thanks. __

RE: Perl - Add env,.variable?

2005-10-27 Thread Thomas Bätzler
<[EMAIL PROTECTED]> asked: > I want to add an environment variable in Perl. Is there any > built-in function for achieving this? $ENV{'variablename'} = $value; Just remember that you can't modify the environment of your parent process, but only that of your own (sub-)process(es). HTH, Thomas -

Perl - Add env,.variable?

2005-10-27 Thread gustav
Hi there! I want to add an environment variable in Perl. Is there any built-in function for achieving this? /G @varupiraten.se -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]