Here below is an example of python script.
On the command line, it prints a message every 2 seconds.
With Visual Cron, the output displays the result at the end of the job/task, while we want the output message to be displayed every 2 seconds for example in this case.
We have some processes that need to run all day so we need regular outputs to be displayed.
Is this possible at all?
Thanks
PYTHON SCRIPT
import time
print('XXX')
time.sleep(2)
print('YYY')
time.sleep(2)
print('ZZZ')
time.sleep(2)