annotate doc/download.sh @ 1811:f405ec9b696b
default tip
Some small logic mistakes
Use boolean operators for booleans and bitwise otherwise only.
author |
mow |
date |
Mon, 10 May 2010 11:33:13 +0000 |
parents |
2ae81598b254 |
children |
|
rev |
line source |
1773
|
1 #!/bin/sh
|
|
2
|
|
3 unset LANG
|
|
4 PAGES=`curl "http://sourceforge.net/apps/trac/geeqie/wiki/TitleIndex" | \
|
|
5 sed -e "s|>|>\n|g" |grep 'href=.*/geeqie/wiki/Guide'|sed -e 's|.*/wiki/Guide\([a-zA-Z0-9]*\).*|Guide\1|'`
|
|
6
|
|
7 mkdir wiki
|
|
8
|
|
9 for p in $PAGES ; do
|
|
10 curl "http://sourceforge.net/apps/trac/geeqie/wiki/$p?format=txt" > wiki/$p
|
|
11 done
|
|
12
|
|
13
|
|
14 |