I need to execute a bash script every Saturday at 2 AM on a very minimal Linux-based system that does not allow for the regular user to add cronjobs. In particular, the crontab file gets resetted to some manufacturer's default every day by the system.
I therefore need a way to keep this script running in the background forever but it needs to sleep while currentTime != Saturday, 2 AM (it's a backup script, btw).
How can I do that? Thank you to all.