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
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] );
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] );
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