定时任务
- 查看定时任务
crontab -l
- 编辑定时任务
crontab -e
每周五23点定时关机
0 23 * * 5 /usr/sbin/shutdown now
命令必须是完整路径:/usr/sbin/shutdown
查看命令路径:which shutdown
命令 | 详情 |
---|---|
reboot | 普通重启 |
shutdown -r now | 立即重启(root) |
shutdown -r 10 | 10分钟后重启 |
shutdown -r 20:00 | 8点重启 |
关机 | 详情 |
---|---|
halt | 立刻关机 |
poweroff | 立刻关机 |
shutdown -h now | 立刻关机(root) |
shutdown -h 10 | 10分钟后关机 |
© 版权声明
文章版权归作者所有,未经允许请勿转载。如内容涉嫌侵权,请在本页底部进入<联系我们>进行举报投诉!
THE END
暂无评论内容