在Linux中,有多种方法可以实现定时任务
* * * * * command-to-be-executed
- - - - -
| | | | |
| | | | ----- Day of week (0 - 7) (Sunday = 0 or 7)
| | | ------- Month (1 - 12)
| | --------- Day of month (1 - 31)
| ----------- Hour (0 - 23)
------------- Minute (0 - 59)
例如,要每天凌晨1点执行一个名为backup.sh的脚本,你可以在Cron表中添加以下行:
0 1 * * * /path/to/backup.sh
例如,要每天凌晨1点执行一个名为backup.sh的脚本,你可以创建以下两个文件:
my-timer.service:
[Unit]
Description=My Timer
[Service]
ExecStart=/path/to/backup.sh
Restart=always
[Install]
WantedBy=timers.target
my-timer.timer:
[Unit]
Description=Run my-timer.service every day at 1 AM
[Timer]
OnCalendar=*-*-* 01:00:00
Persistent=true
[Install]
WantedBy=timers.target
然后,运行以下命令启动并激活定时器:
sudo systemctl daemon-reload
sudo systemctl start my-timer.timer
sudo systemctl enable my-timer.timer
echo "/path/to/backup.sh" | at now + 1 day
这将会在当前时间之后的1天执行backup.sh脚本。
这些是在Linux中实现定时任务的几种常用方法。你可以根据自己的需求选择最适合你的方法。