博客上的新帖子

时间:2012-09-29 23:37:39

标签: blogs posts

假设有一个博客没有RSS提要关联,而且我没有注册任何有关此博客的通知,我希望每次发布新帖子时都能“知道”。

我有什么方法可以做到吗?我正在寻找通用解决方案......

1 个答案:

答案 0 :(得分:2)

伪cron脚本,运行/ 1 * * * *

curl http://thatguysblog.html -> latest.blog;
grep latest.blog "posted at $1\n";
readf previous.time;
If (unixtime($1) > $previoustime) {
   send SMS me@myphone.com "OMG, a new blog post!!!";
}
printf $1 previous.time;