Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设有一个没有 RSS 提要关联的博客,并且我没有注册任何关于此博客的通知,我希望每次在其上发布新帖子时都能“知道”。
有什么办法可以做到吗?我正在寻找一个通用的解决方案...
伪 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;