at(1) jobs are only processed every 5 minutes, and the man page notes this nicely:
So changing it sounds relatively straightforward, except when I runIMPLEMENTATION NOTES
Note that at is implemented through the cron(8) daemon by calling
atrun(8) every five minutes. This implies that the granularity of at
might not be optimal for every deployment. If a finer granularity is
needed, the system crontab at /etc/crontab needs to be changed.
$ grep atrun /etc/crontab
, I see nothing. It's not in the system crontab, or any user crontab that I can see, yet my at jobs seem to still run (albeit, only at 5-minute intervals). So, what is the proper way to get per-minute resolution for at
?