Top
Systemwalker Operation Manager  Reference Guide
FUJITSU Software

15.2.1 after (Stop Processing for a Given Period of Time)

Description

Stops the execution of command for a certain time.

Synopsis

after msec

Option

msec

Specify the time during which the command sleeps in milliseconds (1/1000 seconds).

Example

The following example executes loop ten times at 1-sec intervals.

set i 0
while {$i < 10} {
         incr i
         after 1000
}