ubuntu 定时自动启动崩溃程序

crontab -e
选vim
加入 0 * * * * 命令 (每小时执行)
运行sudo service cron restart

每分钟执行 * * * * *
每五分钟执行 */5 * * * *
每小时执行 0 * * * *
每天执行 0 0 * * *
每周执行 0 0 * * 0
每月执行 0 0 1 * *
每年执行 0 0 1 1 *

你可能感兴趣的:(ubuntu 定时自动启动崩溃程序)