-2

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

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

4

1 回答 1

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;
于 2012-09-30T05:01:19.787 回答