步骤参照http://blog.csdn.net/caodiandxiaohe/article/details/12784271

#1.

crontab -e

#2.

select-editor 选择编辑器

#3.

*/1 * * * * date >> ~/time#每隔一分钟将日期追加到time文件一次,该文件位于当前用户的主目录下

#4.重启cron服务将任务加到定时任务

sudo service cron restart

#我在当前用户的crontab中添加每分钟执行的脚本:

*/1 * * * * sh /home/caodi/Dropbox/#linux_linux/shell_ontime/everysecond.sh
* */1 * * * sh /home/caodi/Dropbox/#linux_linux/shell_ontime/everyhour.sh



然后在everyhour.sh和everysecond.sh脚本文件中添加代码

curl http://www.baidu.com -o html
#!/bin/bash
date >/home/caodi/Dropbox/#linux_linux/shell_ontime/test_sec
curl http://www.linkedin.com/in/wangkaikai -o html#此代码为定期下载我的个人主页

便实现了定期下载某博客网站的人物的任务,定期爬虫统计


Logo

更多推荐