Net::SSH::Perl public key issue

2004-01-29 Thread Robby Russell
= 0 24548 ioctl(0, SNDCTL_TMR_TIMEBASE, {B38400 opost isig icanon -echo ...}) = 0 24548 brk(0)= 0x85a3000 24548 brk(0x85a4000)= 0x85a4000 24548 write(1, "Password: ", 10)= 10 [/snip] -- #

Sending email from Perl Script

2002-02-20 Thread Russell Boyd
I need to send notifications from a perl script I am building. I can use a system call for mailx. But I am wondering if there is a better way. Are there am\ny modules or packages which would address this? Thanks, Russell -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

STDERR

2002-02-04 Thread Russell Boyd
How do you put STDERR to a file for the duration of the perl program and not having to specify every print statement? and then reassigned it to normal console when you done. Thank you -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

pulling file name into perl

2002-01-31 Thread Russell Boyd
I am wanting to get a unix directory file listing and put it into a Perl array. I attempted $date = system "ls -al | grep filename.txt"; However all this did was send it to . What am I missing? Thanks, Russell -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: Off-Topic (200%) - Where are you from?

2001-11-13 Thread Russell Boyd
Todays Low 63 degrees Fahrenheit Todays High 76 degrees Fahrenheit The morning swim was quite nice. Austin, Texas Hope y'all enjoy the snow. Russell >>> Michael Fowler <[EMAIL PROTECTED]> 11/13/01 03:14PM >>> On Tue, Nov 13, 2001 at 02:51:01PM -0600, Elliott, Don

PPM

2001-09-24 Thread Russell Brooks
Hi, I realize that this may not be the correct forum. If it isn't, you have my sincere apologies. I had PPM working on an older build of Activestate, and needed to upgrade. Post upgrade PPM has stopped working. I've seen recommendations to migrate to build 620 or higher to fix PPM problems,

Dumping paragraphs of text

2001-09-17 Thread Russell Brooks
Hi, Is there a more elegant and/or efficient way of dumping different paragraphs of text based on a logical test than imbedding multiple line print statements in the code? For instance, if (test) { print something; print ...; print ...; } else { print something else; print ...; print ...

Jabber

2001-09-17 Thread Russell Brooks
Hi, Someone has recently requested that I push some output from some perl scripts to a jabber client. If anyone has experience with this, is it just a combination of an open to the client (what is the syntax) and a write? Thanks Russ Brooks -- To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Connecting to a server...

2001-08-22 Thread Kim Russell
I've gone through Programming Perl, Perl Cookbook, and Learning Perl, but I just can't seem to get a grasp on how to connect to a server across TCP/IP. I'm OK with FTP, but TCP/IP just isn't sinking in. I'd be so very grateful for how to connect to a server in layman's terms. I'm OK with takin

How to run FTP from a Perl Script

2001-08-14 Thread Russell Boyd
I have been looking at modules. But have not seen how to do an FTP session from a perl script that I can pass the appropriate info to. Any Suggestions? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: To read from a file using RegExp

2001-08-07 Thread Russell Kroboth
this might do it: $file="SUBCKT JTJTAG Z\@\@793 Z\@\@753 Z\@\@109 Z\@\@86 Z\@\@15 Z\@\@296 Z\@\@61 Z\@\@207 Z\@\@135 + Z\@\@275 Z\@\@313 Z\@\@1134 Z\@\@232 Z\@\@184 Z\@\@162 Z\@\@976 Z\@\@1014 Z\@\@253 Z\@\@954 Z\@\@39"; $node="Z\@\@323"; if ($file=~/$node/){ print "found\n"; } else {

RE: Newbie Question about subroutine

2001-08-07 Thread Russell Kroboth
or you could just change this: my $vInput = @_; to thisL my $vInput = @_[0]; -Original Message- From: Barry Carroll [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 07, 2001 12:03 PM To: '[EMAIL PROTECTED]' Subject: Newbie Question about subroutine Hi all, i want to have a subroutine f

RE: removing a line!!!

2001-08-07 Thread Russell Kroboth
You could avoid searching the passwd file by just using the unix command as you said, and to do this within perl: system("userdel username -r"); or if you only want to remove some line from some file: # read the file open (FILE, "; close (FILE); #write the file back, except for the one line op

RE: Random Number Generation

2001-08-06 Thread Russell Kroboth
$num=(int(rand 35)); There is probably a more random way to do it, but this is what i know... -Original Message- From: Mark Rowlands [mailto:[EMAIL PROTECTED]] Sent: Monday, August 06, 2001 2:59 AM To: .; Beginners (E-mail) Subject: Re: Random Number Generation On Saturday 04 August

RE: how to matching pattern of a scalar?

2001-08-06 Thread Russell Kroboth
you should use "/" instead of "\" for pattern match. -Original Message- From: Aza Lsaja [mailto:[EMAIL PROTECTED]] Sent: Monday, August 06, 2001 6:38 AM To: [EMAIL PROTECTED] Subject: how to matching pattern of a scalar? Hello, I make a program which need to matching pattern of a scalar

Perl Magick

2001-08-06 Thread Russell Boyd
I am looking for information dealing with HP UX 11.00 and PerMagicK . Does PerlMagicK work with HP and if so what version of it should I download? Where is a good site to get it at? Thanks, Russell -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: mod_perl

2001-04-24 Thread Russell
es written in mod_perl can do just about anything that apache modules written in C can." See http://perl.apache.org/ for more information. Be sure to check out the excellent guide by Stas Bekman at http://perl.apache.org/guide/ if you are having any difficulties. HTH, Russell Matboul