blob: 76196df02560b8131a5be0d06d5c123fe967da50 (
plain)
1
2
3
4
5
6
|
#!/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.'
|