Re: Script for Sheduling jobs on NT

2001-07-28 Thread M. Buchanan
Why don't you try the built-in scheduling program in NT? best bet. Then have it run the specified script when you want. - Original Message - From: "Ackim Chisha" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 28, 2001 7:56 AM Subject: Script for Sheduling jobs on NT

quick help with this..

2001-07-02 Thread M. Buchanan
I am on WIN32. I want to check my a couple times of day IP and send it to my address at work. for some reason, this isn't working as intended. the if loop anyway i added the length and the string is coming back length zero @ifRaw = `ipconfig`; ($Rest, $IP ) = split (/:/, $ifRaw[13] );

quick help with string matching? sorry if this posted more than once

2001-07-01 Thread M. Buchanan
I am on WIN32. I want to check my a couple times of day IP and send it to my address at work. for some reason, this isn't working as intended. the if loop anyway i added the length and the string is coming back length zero @ifRaw = `ipconfig`; ($Rest, $IP ) = split (/:/, $ifRaw[13] );

Re: Limiting String Length

2001-06-26 Thread M. Buchanan
There is a length() function. eg. $string = 'my little little string'; $lengthOfstring = length($string); if ( $lengthOfstring >= 4096 blah) { blah } - Original Message - From: "Chuck Ivy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 21, 2001 2:31 PM Subject