view doc/download.sh @ 1737:fad7d30676c3

Editors: disable Delete button if a .desktop file is not writeable and disable Edit button when no entry is selected.
author zas_
date Fri, 04 Dec 2009 20:40:02 +0000
parents b92fc3c922ac
children
line wrap: on
line source

#!/bin/sh

unset LANG
PAGES=`curl "http://sourceforge.net/apps/trac/geeqie/wiki/TitleIndex" | \
     sed -e "s|>|>\n|g" |grep 'href=.*/geeqie/wiki/Guide'|sed -e 's|.*/wiki/Guide\([a-zA-Z0-9]*\).*|Guide\1|'`

mkdir wiki

for p in $PAGES ; do
  curl "http://sourceforge.net/apps/trac/geeqie/wiki/$p?format=txt" > wiki/$p
done