I am new to ubuntu .
I have a python file . i just want to execute it in every 15 min .
any body can tell, how i can do it ?
with all basic steps
Thank you
I am new to ubuntu .
I have a python file . i just want to execute it in every 15 min .
any body can tell, how i can do it ?
with all basic steps
Thank you
while sleep 15 ; do python file.py ; done
) – FelixJN Aug 18 '15 at 11:20m
while typing, should have been:sleep 15m
– FelixJN Aug 18 '15 at 12:30