Hi; 

 Trying to write a file monitor for temp files using a while loop. 
The problem is that the file test does not seem to be re-evaulated 
each loop. If I delete the file after the loop has started it 
drops into the. SHRUNK test. I would think it would drop out of the 
while loop.  
 
while ( -e $tfile ) { 
      $SIZE = (-s "$TEMPFILE") /1024;
      if ( $SIZE > $PSIZE ) {
         $PSIZE="$SIZE";
         print "$TEMPFILE Size = $SIZE Kb\n";
      } elsif ( $SIZE < $PSIZE ) {
         print "$TEMPFILE SHRUNK! from $PSIZE to $SIZE  Kb\n";
        }
        sleep(10); 
}



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to