Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

crontabで、起動毎や1日一回のような短縮記法を

実際のところ

string meaning
------ -------
@reboot Run once, at startup.
@yearly Run once a year, "0 0 1 1 *".
@annually (same as @yearly)
@monthly Run once a month, "0 0 1 * *".
@weekly Run once a week, "0 0 * * 0".
@daily Run once a day, "0 0 * * *".
@midnight (same as @daily)
@hourly Run once an hour, "0 * * * *".

というわけで、起動時に必ず一回BOOTACTIONをするなら

@reboot BOOTACTION

ただ、cronなのでroot権限必要なのには向いてません。

参考もと

  • man 5 crontab