I want to schedule a python script to run everyday for 1 week(7 days non stop) and then run once every week( 1 time in 1 week).
I have this in my crontab -e
48 10 * * ? * /path-to-python-file This runs the script at 10:48 am everyday.
I want it to run it as per the the schedule explained before. How can I do that with cron?