Recent Comments
Tag Archives: cron
Linux 计划任务之crontab
转载自:https://blog.csdn.net/richerg85/article/details/23442411 cron 简介 cron 是 UNIX, SOLARIS,LINUX 下的一个十分有用的工具。通过 cron 脚本能使计划任务定期地在系统后台自动运行。 cron 命令 crontab -e – 编辑该用户的 crontab,当指定 crontab 不存在时新建。 crontab -l – 列出该用户的 crontab。 crontab -r – 删除该用户的 crontab。 crontab -u<用户名称> – 指定要设定 crontab 的用户名称。 Linux Crontab 格式 表格: Crontab 字段与允许的值 (Linux Crontab) 字段 描述 允许的值 分钟 … Continue reading