假设有一个博客没有RSS提要关联,而且我没有注册任何有关此博客的通知,我希望每次发布新帖子时都能“知道”。
我有什么方法可以做到吗?我正在寻找通用解决方案......
答案 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;