If I create a script and then place it in this folder (/etc/cron.hourly), will my system run this script hourly? Or does my script need to begin with a command as well?
Tell me more
×
Ask Ubuntu is a question and answer site for
Ubuntu users and developers. It's 100% free, no registration required.
|
Yep, you got it. Just start it with a |
||||
|
|
|
Anything in /etc/cron.hourly will be executed hourly, just like anything in /etc/cron.daily will be run once a day. Make sure the file is executable, and start it with #!/bin/bash or #!/usr/bin/python (or #!/usr/bin/env python) or whatever is appropriate for the type of script you'll be running. |
||||
|
|