当前位置: 技术问答>linux和unix
在Linux下每隔一小时保存一次网页,该怎么写?
来源: 互联网 发布时间:2016-07-03
本文导语: rt,要保存某个特定的网页内容,比如 http://pic.sohu.com/ 我现在只知道要用到cron命令,请大家帮帮忙,看看该怎么写? 谢谢! | crontab -e 加入 00 */1 * * * wget -c http://pic.sohu.com/ -o /tmp/inde...
|
crontab -e
加入
00 */1 * * * wget -c http://pic.sohu.com/ -o /tmp/index.html
加入
00 */1 * * * wget -c http://pic.sohu.com/ -o /tmp/index.html
|
文件名加上时间就成了
使用date命令。
参考:
0 */1 * * * wget -c http://http://10.32.22.66:8080/cms623/index.jsp -o /tmp/index_`date +%Y%m%d%H`.html
使用date命令。
参考:
0 */1 * * * wget -c http://http://10.32.22.66:8080/cms623/index.jsp -o /tmp/index_`date +%Y%m%d%H`.html
|
默认编辑器是不是 vi 阿。试试编辑完后先按两下 ESC ,然后输入 : ,如果左下角出现一个冒号,输入 wq 就保存退出了。
|
/media/sohu_date+%Y%m%d%H .html
换成
~/pic/sohu_date+%Y%m%d%H .html
换成
~/pic/sohu_date+%Y%m%d%H .html