solaris上配置cron计划任务
有时候我们需要系统在某某时间自动去做一件事情,windows里面我们可以做计划任务,而在linux和solaris上,可以使用cron达到相识的效果。
?
?
2.在控制台中修改文件的执行权限
输入命令:
* * * * * /export/home/weichao/hello.sh
?代表每天每过1分钟都调用一次hello.sh。也可以写成: 1~59 ?* ?* ?* ?* ?/export/home/weichao/hello.sh
?
4. OK,现在每经过1分钟控制台都会发一个mail提醒你有消息。这时候你可以打开/export/home/weichao/cronLog.txt
查看,可以发现每过1分钟就会添加一条信息进去。
?
?
?