Skip to content

Instantly share code, notes, and snippets.

@kitak
Created September 22, 2016 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitak/82792c8825d583142ae6a0fc018e87e7 to your computer and use it in GitHub Desktop.
Save kitak/82792c8825d583142ae6a0fc018e87e7 to your computer and use it in GitHub Desktop.
python-crontabモジュールを試した
from crontab import CronTab
cron = CronTab(user=True)
cron.remove_all()
job = cron.new(command='/bin/echo')
job.enable()
cron.write()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment