aboutsummaryrefslogtreecommitdiff
blob: 1d132359a22fc3a78a6d7e07408f0a4c8cd24df1 (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.'