#!/bin/bash echo -n 'Updating wiki information...' wget -T 60 'https://wiki.gentoo.org/index.php?title=Special:NewPages&feed=rss&hidebots=1&hideredirs=1&limit=50&offset=&namespace=0&username=&tagfilter=' -O _data/wiki.xml.tmp 2>/dev/null [ $? -eq 0 ] && mv _data/wiki.xml.tmp _data/wiki.xml echo 'done.'