I want to set a cron job in ubuntu with this job
I have a python webscraping program which needs to be scrapped continuously after the program is terminated. In other words the flow is like this
If program is terminated, set the cron job again (until infinity in cron's method)
something like * * * * * /python.py (but only when the python.py is terminated/finished)
Can someone guide me to write a bash program that does this job? The program is python.py
thanks