Time time(utc|lst)
Return the current time of day on a given time-scale.
TimeScale scale
print $time(LST)
Date d = $tomorrow + $time(utc) until $date > $dNote that if this example were changed to:
until $date > $tomorrow + $time(utc)the script would never resume because the
until
command
continually re-executes its arguments, and tomorrow would always
remain a day in the future.