web-dev-qa-db-fra.com

exécuter un script python avec cron

Cela pourrait être une question très simple, mais comment pourrais-je exécuter un script python sur ma dist Fedora tous les 2 jours?

Merci

Antonis

21
Antonis

C'est une question sur cron. Tout d'abord, ajoutez une ligne Shebang au-dessus de votre script python.

#!/usr/bin/env python

Rendez votre script exécutable avec chmod +x

Et faites un crontab -e et ajoutez 0 0 */2 * * /path/to/your/pythonscript.py

66
Senthil Kumaran