[Perl-unix-users] Query on writing perl script to telnet to a HP m/c remotely

2003-01-29 Thread Shafi
Hi Guys,   I am trying to write a perl script which can telnet to a HP m/c continously for a period of 3 mins. Could someone help me out in this.   Thanks a lot in advance.   Regards, Shafi   **Disclaimer Information con

RE: [Perl-unix-users] Query on writing perl script to telnet to a HP m/c remotely

2003-01-29 Thread Matt Schneider
You should be able to use the Net::Telnet module to connect and do anything that a regular telnet session can do.  You also say that you need to stay connected continuously for 3 minutes.  Is that how long it takes to run a process or something?  Because the Telnet module shouldn't automatic

[Perl-unix-users] (no subject)

2003-01-29 Thread sadanand limaye
Hi, the fork() works on Unix thr' perl? Anyone how knows fork equivalent on Windows? Regards, Sadanand _ Add photos to your e-mail with MSN 8. Get 2 months FREE*. http://join.msn.com/?page=features/featuredemail _

[Perl-unix-users] determining if a scalar is an integer or not

2003-01-29 Thread Mundell, R. \(Ronald\)
Title: determining if a scalar is an integer or not Good Day All How can one determine if a variable is a int or not. e.g. my $var1 = 100; my $var2 = "Hello"; How do I determine if $var1 is an integer and $var2 is a string? Ronald