How can I run a python script once at exactly 12:00PM on Wednesday (Jan 21)?
I've added #!/usr/bin/env python
to the top of my script and made the script executable with chmod +x
I know I want to do something like crontab -e 0 0 * * * /path/to/my/pythonscript.py
but I'm not exactly sure how to get it to be a specific time...