当前位置: 技术问答>linux和unix
用crontab定时执行一个url
来源: 互联网 发布时间:2016-04-16
本文导语: 在linux每天8点定时执行一个url,例如http://localhost:8080/report/index.do,该如何实现? | 所说的"执行"是指打开还是下载? 下面以下载为例: 00 8 * * * root wget http://localhost:8080/report/index.do 下面是命令行打开: 00 8...
在linux每天8点定时执行一个url,例如http://localhost:8080/report/index.do,该如何实现?
|
所说的"执行"是指打开还是下载?
下面以下载为例:
00 8 * * * root wget http://localhost:8080/report/index.do
下面是命令行打开:
00 8 * * * root w3m http://localhost:8080/report/index.do
下面以下载为例:
00 8 * * * root wget http://localhost:8080/report/index.do
下面是命令行打开:
00 8 * * * root w3m http://localhost:8080/report/index.do