I want to run a bash script every hour in my cloud desktop which can be done by following commands:
while true; do ./parseScript.sh; sleep 3600; done
minute hour day month day-of-week command-line-to-execute
But the problem is my cloud window will expire so I won't be able to kill it in future? Can anyone guide me on this, How to do that?