linux 定时任务 定时执行某脚本 定期爬虫 统计 刷新 crontab -e
#!/bin/bashdate >/home/caodi/Dropbox/#linux_linux/shell_ontime/test_secuurl http://www.linkedin.com/in/wangkaikai -o html步骤参照http://blog.csdn.net/caodiandxiaohe/article/details/12784271#1.
·
步骤参照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#此代码为定期下载我的个人主页
便实现了定期下载某博客网站的人物的任务,定期爬虫统计
- 注意点:
- 格式正确并且进行添加后重启sudo service cron restart
-
若后面添加的不是命令而是脚本文件则必须将脚本文件权限设置为可执行
-
更多关于我的信息请访问http://www.linkedin.com/in/wangkaikai
更多推荐
已为社区贡献1条内容
所有评论(0)